c 93 android_webview/browser/renderer_host/aw_render_view_host_ext.cc void AwRenderViewHostExt::SetBackgroundColor(SkColor c) { c 94 android_webview/browser/renderer_host/aw_render_view_host_ext.cc if (background_color_ == c) c 96 android_webview/browser/renderer_host/aw_render_view_host_ext.cc background_color_ = c; c 79 android_webview/browser/renderer_host/aw_render_view_host_ext.h void SetBackgroundColor(SkColor c); c 172 android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java final ContentValues c = new ContentValues(); c 173 android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java c.put(HTTPAUTH_HOST_COL, host); c 174 android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java c.put(HTTPAUTH_REALM_COL, realm); c 175 android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java c.put(HTTPAUTH_USERNAME_COL, username); c 176 android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java c.put(HTTPAUTH_PASSWORD_COL, password); c 177 android_webview/java/src/org/chromium/android_webview/HttpAuthDatabase.java mDatabase.insert(HTTPAUTH_TABLE_NAME, HTTPAUTH_HOST_COL, c); c 34 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsRenderTest.java void setBackgroundColorOnUiThread(final int c) { c 38 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsRenderTest.java mAwContents.setBackgroundColor(c); c 58 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsRenderTest.java void pollForBackgroundColor(final int c) throws Throwable { c 62 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsRenderTest.java return sampleBackgroundColorOnUiThread() == c; c 214 android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerTest.java String c = mCookieManager.getCookie(url); c 215 android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerTest.java return !c.contains(cookie1) && c.contains(cookie2) && c.contains(cookie3); c 224 android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerTest.java String c = mCookieManager.getCookie(url); c 225 android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerTest.java return !c.contains(cookie1) && c.contains(cookie2) && !c.contains(cookie3); c 325 android_webview/renderer/aw_render_view_ext.cc void AwRenderViewExt::OnSetBackgroundColor(SkColor c) { c 328 android_webview/renderer/aw_render_view_ext.cc render_view()->GetWebView()->setBaseBackgroundColor(c); c 56 android_webview/renderer/aw_render_view_ext.h void OnSetBackgroundColor(SkColor c); c 79 ash/display/display_info.cc char c = options[i]; c 80 ash/display/display_info.cc switch (c) { c 99 ash/system/status_area_widget_delegate.cc for (int c = 0; c < child_count(); ++c) { c 100 ash/system/status_area_widget_delegate.cc views::View* child = child_at(c); c 111 ash/system/status_area_widget_delegate.cc for (int c = child_count() - 1; c >= 0; --c) { c 112 ash/system/status_area_widget_delegate.cc views::View* child = child_at(c); c 127 ash/system/status_area_widget_delegate.cc for (int c = child_count() - 1; c >= 0; --c) { c 128 ash/system/status_area_widget_delegate.cc views::View* child = child_at(c); c 53 ash/system/tray/hover_highlight_view.h void set_text_highlight_color(SkColor c) { text_highlight_color_ = c; } c 149 base/android/java/src/org/chromium/base/CommandLine.java for (char c : buffer) { c 151 base/android/java/src/org/chromium/base/CommandLine.java if ((currentQuote == noQuote && (c == singleQuote || c == doubleQuote)) || c 152 base/android/java/src/org/chromium/base/CommandLine.java c == currentQuote) { c 155 base/android/java/src/org/chromium/base/CommandLine.java arg.setCharAt(arg.length() - 1, c); c 157 base/android/java/src/org/chromium/base/CommandLine.java currentQuote = currentQuote == noQuote ? c : noQuote; c 159 base/android/java/src/org/chromium/base/CommandLine.java } else if (currentQuote == noQuote && Character.isWhitespace(c)) { c 166 base/android/java/src/org/chromium/base/CommandLine.java arg.append(c); c 83 base/android/java/src/org/chromium/base/ThreadUtils.java public static <T> T runOnUiThreadBlockingNoException(Callable<T> c) { c 85 base/android/java/src/org/chromium/base/ThreadUtils.java return runOnUiThreadBlocking(c); c 99 base/android/java/src/org/chromium/base/ThreadUtils.java public static <T> T runOnUiThreadBlocking(Callable<T> c) throws ExecutionException { c 100 base/android/java/src/org/chromium/base/ThreadUtils.java FutureTask<T> task = new FutureTask<T>(c); c 132 base/android/java/src/org/chromium/base/ThreadUtils.java public static <T> FutureTask<T> runOnUiThread(Callable<T> c) { c 133 base/android/java/src/org/chromium/base/ThreadUtils.java return runOnUiThread(new FutureTask<T>(c)); c 86 base/android/javatests/src/org/chromium/base/ObserverListTest.java Foo c = new Foo(1); c 89 base/android/javatests/src/org/chromium/base/ObserverListTest.java FooRemover evil = new FooRemover(observerList, c); c 101 base/android/javatests/src/org/chromium/base/ObserverListTest.java observerList.addObserver(c); c 112 base/android/javatests/src/org/chromium/base/ObserverListTest.java assertEquals(0, c.mTotal); c 125 base/android/javatests/src/org/chromium/base/ObserverListTest.java Foo c = new Foo(1); c 126 base/android/javatests/src/org/chromium/base/ObserverListTest.java FooAdder evil = new FooAdder(observerList, c); c 135 base/android/javatests/src/org/chromium/base/ObserverListTest.java assertTrue(observerList.hasObserver(c)); c 138 base/android/javatests/src/org/chromium/base/ObserverListTest.java assertEquals(0, c.mTotal); c 23 base/atomicops_internals_x86_gcc.cc #define cpuid(a, b, c, d, inp) \ c 27 base/atomicops_internals_x86_gcc.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 29 base/atomicops_internals_x86_gcc.cc #define cpuid(a, b, c, d, inp) \ c 33 base/atomicops_internals_x86_gcc.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 174 base/bind_unittest.cc int Sum(int a, int b, int c, int d, int e, int f) { c 175 base/bind_unittest.cc return a + b + c + d + e + f; c 474 base/bind_unittest.cc NoRefChild c; c 475 base/bind_unittest.cc c.value = 6; c 476 base/bind_unittest.cc Callback<int(void)> bind_promotes_cb = Bind(&UnwrapNoRefParent, c); c 479 base/bind_unittest.cc c.value = 7; c 481 base/bind_unittest.cc Bind(&UnwrapNoRefParentPtr, &c); c 484 base/bind_unittest.cc c.value = 8; c 486 base/bind_unittest.cc Bind(&UnwrapNoRefParentConstRef, c); c 28 base/callback_helpers_unittest.cc base::Closure c; c 31 base/callback_helpers_unittest.cc c = runner.Release(); c 35 base/callback_helpers_unittest.cc c.Run(); c 85 base/callback_list_unittest.cc void AddThreeParam(int a, int b, int c) { value_ = a + b + c; } c 86 base/callback_list_unittest.cc void AddFourParam(int a, int b, int c, int d) { value_ = a + b + c + d; } c 87 base/callback_list_unittest.cc void AddFiveParam(int a, int b, int c, int d, int e) { c 88 base/callback_list_unittest.cc value_ = a + b + c + d + e; c 90 base/callback_list_unittest.cc void AddSixParam(int a, int b, int c, int d, int e , int f) { c 91 base/callback_list_unittest.cc value_ = a + b + c + d + e + f; c 152 base/callback_list_unittest.cc Listener a, b, c; c 170 base/callback_list_unittest.cc cb_reg.Add(Bind(&Listener::IncrementTotal, Unretained(&c))); c 176 base/callback_list_unittest.cc EXPECT_EQ(1, c.total()); c 187 base/callback_list_unittest.cc Listener a(1), b(-1), c(1); c 205 base/callback_list_unittest.cc cb_reg.Add(Bind(&Listener::IncrementByMultipleOfScaler, Unretained(&c))); c 211 base/callback_list_unittest.cc EXPECT_EQ(10, c.total()); c 2476 base/file_util_unittest.cc char c = 0; c 2490 base/file_util_unittest.cc EXPECT_EQ(0, read(fds[0], &c, 1)); c 300 base/json/json_parser.cc void JSONParser::StringBuilder::Append(const char& c) { c 301 base/json/json_parser.cc DCHECK_GE(c, 0); c 302 base/json/json_parser.cc DCHECK_LT(c, 128); c 305 base/json/json_parser.cc string_->push_back(c); c 886 base/json/json_parser.cc char c = first; c 887 base/json/json_parser.cc while (CanConsume(1) && IsAsciiDigit(c)) { c 888 base/json/json_parser.cc c = *NextChar(); c 114 base/json/json_parser.h void Append(const char& c); c 138 base/json/string_escape.cc ToUnsigned<StringPiece::value_type>::Unsigned c = *it; c 139 base/json/string_escape.cc if (EscapeSpecialCodePoint(c, &dest)) c 142 base/json/string_escape.cc if (c < 32 || c > 126) c 143 base/json/string_escape.cc base::StringAppendF(&dest, kU16EscapeFormat, c); c 67 base/md5.cc register uint32 a, b, c, d; c 71 base/md5.cc c = buf[2]; c 74 base/md5.cc MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7); c 75 base/md5.cc MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12); c 76 base/md5.cc MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17); c 77 base/md5.cc MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22); c 78 base/md5.cc MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7); c 79 base/md5.cc MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12); c 80 base/md5.cc MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17); c 81 base/md5.cc MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22); c 82 base/md5.cc MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7); c 83 base/md5.cc MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12); c 84 base/md5.cc MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17); c 85 base/md5.cc MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22); c 86 base/md5.cc MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7); c 87 base/md5.cc MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12); c 88 base/md5.cc MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17); c 89 base/md5.cc MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22); c 91 base/md5.cc MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5); c 92 base/md5.cc MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9); c 93 base/md5.cc MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14); c 94 base/md5.cc MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20); c 95 base/md5.cc MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5); c 96 base/md5.cc MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9); c 97 base/md5.cc MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14); c 98 base/md5.cc MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20); c 99 base/md5.cc MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5); c 100 base/md5.cc MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9); c 101 base/md5.cc MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14); c 102 base/md5.cc MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20); c 103 base/md5.cc MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5); c 104 base/md5.cc MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9); c 105 base/md5.cc MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14); c 106 base/md5.cc MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20); c 108 base/md5.cc MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4); c 109 base/md5.cc MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11); c 110 base/md5.cc MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16); c 111 base/md5.cc MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23); c 112 base/md5.cc MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4); c 113 base/md5.cc MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11); c 114 base/md5.cc MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16); c 115 base/md5.cc MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23); c 116 base/md5.cc MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4); c 117 base/md5.cc MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11); c 118 base/md5.cc MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16); c 119 base/md5.cc MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23); c 120 base/md5.cc MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4); c 121 base/md5.cc MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11); c 122 base/md5.cc MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16); c 123 base/md5.cc MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23); c 125 base/md5.cc MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); c 126 base/md5.cc MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); c 127 base/md5.cc MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); c 128 base/md5.cc MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); c 129 base/md5.cc MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); c 130 base/md5.cc MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); c 131 base/md5.cc MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); c 132 base/md5.cc MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); c 133 base/md5.cc MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6); c 134 base/md5.cc MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10); c 135 base/md5.cc MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15); c 136 base/md5.cc MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21); c 137 base/md5.cc MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6); c 138 base/md5.cc MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10); c 139 base/md5.cc MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15); c 140 base/md5.cc MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21); c 144 base/md5.cc buf[2] += c; c 174 base/memory/weak_ptr_unittest.cc WeakPtr<TargetBase> c; c 175 base/memory/weak_ptr_unittest.cc c = object->target; c 93 base/message_loop/message_loop_test.cc std::string a("a"), b("b"), c("c"), d("d"); c 103 base/message_loop/message_loop_test.cc &Foo::Test2Ptr, foo.get(), &a, &c)); c 344 base/message_loop/message_loop_test.cc RecordDeletionProbe* c = new RecordDeletionProbe(b, &c_was_deleted); c 345 base/message_loop/message_loop_test.cc loop.PostTask(FROM_HERE, Bind(&RecordDeletionProbe::Run, c)); c 388 base/message_loop/message_loop_test.cc TaskItem(TaskType t, int c, bool s) c 390 base/message_loop/message_loop_test.cc cookie(c), c 162 base/message_loop/message_loop_unittest.cc TaskItem(TaskType t, int c, bool s) c 164 base/message_loop/message_loop_unittest.cc cookie(c), c 257 base/metrics/histogram.h #define DISCARD_3_ARGUMENTS(a, b, c) \ c 261 base/metrics/histogram.h static_cast<void>(c); \ c 263 base/metrics/histogram.h #define DISCARD_5_ARGUMENTS(a, b, c, d ,e) \ c 267 base/metrics/histogram.h static_cast<void>(c); \ c 190 base/observer_list_threadsafe.h void Notify(Method m, const A& a, const B& b, const C& c) { c 192 base/observer_list_threadsafe.h m, MakeTuple(a, b, c)); c 197 base/observer_list_threadsafe.h void Notify(Method m, const A& a, const B& b, const C& c, const D& d) { c 199 base/observer_list_threadsafe.h m, MakeTuple(a, b, c, d)); c 186 base/observer_list_unittest.cc Adder a(1), b(-1), c(1), d(-1), e(-1); c 187 base/observer_list_unittest.cc Disrupter evil(&observer_list, &c); c 195 base/observer_list_unittest.cc observer_list.AddObserver(&c); c 205 base/observer_list_unittest.cc EXPECT_EQ(0, c.total); c 217 base/observer_list_unittest.cc Adder c(1); c 219 base/observer_list_unittest.cc ThreadSafeDisrupter evil(observer_list.get(), &c); c 228 base/observer_list_unittest.cc observer_list->AddObserver(&c); c 236 base/observer_list_unittest.cc EXPECT_EQ(0, c.total); c 276 base/observer_list_unittest.cc Adder a(1), b(1), c(1); c 285 base/observer_list_unittest.cc observer_list->AddObserver(&c); c 292 base/observer_list_unittest.cc EXPECT_EQ(10, c.total); c 298 base/observer_list_unittest.cc observer_list->RemoveObserver(&c); c 306 base/observer_list_unittest.cc EXPECT_EQ(10, c.total); c 320 base/observer_list_unittest.cc EXPECT_EQ(10, c.total); c 380 base/observer_list_unittest.cc Adder c(1); c 89 base/os_compat_android.cc void sincos(double angle, double* s, double *c) { c 90 base/os_compat_android.cc *c = cos(angle); c 95 base/os_compat_android.cc void sincosf(float angle, float* s, float* c) { c 96 base/os_compat_android.cc *c = cosf(angle); c 57 base/pending_task.cc c.swap(queue->c); // Calls std::deque::swap. c 142 base/strings/safe_sprintf.h Arg(signed char c) : i(c), width(sizeof(char)), type(INT) { } c 143 base/strings/safe_sprintf.h Arg(unsigned char c) : i(c), width(sizeof(char)), type(UINT) { } c 43 base/strings/string16.cc const char16* c16memchr(const char16* s, char16 c, size_t n) { c 45 base/strings/string16.cc if (*s == c) { c 61 base/strings/string16.cc char16* c16memset(char16* s, char16 c, size_t n) { c 64 base/strings/string16.cc *s = c; c 56 base/strings/string16.h BASE_EXPORT const char16* c16memchr(const char16* s, char16 c, size_t n); c 59 base/strings/string16.h BASE_EXPORT char16* c16memset(char16* s, char16 c, size_t n); c 109 base/strings/string16.h static int_type not_eof(const int_type& c) { c 110 base/strings/string16.h return eq_int_type(c, eof()) ? 0 : c; c 113 base/strings/string16.h static char_type to_char_type(const int_type& c) { c 114 base/strings/string16.h return char_type(c); c 117 base/strings/string16.h static int_type to_int_type(const char_type& c) { c 118 base/strings/string16.h return int_type(c); c 104 base/strings/string_number_conversions.cc static bool Convert(CHAR c, uint8* digit) { c 105 base/strings/string_number_conversions.cc if (c >= '0' && c < '0' + BASE) { c 106 base/strings/string_number_conversions.cc *digit = c - '0'; c 116 base/strings/string_number_conversions.cc static bool Convert(CHAR c, uint8* digit) { c 117 base/strings/string_number_conversions.cc if (c >= '0' && c <= '9') { c 118 base/strings/string_number_conversions.cc *digit = c - '0'; c 119 base/strings/string_number_conversions.cc } else if (c >= 'a' && c < 'a' + BASE - 10) { c 120 base/strings/string_number_conversions.cc *digit = c - 'a' + 10; c 121 base/strings/string_number_conversions.cc } else if (c >= 'A' && c < 'A' + BASE - 10) { c 122 base/strings/string_number_conversions.cc *digit = c - 'A' + 10; c 130 base/strings/string_number_conversions.cc template<int BASE, typename CHAR> bool CharToDigit(CHAR c, uint8* digit) { c 131 base/strings/string_number_conversions.cc return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit); c 143 base/strings/string_number_conversions.cc static bool Invoke(char c) { c 144 base/strings/string_number_conversions.cc return 0 != isspace(static_cast<unsigned char>(c)); c 150 base/strings/string_number_conversions.cc static bool Invoke(char16 c) { c 151 base/strings/string_number_conversions.cc return 0 != iswspace(c); c 155 base/strings/string_number_conversions.cc template<typename CHAR> bool LocalIsWhitespace(CHAR c) { c 156 base/strings/string_number_conversions.cc return WhitespaceHelper<CHAR>::Invoke(c); c 125 base/strings/string_piece.cc typename STR::value_type c, c 131 base/strings/string_piece.cc std::find(self.begin() + pos, self.end(), c); c 136 base/strings/string_piece.cc size_t find(const StringPiece& self, char c, size_t pos) { c 137 base/strings/string_piece.cc return findT(self, c, pos); c 140 base/strings/string_piece.cc size_t find(const StringPiece16& self, char16 c, size_t pos) { c 141 base/strings/string_piece.cc return findT(self, c, pos); c 172 base/strings/string_piece.cc typename STR::value_type c, c 179 base/strings/string_piece.cc if (self.data()[i] == c) c 187 base/strings/string_piece.cc size_t rfind(const StringPiece& self, char c, size_t pos) { c 188 base/strings/string_piece.cc return rfindT(self, c, pos); c 191 base/strings/string_piece.cc size_t rfind(const StringPiece16& self, char16 c, size_t pos) { c 192 base/strings/string_piece.cc return rfindT(self, c, pos); c 274 base/strings/string_piece.cc typename STR::value_type c, c 280 base/strings/string_piece.cc if (self.data()[pos] != c) { c 288 base/strings/string_piece.cc char c, c 290 base/strings/string_piece.cc return find_first_not_ofT(self, c, pos); c 294 base/strings/string_piece.cc char16 c, c 296 base/strings/string_piece.cc return find_first_not_ofT(self, c, pos); c 389 base/strings/string_piece.cc typename STR::value_type c, c 395 base/strings/string_piece.cc if (self.data()[i] != c) c 404 base/strings/string_piece.cc char c, c 406 base/strings/string_piece.cc return find_last_not_ofT(self, c, pos); c 410 base/strings/string_piece.cc char16 c, c 412 base/strings/string_piece.cc return find_last_not_ofT(self, c, pos); c 75 base/strings/string_piece.h char c, c 78 base/strings/string_piece.h char16 c, c 88 base/strings/string_piece.h char c, c 91 base/strings/string_piece.h char16 c, c 108 base/strings/string_piece.h char c, c 111 base/strings/string_piece.h char16 c, c 121 base/strings/string_piece.h char c, c 124 base/strings/string_piece.h char16 c, c 134 base/strings/string_piece.h char16 c, c 137 base/strings/string_piece.h char c, c 286 base/strings/string_piece.h size_type find(value_type c, size_type pos = 0) const { c 287 base/strings/string_piece.h return internal::find(*this, c, pos); c 295 base/strings/string_piece.h size_type rfind(value_type c, size_type pos = BasicStringPiece::npos) const { c 296 base/strings/string_piece.h return internal::rfind(*this, c, pos); c 304 base/strings/string_piece.h size_type find_first_of(value_type c, size_type pos = 0) const { c 305 base/strings/string_piece.h return find(c, pos); c 313 base/strings/string_piece.h size_type find_first_not_of(value_type c, size_type pos = 0) const { c 314 base/strings/string_piece.h return internal::find_first_not_of(*this, c, pos); c 322 base/strings/string_piece.h size_type find_last_of(value_type c, c 324 base/strings/string_piece.h return rfind(c, pos); c 332 base/strings/string_piece.h size_type find_last_not_of(value_type c, c 334 base/strings/string_piece.h return internal::find_last_not_of(*this, c, pos); c 143 base/strings/string_piece_unittest.cc BasicStringPiece<TypeParam> c(xyz); c 153 base/strings/string_piece_unittest.cc ASSERT_EQ(c[2], static_cast<typename TypeParam::value_type>('z')); c 163 base/strings/string_piece_unittest.cc ASSERT_EQ(*(c.end() - 1), static_cast<typename TypeParam::value_type>('z')); c 168 base/strings/string_piece_unittest.cc ASSERT_EQ(*(c.rend() - 1), static_cast<typename TypeParam::value_type>('x')); c 173 base/strings/string_piece_unittest.cc ASSERT_EQ(c.size(), 3U); c 205 base/strings/string_piece_unittest.cc BasicStringPiece<TypeParam> c(xyz); c 226 base/strings/string_piece_unittest.cc ASSERT_EQ(c.copy(buf, 99), 3U); c 227 base/strings/string_piece_unittest.cc ASSERT_EQ(buf[0], c[0]); c 228 base/strings/string_piece_unittest.cc ASSERT_EQ(buf[1], c[1]); c 229 base/strings/string_piece_unittest.cc ASSERT_EQ(buf[2], c[2]); c 236 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find(c), 23U); c 237 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find(c, 9), 23U); c 238 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find(c, Piece::npos), Piece::npos); c 239 base/strings/string_piece_unittest.cc ASSERT_EQ(b.find(c), Piece::npos); c 240 base/strings/string_piece_unittest.cc ASSERT_EQ(b.find(c, Piece::npos), Piece::npos); c 288 base/strings/string_piece_unittest.cc ASSERT_EQ(a.rfind(c), 23U); c 289 base/strings/string_piece_unittest.cc ASSERT_EQ(a.rfind(c, 22U), Piece::npos); c 290 base/strings/string_piece_unittest.cc ASSERT_EQ(a.rfind(c, 1U), Piece::npos); c 291 base/strings/string_piece_unittest.cc ASSERT_EQ(a.rfind(c, 0U), Piece::npos); c 292 base/strings/string_piece_unittest.cc ASSERT_EQ(b.rfind(c), Piece::npos); c 293 base/strings/string_piece_unittest.cc ASSERT_EQ(b.rfind(c, 0U), Piece::npos); c 336 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_of(c), 23U); c 337 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_of(c, 23), 23U); c 338 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_of(c, 24), 24U); c 339 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_of(c, 25), 25U); c 340 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_of(c, 26), Piece::npos); c 342 base/strings/string_piece_unittest.cc ASSERT_EQ(g.find_first_of(c), 0U); c 356 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_first_not_of(c), 0U); c 358 base/strings/string_piece_unittest.cc ASSERT_EQ(c.find_first_not_of(a), Piece::npos); c 392 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_last_of(c), a.size()-1); c 424 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_last_not_of(c), 22U); c 428 base/strings/string_piece_unittest.cc ASSERT_EQ(a.find_last_not_of(c, 24), 22U); c 462 base/strings/string_piece_unittest.cc ASSERT_EQ(a.substr(23), c); c 463 base/strings/string_piece_unittest.cc ASSERT_EQ(a.substr(23, 3), c); c 464 base/strings/string_piece_unittest.cc ASSERT_EQ(a.substr(23, 99), c); c 485 base/strings/string_piece_unittest.cc BasicStringPiece<TypeParam> c(a); c 486 base/strings/string_piece_unittest.cc c.remove_prefix(3); c 487 base/strings/string_piece_unittest.cc ASSERT_EQ(c, TestFixture::as_string("bar")); c 488 base/strings/string_piece_unittest.cc c = a; c 489 base/strings/string_piece_unittest.cc c.remove_prefix(0); c 490 base/strings/string_piece_unittest.cc ASSERT_EQ(c, a); c 491 base/strings/string_piece_unittest.cc c.remove_prefix(c.size()); c 492 base/strings/string_piece_unittest.cc ASSERT_EQ(c, e); c 495 base/strings/string_piece_unittest.cc c = a; c 496 base/strings/string_piece_unittest.cc c.remove_suffix(3); c 497 base/strings/string_piece_unittest.cc ASSERT_EQ(c, TestFixture::as_string("foo")); c 498 base/strings/string_piece_unittest.cc c = a; c 499 base/strings/string_piece_unittest.cc c.remove_suffix(0); c 500 base/strings/string_piece_unittest.cc ASSERT_EQ(c, a); c 501 base/strings/string_piece_unittest.cc c.remove_suffix(c.size()); c 502 base/strings/string_piece_unittest.cc ASSERT_EQ(c, e); c 505 base/strings/string_piece_unittest.cc c.set(foobar.c_str()); c 506 base/strings/string_piece_unittest.cc ASSERT_EQ(c, a); c 507 base/strings/string_piece_unittest.cc c.set(foobar.c_str(), 6); c 508 base/strings/string_piece_unittest.cc ASSERT_EQ(c, a); c 509 base/strings/string_piece_unittest.cc c.set(foobar.c_str(), 0); c 510 base/strings/string_piece_unittest.cc ASSERT_EQ(c, e); c 511 base/strings/string_piece_unittest.cc c.set(foobar.c_str(), 7); // Note, has an embedded NULL c 512 base/strings/string_piece_unittest.cc ASSERT_NE(c, a); c 516 base/strings/string_piece_unittest.cc ASSERT_TRUE(c == s3); c 573 base/strings/string_piece_unittest.cc StringPiece c; c 574 base/strings/string_piece_unittest.cc c.set("foobar", 6); c 575 base/strings/string_piece_unittest.cc ASSERT_EQ(c, a); c 576 base/strings/string_piece_unittest.cc c.set("foobar", 0); c 577 base/strings/string_piece_unittest.cc ASSERT_EQ(c, e); c 578 base/strings/string_piece_unittest.cc c.set("foobar", 7); c 579 base/strings/string_piece_unittest.cc ASSERT_NE(c, a); c 23 base/strings/string_split.cc size_t c = str.size(); c 24 base/strings/string_split.cc for (size_t i = 0; i <= c; ++i) { c 25 base/strings/string_split.cc if (i == c || str[i] == s) { c 31 base/strings/string_split.cc if (i != c || !r->empty() || !tmp.empty()) c 131 base/strings/string_split.cc char16 c, c 133 base/strings/string_split.cc DCHECK(CBU16_IS_SINGLE(c)); c 134 base/strings/string_split.cc SplitStringT(str, c, true, r); c 138 base/strings/string_split.cc char c, c 141 base/strings/string_split.cc DCHECK(c >= 0); c 143 base/strings/string_split.cc DCHECK(c < 0x7F); c 144 base/strings/string_split.cc SplitStringT(str, c, true, r); c 187 base/strings/string_split.cc char16 c, c 189 base/strings/string_split.cc DCHECK(CBU16_IS_SINGLE(c)); c 190 base/strings/string_split.cc SplitStringT(str, c, false, r); c 194 base/strings/string_split.cc char c, c 198 base/strings/string_split.cc DCHECK(c >= 0); c 200 base/strings/string_split.cc DCHECK(c < 0x7F); c 201 base/strings/string_split.cc SplitStringT(str, c, false, r); c 24 base/strings/string_split.h char16 c, c 32 base/strings/string_split.h char c, c 57 base/strings/string_split.h char16 c, c 64 base/strings/string_split.h char c, c 21 base/strings/string_split_unittest.cc wchar_t c, c 24 base/strings/string_split_unittest.cc SplitString(WideToUTF16(str), c, &result16); c 209 base/strings/string_tokenizer.h bool IsDelim(char_type c) const { c 210 base/strings/string_tokenizer.h return delims_.find(c) != str::npos; c 213 base/strings/string_tokenizer.h bool IsQuote(char_type c) const { c 214 base/strings/string_tokenizer.h return quotes_.find(c) != str::npos; c 225 base/strings/string_tokenizer.h bool AdvanceOne(AdvanceState* state, char_type c) { c 229 base/strings/string_tokenizer.h } else if (c == '\\') { c 231 base/strings/string_tokenizer.h } else if (c == state->quote_char) { c 235 base/strings/string_tokenizer.h if (IsDelim(c)) c 237 base/strings/string_tokenizer.h state->in_quote = IsQuote(state->quote_char = c); c 332 base/strings/string_util.cc typename ToUnsigned<typename STR::value_type>::Unsigned c = str[i]; c 333 base/strings/string_util.cc if (c > 0x7F) c 836 base/strings/string_util.cc base_icu::UChar32 c; c 838 base/strings/string_util.cc CBU8_NEXT(*p, offset, end - *p, c); c 840 base/strings/string_util.cc return c; c 846 base/strings/string_util.cc base_icu::UChar32 c; c 848 base/strings/string_util.cc CBU16_NEXT(*p, offset, end - *p, c); c 850 base/strings/string_util.cc return c; c 96 base/strings/string_util.h template <class Char> inline Char ToLowerASCII(Char c) { c 97 base/strings/string_util.h return (c >= 'A' && c <= 'Z') ? (c + ('a' - 'A')) : c; c 102 base/strings/string_util.h template <class Char> inline Char ToUpperASCII(Char c) { c 103 base/strings/string_util.h return (c >= 'a' && c <= 'z') ? (c + ('A' - 'a')) : c; c 335 base/strings/string_util.h inline bool IsAsciiWhitespace(Char c) { c 336 base/strings/string_util.h return c == ' ' || c == '\r' || c == '\n' || c == '\t'; c 339 base/strings/string_util.h inline bool IsAsciiAlpha(Char c) { c 340 base/strings/string_util.h return ((c >= 'A') && (c <= 'Z')) || ((c >= 'a') && (c <= 'z')); c 343 base/strings/string_util.h inline bool IsAsciiDigit(Char c) { c 344 base/strings/string_util.h return c >= '0' && c <= '9'; c 348 base/strings/string_util.h inline bool IsHexDigit(Char c) { c 349 base/strings/string_util.h return (c >= '0' && c <= '9') || c 350 base/strings/string_util.h (c >= 'A' && c <= 'F') || c 351 base/strings/string_util.h (c >= 'a' && c <= 'f'); c 355 base/strings/string_util.h inline Char HexDigitToInt(Char c) { c 356 base/strings/string_util.h DCHECK(IsHexDigit(c)); c 357 base/strings/string_util.h if (c >= '0' && c <= '9') c 358 base/strings/string_util.h return c - '0'; c 359 base/strings/string_util.h if (c >= 'A' && c <= 'F') c 360 base/strings/string_util.h return c - 'A' + 10; c 361 base/strings/string_util.h if (c >= 'a' && c <= 'f') c 362 base/strings/string_util.h return c - 'a' + 10; c 367 base/strings/string_util.h inline bool IsWhitespace(wchar_t c) { c 368 base/strings/string_util.h return wcschr(base::kWhitespaceWide, c) != NULL; c 31 base/test/android/java/src/org/chromium/base/ContentUriTestUtils.java Cursor c = context.getContentResolver().query( c 37 base/test/android/java/src/org/chromium/base/ContentUriTestUtils.java if (c != null && c.getCount() > 0) { c 38 base/test/android/java/src/org/chromium/base/ContentUriTestUtils.java c.moveToFirst(); c 39 base/test/android/java/src/org/chromium/base/ContentUriTestUtils.java int id = c.getInt(0); c 336 base/third_party/dmg_fp/dtoa.cc #define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \ c 337 base/third_party/dmg_fp/dtoa.cc ((unsigned short *)a)[0] = (unsigned short)c, a++) c 339 base/third_party/dmg_fp/dtoa.cc #define Storeinc(a,b,c) (((unsigned short *)a)[0] = (unsigned short)b, \ c 340 base/third_party/dmg_fp/dtoa.cc ((unsigned short *)a)[1] = (unsigned short)c, a++) c 809 base/third_party/dmg_fp/dtoa.cc Bigint *c; c 823 base/third_party/dmg_fp/dtoa.cc c = a; c 825 base/third_party/dmg_fp/dtoa.cc b = c; c 833 base/third_party/dmg_fp/dtoa.cc c = Balloc(k); c 834 base/third_party/dmg_fp/dtoa.cc for(x = c->x, xa = x + wc; x < xa; x++) c 840 base/third_party/dmg_fp/dtoa.cc xc0 = c->x; c 906 base/third_party/dmg_fp/dtoa.cc for(xc0 = c->x, xc = xc0 + wc; wc > 0 && !*--xc; --wc) ; c 907 base/third_party/dmg_fp/dtoa.cc c->wds = wc; c 908 base/third_party/dmg_fp/dtoa.cc return c; c 1072 base/third_party/dmg_fp/dtoa.cc Bigint *c; c 1086 base/third_party/dmg_fp/dtoa.cc c = Balloc(0); c 1087 base/third_party/dmg_fp/dtoa.cc c->wds = 1; c 1088 base/third_party/dmg_fp/dtoa.cc c->x[0] = 0; c 1089 base/third_party/dmg_fp/dtoa.cc return c; c 1092 base/third_party/dmg_fp/dtoa.cc c = a; c 1094 base/third_party/dmg_fp/dtoa.cc b = c; c 1099 base/third_party/dmg_fp/dtoa.cc c = Balloc(a->k); c 1100 base/third_party/dmg_fp/dtoa.cc c->sign = i; c 1107 base/third_party/dmg_fp/dtoa.cc xc = c->x; c 1154 base/third_party/dmg_fp/dtoa.cc c->wds = wa; c 1155 base/third_party/dmg_fp/dtoa.cc return c; c 1542 base/third_party/dmg_fp/dtoa.cc int c, d; c 1546 base/third_party/dmg_fp/dtoa.cc if ((c = *++s) >= 'A' && c <= 'Z') c 1547 base/third_party/dmg_fp/dtoa.cc c += 'a' - 'A'; c 1548 base/third_party/dmg_fp/dtoa.cc if (c != d) c 1564 base/third_party/dmg_fp/dtoa.cc ULong c, x[2]; c 1575 base/third_party/dmg_fp/dtoa.cc while((c = *(CONST unsigned char*)(s+1)) && c <= ' ') c 1579 base/third_party/dmg_fp/dtoa.cc while((c = *(CONST unsigned char*)++s)) { c 1580 base/third_party/dmg_fp/dtoa.cc if ((c1 = hexdig[c])) c 1581 base/third_party/dmg_fp/dtoa.cc c = c1 & 0xf; c 1582 base/third_party/dmg_fp/dtoa.cc else if (c <= ' ') { c 1590 base/third_party/dmg_fp/dtoa.cc else if (/*(*/ c == ')' && havedig) { c 1599 base/third_party/dmg_fp/dtoa.cc if (/*(*/ c == ')') { c 1603 base/third_party/dmg_fp/dtoa.cc } while((c = *++s)); c 1615 base/third_party/dmg_fp/dtoa.cc x[1] = (x[1] << 4) | c; c 2438 base/third_party/dmg_fp/dtoa.cc int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, e, e1; c 2509 base/third_party/dmg_fp/dtoa.cc for(nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++) c 2511 base/third_party/dmg_fp/dtoa.cc y = 10*y + c - '0'; c 2513 base/third_party/dmg_fp/dtoa.cc z = 10*z + c - '0'; c 2518 base/third_party/dmg_fp/dtoa.cc if (c == *s1) { c 2519 base/third_party/dmg_fp/dtoa.cc c = '.'; c 2524 base/third_party/dmg_fp/dtoa.cc c = 0; c 2535 base/third_party/dmg_fp/dtoa.cc if (c == '.') { c 2536 base/third_party/dmg_fp/dtoa.cc c = *++s; c 2540 base/third_party/dmg_fp/dtoa.cc for(; c == '0'; c = *++s) c 2542 base/third_party/dmg_fp/dtoa.cc if (c > '0' && c <= '9') { c 2550 base/third_party/dmg_fp/dtoa.cc for(; c >= '0' && c <= '9'; c = *++s) { c 2553 base/third_party/dmg_fp/dtoa.cc if (c -= '0') { c 2561 base/third_party/dmg_fp/dtoa.cc y = 10*y + c; c 2563 base/third_party/dmg_fp/dtoa.cc z = 10*z + c; c 2570 base/third_party/dmg_fp/dtoa.cc if (c == 'e' || c == 'E') { c 2576 base/third_party/dmg_fp/dtoa.cc switch(c = *++s) { c 2580 base/third_party/dmg_fp/dtoa.cc c = *++s; c 2582 base/third_party/dmg_fp/dtoa.cc if (c >= '0' && c <= '9') { c 2583 base/third_party/dmg_fp/dtoa.cc while(c == '0') c 2584 base/third_party/dmg_fp/dtoa.cc c = *++s; c 2585 base/third_party/dmg_fp/dtoa.cc if (c > '0' && c <= '9') { c 2586 base/third_party/dmg_fp/dtoa.cc L = c - '0'; c 2588 base/third_party/dmg_fp/dtoa.cc while((c = *++s) >= '0' && c <= '9') c 2589 base/third_party/dmg_fp/dtoa.cc L = 10*L + c - '0'; c 2611 base/third_party/dmg_fp/dtoa.cc switch(c) { c 137 base/third_party/icu/icu_utf.cc utf8_nextCharSafeBody(const uint8 *s, int32 *pi, int32 length, UChar32 c, UBool strict) { c 139 base/third_party/icu/icu_utf.cc uint8 count=CBU8_COUNT_TRAIL_BYTES(c); c 143 base/third_party/icu/icu_utf.cc CBU8_MASK_LEAD_BYTE((c), count); c 154 base/third_party/icu/icu_utf.cc (c)=((c)<<6)|(trail&0x3f); c 155 base/third_party/icu/icu_utf.cc if(c<0x110) { c 164 base/third_party/icu/icu_utf.cc (c)=((c)<<6)|(trail&0x3f); c 168 base/third_party/icu/icu_utf.cc (c)=((c)<<6)|(trail&0x3f); c 193 base/third_party/icu/icu_utf.cc if(illegal || (c)<utf8_minLegal[count] || (CBU_IS_SURROGATE(c) && strict!=-2)) { c 203 base/third_party/icu/icu_utf.cc c=utf8_errorValue[errorCount-count]; c 205 base/third_party/icu/icu_utf.cc c=CBU_SENTINEL; c 207 base/third_party/icu/icu_utf.cc } else if((strict)>0 && CBU_IS_UNICODE_NONCHAR(c)) { c 209 base/third_party/icu/icu_utf.cc c=utf8_errorValue[count]; c 219 base/third_party/icu/icu_utf.cc c=utf8_errorValue[i-i0]; c 221 base/third_party/icu/icu_utf.cc c=CBU_SENTINEL; c 225 base/third_party/icu/icu_utf.cc return c; c 57 base/third_party/icu/icu_utf.h #define CBU_IS_UNICODE_NONCHAR(c) \ c 58 base/third_party/icu/icu_utf.h ((c)>=0xfdd0 && \ c 59 base/third_party/icu/icu_utf.h ((uint32)(c)<=0xfdef || ((c)&0xfffe)==0xfffe) && \ c 60 base/third_party/icu/icu_utf.h (uint32)(c)<=0x10ffff) c 79 base/third_party/icu/icu_utf.h #define CBU_IS_UNICODE_CHAR(c) \ c 80 base/third_party/icu/icu_utf.h ((uint32)(c)<0xd800 || \ c 81 base/third_party/icu/icu_utf.h ((uint32)(c)>0xdfff && \ c 82 base/third_party/icu/icu_utf.h (uint32)(c)<=0x10ffff && \ c 83 base/third_party/icu/icu_utf.h !CBU_IS_UNICODE_NONCHAR(c))) c 91 base/third_party/icu/icu_utf.h #define CBU_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800) c 100 base/third_party/icu/icu_utf.h #define CBU_IS_SURROGATE_LEAD(c) (((c)&0x400)==0) c 126 base/third_party/icu/icu_utf.h #define CBU8_IS_SINGLE(c) (((c)&0x80)==0) c 134 base/third_party/icu/icu_utf.h #define CBU8_IS_LEAD(c) ((uint8)((c)-0xc0)<0x3e) c 142 base/third_party/icu/icu_utf.h #define CBU8_IS_TRAIL(c) (((c)&0xc0)==0x80) c 151 base/third_party/icu/icu_utf.h #define CBU8_LENGTH(c) \ c 152 base/third_party/icu/icu_utf.h ((uint32)(c)<=0x7f ? 1 : \ c 153 base/third_party/icu/icu_utf.h ((uint32)(c)<=0x7ff ? 2 : \ c 154 base/third_party/icu/icu_utf.h ((uint32)(c)<=0xd7ff ? 3 : \ c 155 base/third_party/icu/icu_utf.h ((uint32)(c)<=0xdfff || (uint32)(c)>0x10ffff ? 0 : \ c 156 base/third_party/icu/icu_utf.h ((uint32)(c)<=0xffff ? 3 : 4)\ c 173 base/third_party/icu/icu_utf.h UChar32 utf8_nextCharSafeBody(const uint8 *s, int32 *pi, int32 length, UChar32 c, UBool strict); c 193 base/third_party/icu/icu_utf.h #define CBU8_NEXT(s, i, length, c) { \ c 194 base/third_party/icu/icu_utf.h (c)=(s)[(i)++]; \ c 195 base/third_party/icu/icu_utf.h if(((uint8)(c))>=0x80) { \ c 196 base/third_party/icu/icu_utf.h if(CBU8_IS_LEAD(c)) { \ c 197 base/third_party/icu/icu_utf.h (c)=base_icu::utf8_nextCharSafeBody((const uint8 *)s, &(i), (int32)(length), c, -1); \ c 199 base/third_party/icu/icu_utf.h (c)=CBU_SENTINEL; \ c 217 base/third_party/icu/icu_utf.h #define CBU8_APPEND_UNSAFE(s, i, c) { \ c 218 base/third_party/icu/icu_utf.h if((uint32)(c)<=0x7f) { \ c 219 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)(c); \ c 221 base/third_party/icu/icu_utf.h if((uint32)(c)<=0x7ff) { \ c 222 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)(((c)>>6)|0xc0); \ c 224 base/third_party/icu/icu_utf.h if((uint32)(c)<=0xffff) { \ c 225 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)(((c)>>12)|0xe0); \ c 227 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)(((c)>>18)|0xf0); \ c 228 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)((((c)>>12)&0x3f)|0x80); \ c 230 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)((((c)>>6)&0x3f)|0x80); \ c 232 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint8)(((c)&0x3f)|0x80); \ c 245 base/third_party/icu/icu_utf.h #define CBU16_IS_SINGLE(c) !CBU_IS_SURROGATE(c) c 253 base/third_party/icu/icu_utf.h #define CBU16_IS_LEAD(c) (((c)&0xfffffc00)==0xd800) c 261 base/third_party/icu/icu_utf.h #define CBU16_IS_TRAIL(c) (((c)&0xfffffc00)==0xdc00) c 269 base/third_party/icu/icu_utf.h #define CBU16_IS_SURROGATE(c) CBU_IS_SURROGATE(c) c 278 base/third_party/icu/icu_utf.h #define CBU16_IS_SURROGATE_LEAD(c) (((c)&0x400)==0) c 328 base/third_party/icu/icu_utf.h #define CBU16_LENGTH(c) ((uint32)(c)<=0xffff ? 1 : 2) c 356 base/third_party/icu/icu_utf.h #define CBU16_NEXT(s, i, length, c) { \ c 357 base/third_party/icu/icu_utf.h (c)=(s)[(i)++]; \ c 358 base/third_party/icu/icu_utf.h if(CBU16_IS_LEAD(c)) { \ c 362 base/third_party/icu/icu_utf.h (c)=CBU16_GET_SUPPLEMENTARY((c), __c2); \ c 380 base/third_party/icu/icu_utf.h #define CBU16_APPEND_UNSAFE(s, i, c) { \ c 381 base/third_party/icu/icu_utf.h if((uint32)(c)<=0xffff) { \ c 382 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint16)(c); \ c 384 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint16)(((c)>>10)+0xd7c0); \ c 385 base/third_party/icu/icu_utf.h (s)[(i)++]=(uint16)(((c)&0x3ff)|0xdc00); \ c 282 base/third_party/symbolize/demangle.cc static bool IsLower(char c) { c 283 base/third_party/symbolize/demangle.cc return c >= 'a' && c <= 'z'; c 286 base/third_party/symbolize/demangle.cc static bool IsAlpha(char c) { c 287 base/third_party/symbolize/demangle.cc return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); c 290 base/third_party/symbolize/demangle.cc static bool IsDigit(char c) { c 291 base/third_party/symbolize/demangle.cc return c >= '0' && c <= '9'; c 570 base/third_party/xdg_mime/xdgmimecache.c #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z') c 580 base/third_party/xdg_mime/xdgmimecache.c char c = *p; c 581 base/third_party/xdg_mime/xdgmimecache.c *p++ = ISUPPER (c) ? c - 'A' + 'a' : c; c 387 base/third_party/xdg_mime/xdgmimeglob.c #define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z') c 397 base/third_party/xdg_mime/xdgmimeglob.c char c = *p; c 398 base/third_party/xdg_mime/xdgmimeglob.c *p++ = ISUPPER (c) ? c - 'A' + 'a' : c; c 181 base/third_party/xdg_mime/xdgmimeint.c xdg_unichar_t c; c 186 base/third_party/xdg_mime/xdgmimeint.c c = source[i]; c 188 base/third_party/xdg_mime/xdgmimeint.c source[len - i - 1] = c; c 166 base/third_party/xdg_mime/xdgmimemagic.c int c; c 176 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 177 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 182 base/third_party/xdg_mime/xdgmimemagic.c if (c == '\n' || c == '\000') c 184 base/third_party/xdg_mime/xdgmimemagic.c retval[pos++] = (unsigned char) c; c 206 base/third_party/xdg_mime/xdgmimemagic.c int c; c 211 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 213 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 218 base/third_party/xdg_mime/xdgmimemagic.c if (! isdigit (c)) c 220 base/third_party/xdg_mime/xdgmimemagic.c ungetc (c, magic_file); c 223 base/third_party/xdg_mime/xdgmimemagic.c number_string[pos] = (char) c; c 247 base/third_party/xdg_mime/xdgmimemagic.c int c; c 255 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 256 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 258 base/third_party/xdg_mime/xdgmimemagic.c if (c != '[') c 267 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 268 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 270 base/third_party/xdg_mime/xdgmimemagic.c if (c != ':') c 296 base/third_party/xdg_mime/xdgmimemagic.c int c; c 300 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 301 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 303 base/third_party/xdg_mime/xdgmimemagic.c if (c == '\n') c 317 base/third_party/xdg_mime/xdgmimemagic.c int c; c 325 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 326 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 328 base/third_party/xdg_mime/xdgmimemagic.c else if (c == '[') c 330 base/third_party/xdg_mime/xdgmimemagic.c ungetc (c, magic_file); c 333 base/third_party/xdg_mime/xdgmimemagic.c else if (c == '\n') c 338 base/third_party/xdg_mime/xdgmimemagic.c if (isdigit (c)) c 340 base/third_party/xdg_mime/xdgmimemagic.c ungetc (c, magic_file); c 346 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 347 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 351 base/third_party/xdg_mime/xdgmimemagic.c if (c != '>') c 367 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 368 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 373 base/third_party/xdg_mime/xdgmimemagic.c else if (c != '=') c 381 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 382 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 387 base/third_party/xdg_mime/xdgmimemagic.c matchlet->value_length = c & 0xFF; c 390 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 391 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 396 base/third_party/xdg_mime/xdgmimemagic.c matchlet->value_length = matchlet->value_length + (c & 0xFF); c 416 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 417 base/third_party/xdg_mime/xdgmimemagic.c if (c == '&') c 435 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 438 base/third_party/xdg_mime/xdgmimemagic.c if (c == '~') c 454 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 457 base/third_party/xdg_mime/xdgmimemagic.c if (c == '+') c 470 base/third_party/xdg_mime/xdgmimemagic.c c = getc_unlocked (magic_file); c 474 base/third_party/xdg_mime/xdgmimemagic.c if (c == '\n') c 513 base/third_party/xdg_mime/xdgmimemagic.c if (c == EOF) c 375 base/timer/timer_unittest.cc OneShotTimerTester c(&did_run); c 56 base/tools_sanity_unittest.cc char c = ptr[-2]; c 57 base/tools_sanity_unittest.cc VLOG(1) << "Reading a byte out of bounds: " << c; c 61 base/tools_sanity_unittest.cc char c = ptr[size + 1]; c 62 base/tools_sanity_unittest.cc VLOG(1) << "Reading a byte out of bounds: " << c; c 116 base/tuple.h typename TupleTraits<C>::ParamType c) c 117 base/tuple.h : a(a), b(b), c(c){ c 122 base/tuple.h C c; c 136 base/tuple.h typename TupleTraits<C>::ParamType c, c 138 base/tuple.h : a(a), b(b), c(c), d(d) { c 143 base/tuple.h C c; c 159 base/tuple.h typename TupleTraits<C>::ParamType c, c 162 base/tuple.h : a(a), b(b), c(c), d(d), e(e) { c 167 base/tuple.h C c; c 185 base/tuple.h typename TupleTraits<C>::ParamType c, c 189 base/tuple.h : a(a), b(b), c(c), d(d), e(e), f(f) { c 194 base/tuple.h C c; c 214 base/tuple.h typename TupleTraits<C>::ParamType c, c 219 base/tuple.h : a(a), b(b), c(c), d(d), e(e), f(f), g(g) { c 224 base/tuple.h C c; c 247 base/tuple.h typename TupleTraits<C>::ParamType c, c 253 base/tuple.h : a(a), b(b), c(c), d(d), e(e), f(f), g(g), h(h) { c 258 base/tuple.h C c; c 439 base/tuple.h inline Tuple3<A, B, C> MakeTuple(const A& a, const B& b, const C& c) { c 440 base/tuple.h return Tuple3<A, B, C>(a, b, c); c 444 base/tuple.h inline Tuple4<A, B, C, D> MakeTuple(const A& a, const B& b, const C& c, c 446 base/tuple.h return Tuple4<A, B, C, D>(a, b, c, d); c 450 base/tuple.h inline Tuple5<A, B, C, D, E> MakeTuple(const A& a, const B& b, const C& c, c 452 base/tuple.h return Tuple5<A, B, C, D, E>(a, b, c, d, e); c 456 base/tuple.h inline Tuple6<A, B, C, D, E, F> MakeTuple(const A& a, const B& b, const C& c, c 458 base/tuple.h return Tuple6<A, B, C, D, E, F>(a, b, c, d, e, f); c 462 base/tuple.h inline Tuple7<A, B, C, D, E, F, G> MakeTuple(const A& a, const B& b, const C& c, c 465 base/tuple.h return Tuple7<A, B, C, D, E, F, G>(a, b, c, d, e, f, g); c 471 base/tuple.h const C& c, const D& d, c 474 base/tuple.h return Tuple8<A, B, C, D, E, F, G, H>(a, b, c, d, e, f, g, h); c 491 base/tuple.h inline Tuple3<A&, B&, C&> MakeRefTuple(A& a, B& b, C& c) { c 492 base/tuple.h return Tuple3<A&, B&, C&>(a, b, c); c 496 base/tuple.h inline Tuple4<A&, B&, C&, D&> MakeRefTuple(A& a, B& b, C& c, D& d) { c 497 base/tuple.h return Tuple4<A&, B&, C&, D&>(a, b, c, d); c 501 base/tuple.h inline Tuple5<A&, B&, C&, D&, E&> MakeRefTuple(A& a, B& b, C& c, D& d, E& e) { c 502 base/tuple.h return Tuple5<A&, B&, C&, D&, E&>(a, b, c, d, e); c 506 base/tuple.h inline Tuple6<A&, B&, C&, D&, E&, F&> MakeRefTuple(A& a, B& b, C& c, D& d, E& e, c 508 base/tuple.h return Tuple6<A&, B&, C&, D&, E&, F&>(a, b, c, d, e, f); c 512 base/tuple.h inline Tuple7<A&, B&, C&, D&, E&, F&, G&> MakeRefTuple(A& a, B& b, C& c, D& d, c 514 base/tuple.h return Tuple7<A&, B&, C&, D&, E&, F&, G&>(a, b, c, d, e, f, g); c 519 base/tuple.h inline Tuple8<A&, B&, C&, D&, E&, F&, G&, H&> MakeRefTuple(A& a, B& b, C& c, c 522 base/tuple.h return Tuple8<A&, B&, C&, D&, E&, F&, G&, H&>(a, b, c, d, e, f, g, h); c 564 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c)); c 572 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 581 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 592 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 604 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 617 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 652 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c)); c 660 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 669 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 679 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 691 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 704 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 746 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c)); c 754 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 763 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 774 base/tuple.h base::internal::UnwrapTraits<C>::Unwrap(arg.c), c 823 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 834 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 846 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 860 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 912 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 924 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 938 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 953 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 968 base/tuple.h (obj->*method)(&out->a, &out->b, &out->c); c 976 base/tuple.h (obj->*method)(in, &out->a, &out->b, &out->c); c 987 base/tuple.h &out->c); c 999 base/tuple.h &out->c); c 1009 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1012 base/tuple.h &out->c); c 1022 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1026 base/tuple.h &out->c); c 1037 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1042 base/tuple.h &out->c); c 1053 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1059 base/tuple.h &out->c); c 1069 base/tuple.h (obj->*method)(&out->a, &out->b, &out->c, &out->d); c 1080 base/tuple.h &out->c, c 1092 base/tuple.h &out->c, c 1105 base/tuple.h &out->c, c 1116 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1119 base/tuple.h &out->c, c 1130 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1134 base/tuple.h &out->c, c 1146 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1151 base/tuple.h &out->c, c 1163 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1169 base/tuple.h &out->c, c 1180 base/tuple.h (obj->*method)(&out->a, &out->b, &out->c, &out->d, &out->e); c 1191 base/tuple.h &out->c, c 1204 base/tuple.h &out->c, c 1218 base/tuple.h &out->c, c 1230 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1233 base/tuple.h &out->c, c 1245 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1249 base/tuple.h &out->c, c 1262 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1267 base/tuple.h &out->c, c 1280 base/tuple.h base::internal::UnwrapTraits<InC>::Unwrap(in.c), c 1286 base/tuple.h &out->c, c 12 base/tuple_unittest.cc void DoAdd(int a, int b, int c, int* res) { c 13 base/tuple_unittest.cc *res = a + b + c; c 18 base/tuple_unittest.cc void DoAdd(int a, int b, int c, int d, int* res) { c 19 base/tuple_unittest.cc *res = a + b + c + d; c 25 base/tuple_unittest.cc void DoAdd(int a, int b, int c, int d, int e, int* res) { c 26 base/tuple_unittest.cc *res = a + b + c + d + e; c 45 base/tuple_unittest.cc EXPECT_EQ(3, t3.c); c 48 base/tuple_unittest.cc EXPECT_EQ(3, t4.c); c 51 base/tuple_unittest.cc EXPECT_EQ(3, t5.c); c 55 base/tuple_unittest.cc EXPECT_EQ(3, t6.c); c 9 build/android/tests/symbolize/a.cc void Bar(const char* c); c 14 build/android/tests/symbolize/a.cc void A::Bar(const char* c) {} c 489 cc/base/math_util.cc static inline float ScaleOnAxis(double a, double b, double c) { c 490 cc/base/math_util.cc if (!b && !c) c 492 cc/base/math_util.cc if (!a && !c) c 495 cc/base/math_util.cc return c; c 498 cc/base/math_util.cc return static_cast<float>(std::sqrt(a * a + b * b + c * c)); c 857 cc/layers/scrollbar_layer_unittest.cc static SkColor argb_to_skia(SkColor c) { c 858 cc/layers/scrollbar_layer_unittest.cc return (SkColorGetA(c) << SK_A32_SHIFT) | c 859 cc/layers/scrollbar_layer_unittest.cc (SkColorGetR(c) << SK_R32_SHIFT) | c 860 cc/layers/scrollbar_layer_unittest.cc (SkColorGetG(c) << SK_G32_SHIFT) | c 861 cc/layers/scrollbar_layer_unittest.cc (SkColorGetB(c) << SK_B32_SHIFT); c 55 cc/output/filter_operations_unittest.cc #define SAVE_RESTORE_OFFSET_AMOUNT_COLOR(filter_name, filter_type, a, b, c) \ c 58 cc/output/filter_operations_unittest.cc FilterOperation::Create##filter_name##Filter(a, b, c); \ c 62 cc/output/filter_operations_unittest.cc EXPECT_EQ(c, op.drop_shadow_color()); \ c 69 cc/output/filter_operations_unittest.cc EXPECT_NE(c, op2.drop_shadow_color()); \ c 73 cc/output/filter_operations_unittest.cc op2.set_drop_shadow_color(c); \ c 78 cc/output/filter_operations_unittest.cc EXPECT_EQ(c, op2.drop_shadow_color()); \ c 155 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_3_NEW(Type, a, b, c) \ c 159 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c); \ c 163 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_3_ALL(Type, a, b, c) \ c 168 cc/quads/draw_quad_unittest.cc quad_visible_rect, needs_blending, a, b, c); \ c 172 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_4_NEW(Type, a, b, c, d) \ c 176 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d); \ c 180 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_4_ALL(Type, a, b, c, d) \ c 185 cc/quads/draw_quad_unittest.cc quad_visible_rect, needs_blending, a, b, c, d); \ c 189 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_5_NEW(Type, a, b, c, d, e) \ c 193 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e); \ c 197 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_5_ALL(Type, a, b, c, d, e) \ c 202 cc/quads/draw_quad_unittest.cc quad_visible_rect, needs_blending, a, b, c, d, e); \ c 206 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_5_NEW_1(Type, a, b, c, d, e, copy_a) \ c 210 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e); \ c 214 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_5_ALL_1(Type, a, b, c, d, e, copy_a) \ c 219 cc/quads/draw_quad_unittest.cc quad_visible_rect, needs_blending, a, b, c, d, e); \ c 223 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_6_NEW(Type, a, b, c, d, e, f) \ c 227 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f); \ c 231 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_6_ALL(Type, a, b, c, d, e, f) \ c 236 cc/quads/draw_quad_unittest.cc quad_visible_rect, needs_blending, a, b, c, d, e, f); \ c 240 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_NEW(Type, a, b, c, d, e, f, g) \ c 244 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g); \ c 248 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_ALL(Type, a, b, c, d, e, f, g) \ c 254 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g); \ c 258 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_NEW_1(Type, a, b, c, d, e, f, g, copy_a) \ c 262 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g); \ c 266 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_7_ALL_1(Type, a, b, c, d, e, f, g, copy_a) \ c 272 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g); \ c 276 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_NEW(Type, a, b, c, d, e, f, g, h) \ c 280 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g, h); \ c 284 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_ALL(Type, a, b, c, d, e, f, g, h) \ c 290 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h); \ c 294 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_NEW_1(Type, a, b, c, d, e, f, g, h, copy_a) \ c 298 cc/quads/draw_quad_unittest.cc quad_new->SetNew(shared_state.get(), quad_rect, a, b, c, d, e, f, g, h); \ c 302 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_8_ALL_1(Type, a, b, c, d, e, f, g, h, copy_a) \ c 308 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h); \ c 312 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_9_NEW(Type, a, b, c, d, e, f, g, h, i) \ c 317 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h, i); \ c 321 cc/quads/draw_quad_unittest.cc #define CREATE_QUAD_9_ALL(Type, a, b, c, d, e, f, g, h, i) \ c 327 cc/quads/draw_quad_unittest.cc a, b, c, d, e, f, g, h, i); \ c 628 cc/resources/picture_layer_tiling.cc int64 c = static_cast<int64>(width) * height - target_area; c 631 cc/resources/picture_layer_tiling.cc return a == 0 ? -c / b : c 633 cc/resources/picture_layer_tiling.cc std::sqrt(static_cast<int64>(b) * b - 4.0 * a * c))) / (2 * a); c 72 cc/test/layer_test_common.h T* AddChildToRoot(const A& a, const B& b, const C& c, const D& d) { c 74 cc/test/layer_test_common.h T::Create(host_->host_impl()->active_tree(), 2, a, b, c, d); c 35 cc/trees/layer_sorter.cc const gfx::PointF& c, c 39 cc/trees/layer_sorter.cc gfx::Vector2dF v = d - c; c 40 cc/trees/layer_sorter.cc gfx::Vector2dF w = a - c; c 341 chrome/android/java/src/org/chromium/chrome/browser/BookmarksBridge.java private static int getBookmarkTypeFromChar(char c) { c 342 chrome/android/java/src/org/chromium/chrome/browser/BookmarksBridge.java switch (c) { c 356 chrome/android/java/src/org/chromium/chrome/browser/BookmarksBridge.java private static boolean isValidBookmarkTypeFromChar(char c) { c 357 chrome/android/java/src/org/chromium/chrome/browser/BookmarksBridge.java return (c == TYPE_MANAGED || c == TYPE_PARTNER); c 44 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public ChromeBrowserProviderSuggestionsCursor(Cursor c) { c 45 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java mCursor = c; c 89 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public boolean isNull(int c) { c 90 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java return mCursor.isNull(c); c 94 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public long getLong(int c) { c 95 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java switch (c) { c 107 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public short getShort(int c) { c 112 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public double getDouble(int c) { c 117 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public int getInt(int c) { c 122 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderSuggestionsCursor.java public float getFloat(int c) { c 380 chrome/browser/autocomplete/autocomplete_input.cc char c = text[parts->path.end() - 1]; c 381 chrome/browser/autocomplete/autocomplete_input.cc if ((c == '\\') || (c == '/')) c 47 chrome/browser/chrome_process_finder_win.cc bool Contains(unsigned char c) const { c 48 chrome/browser/chrome_process_finder_win.cc return ((map[c >> 5] & (1 << (c & 31))) != 0); c 70 chrome/browser/chrome_process_finder_win.cc unsigned char c = static_cast<unsigned char>(text[i]); c 71 chrome/browser/chrome_process_finder_win.cc if (use_plus && ' ' == c) { c 73 chrome/browser/chrome_process_finder_win.cc } else if (charmap.Contains(c)) { c 75 chrome/browser/chrome_process_finder_win.cc escaped.push_back(IntToHex(c >> 4)); c 76 chrome/browser/chrome_process_finder_win.cc escaped.push_back(IntToHex(c & 0xf)); c 78 chrome/browser/chrome_process_finder_win.cc escaped.push_back(c); c 277 chrome/browser/chromeos/drive/file_system_util.cc char c = filename[i]; c 278 chrome/browser/chromeos/drive/file_system_util.cc if (c == '%' || c == '.' || c == '/') { c 279 chrome/browser/chromeos/drive/file_system_util.cc base::StringAppendF(&escaped, "%%%02X", c); c 281 chrome/browser/chromeos/drive/file_system_util.cc escaped.push_back(c); c 290 chrome/browser/chromeos/drive/file_system_util.cc char c = filename[i]; c 291 chrome/browser/chromeos/drive/file_system_util.cc if (c == '%' && i + 2 < filename.length()) { c 292 chrome/browser/chromeos/drive/file_system_util.cc c = (HexDigitToInt(filename[i + 1]) << 4) + c 296 chrome/browser/chromeos/drive/file_system_util.cc unescaped.push_back(c); c 96 chrome/browser/devtools/devtools_file_system_indexer.cc bool IsBinaryChar(char c) { c 97 chrome/browser/devtools/devtools_file_system_indexer.cc unsigned char uc = static_cast<unsigned char>(c); c 126 chrome/browser/devtools/devtools_file_system_indexer.cc TrigramChar TrigramCharForChar(char c) { c 127 chrome/browser/devtools/devtools_file_system_indexer.cc unsigned char uc = static_cast<unsigned char>(c); c 22 chrome/browser/extensions/api/messaging/native_messaging_host_manifest.cc char c = name[i]; c 25 chrome/browser/extensions/api/messaging/native_messaging_host_manifest.cc if (!((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c 26 chrome/browser/extensions/api/messaging/native_messaging_host_manifest.cc c == '.' || c == '_')) { c 32 chrome/browser/extensions/api/messaging/native_messaging_host_manifest.cc if (c == '.' && (i == 0 || name[i - 1] == '.' || i == name.size() - 1)) { c 34 chrome/browser/extensions/blacklist_unittest.cc const std::string& c) { c 36 chrome/browser/extensions/blacklist_unittest.cc set.insert(c); c 41 chrome/browser/extensions/blacklist_unittest.cc const std::string& c, c 43 chrome/browser/extensions/blacklist_unittest.cc std::set<std::string> set = Set(a, b, c); c 78 chrome/browser/extensions/blacklist_unittest.cc std::string c = AddExtension("c"); c 87 chrome/browser/extensions/blacklist_unittest.cc EXPECT_EQ(NOT_BLACKLISTED, tester.GetBlacklistState(c)); c 91 chrome/browser/extensions/blacklist_unittest.cc Set(a, c), base::Bind(&Assign<std::set<std::string> >, &blacklisted_ids)); c 131 chrome/browser/extensions/blacklist_unittest.cc std::string c = "cccccccccccccccccccccccccccccccc"; c 133 chrome/browser/extensions/blacklist_unittest.cc prefs()->SetExtensionBlacklisted(c, true); c 136 chrome/browser/extensions/blacklist_unittest.cc EXPECT_EQ(Set(a, c, d), prefs()->GetBlacklistedExtensions()); c 150 chrome/browser/extensions/blacklist_unittest.cc blacklist.GetMalwareIDs(Set(a, b, c, d), c 159 chrome/browser/extensions/blacklist_unittest.cc EXPECT_FALSE(prefs()->IsExtensionBlacklisted(c)); c 170 chrome/browser/extensions/blacklist_unittest.cc std::string c = AddExtension("c"); c 176 chrome/browser/extensions/blacklist_unittest.cc tester.SetBlacklistState(c, BLACKLISTED_CWS_POLICY_VIOLATION, false); c 181 chrome/browser/extensions/blacklist_unittest.cc blacklist.GetBlacklistedIDs(Set(a, b, c, e), c 184 chrome/browser/extensions/blacklist_unittest.cc blacklist.GetBlacklistedIDs(Set(b, c, d, e), c 191 chrome/browser/extensions/blacklist_unittest.cc EXPECT_EQ(BLACKLISTED_CWS_POLICY_VIOLATION, states_abc[c]); c 193 chrome/browser/extensions/blacklist_unittest.cc EXPECT_EQ(BLACKLISTED_CWS_POLICY_VIOLATION, states_bcd[c]); c 220 chrome/browser/extensions/blacklist_unittest.cc std::string c = AddExtension("c"); c 237 chrome/browser/extensions/blacklist_unittest.cc Set(a, b, c), base::Bind(&Assign<Blacklist::BlacklistStateMap>, &states)); c 246 chrome/browser/extensions/blacklist_unittest.cc EXPECT_EQ(states.end(), states.find(c)); c 251 chrome/browser/extensions/blacklist_unittest.cc Set(a, b, c), base::Bind(&Assign<Blacklist::BlacklistStateMap>, c 259 chrome/browser/extensions/blacklist_unittest.cc EXPECT_EQ(cached_states.end(), cached_states.find(c)); c 60 chrome/browser/extensions/fake_safe_browsing_database_manager.cc const std::string& a, const std::string& b, const std::string& c) { c 62 chrome/browser/extensions/fake_safe_browsing_database_manager.cc unsafe_ids_.insert(c); c 67 chrome/browser/extensions/fake_safe_browsing_database_manager.cc const std::string& a, const std::string& b, const std::string& c, c 69 chrome/browser/extensions/fake_safe_browsing_database_manager.cc SetUnsafe(a, b, c); c 38 chrome/browser/extensions/fake_safe_browsing_database_manager.h const std::string& c); c 41 chrome/browser/extensions/fake_safe_browsing_database_manager.h const std::string& c, c 879 chrome/browser/history/history_service.h const ArgC& c) { c 886 chrome/browser/history/history_service.h scoped_refptr<RequestType>(request), a, b, c)); c 902 chrome/browser/history/history_service.h const ArgC& c, c 910 chrome/browser/history/history_service.h scoped_refptr<RequestType>(request), a, b, c, d)); c 951 chrome/browser/history/history_service.h const ArgC& c) { c 954 chrome/browser/history/history_service.h ScheduleTask(priority, base::Bind(func, history_backend_.get(), a, b, c)); c 966 chrome/browser/history/history_service.h const ArgC& c, c 971 chrome/browser/history/history_service.h a, b, c, d)); c 984 chrome/browser/history/history_service.h const ArgC& c, c 990 chrome/browser/history/history_service.h a, b, c, d, e)); c 53 chrome/browser/policy/test/local_policy_test_server.cc bool IsUnsafeCharacter(char c) { c 54 chrome/browser/policy/test/local_policy_test_server.cc return !(isalnum(c) || c == '.' || c == '@' || c == '-'); c 44 chrome/browser/prerender/prerender_util.cc int a, b, c, d, e; c 46 chrome/browser/prerender/prerender_util.cc &a, &b, &c, &d, &e); c 50 chrome/browser/prerender/prerender_util.cc if (c > 10) c 51 chrome/browser/prerender/prerender_util.cc output += 2 * (c - 10); c 65 chrome/browser/prerender/prerender_util.cc char c, d, e; // e is to detect EOL as we check that it /isn't/ converted. c 66 chrome/browser/prerender/prerender_util.cc int num_parsed = sscanf(version.c_str(), "%d_%d_%c%c%c", &a, &b, &c, &d, &e); c 676 chrome/browser/safe_browsing/safe_browsing_store_file.cc const size_t c = std::min(sizeof(buf), bytes_left); c 677 chrome/browser/safe_browsing/safe_browsing_store_file.cc const size_t ret = fread(buf, 1, c, file_.get()); c 680 chrome/browser/safe_browsing/safe_browsing_store_file.cc if (ret != c) c 682 chrome/browser/safe_browsing/safe_browsing_store_file.cc base::MD5Update(&context, base::StringPiece(buf, c)); c 683 chrome/browser/safe_browsing/safe_browsing_store_file.cc bytes_left -= c; c 272 chrome/browser/safe_browsing/safe_browsing_util.cc unsigned char c = static_cast<unsigned char>(url[i]); c 273 chrome/browser/safe_browsing/safe_browsing_util.cc if (c <= ' ' || c > '~' || c == '#' || c == '%') { c 275 chrome/browser/safe_browsing/safe_browsing_util.cc escaped_str.push_back(kHexString[c >> 4]); c 276 chrome/browser/safe_browsing/safe_browsing_util.cc escaped_str.push_back(kHexString[c & 0xf]); c 278 chrome/browser/safe_browsing/safe_browsing_util.cc escaped_str.push_back(c); c 285 chrome/browser/safe_browsing/safe_browsing_util.cc std::string RemoveConsecutiveChars(const std::string& str, const char c) { c 289 chrome/browser/safe_browsing/safe_browsing_util.cc string_to_find.append(2, c); c 71 chrome/browser/search_engines/template_url_parser.cc char c = input_encoding[i]; c 72 chrome/browser/search_engines/template_url_parser.cc if (!IsAsciiAlpha(c) && !IsAsciiDigit(c) && c != '.' && c != '_' && c 73 chrome/browser/search_engines/template_url_parser.cc c != '-') { c 45 chrome/browser/sync/glue/browser_thread_model_worker_unittest.cc syncer::WorkCallback c = c 53 chrome/browser/sync/glue/browser_thread_model_worker_unittest.cc worker()->DoWorkAndWaitUntilDone(c); c 225 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits); ++c) { c 227 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc 0, base::Time::FromInternalValue(visits[c]), 0, c 229 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc new_url.add_visits(visits[c]); c 255 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits_left); ++c) { c 257 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc 0, base::Time::FromInternalValue(visits_left[c]), 0, c 261 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits_right); ++c) { c 262 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc new_url.add_visits(visits_right[c]); c 273 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits_removed); ++c) { c 274 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc EXPECT_EQ(removed_visits[c].visit_time.ToInternalValue(), c 275 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc visits_removed[c]); c 289 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits_left); ++c) { c 291 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc 0, base::Time::FromInternalValue(visits_left[c]), 0, c 295 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits_right); ++c) { c 296 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc new_url.add_visits(visits_right[c]); c 307 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc for (size_t c = 0; c < arraysize(visits_added); ++c) { c 308 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc EXPECT_EQ(new_visits[c].first.ToInternalValue(), c 309 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc visits_added[c]); c 310 chrome/browser/sync/glue/typed_url_model_associator_unittest.cc EXPECT_EQ(new_visits[c].second, content::PAGE_TRANSITION_TYPED); c 51 chrome/browser/sync/glue/ui_model_worker_unittest.cc syncer::WorkCallback c = base::Bind(&UIModelWorkerVisitor::DoWork, c 53 chrome/browser/sync/glue/ui_model_worker_unittest.cc worker_->DoWorkAndWaitUntilDone(c); c 324 chrome/browser/thumbnails/content_analysis.cc for (int c = 0; c < image_size.width(); ++c, ++row) { c 356 chrome/browser/thumbnails/content_analysis.cc for (int c = 0; c < image_size.width(); ++c) { c 357 chrome/browser/thumbnails/content_analysis.cc unsigned grad_x = grad_x_row[c]; c 358 chrome/browser/thumbnails/content_analysis.cc unsigned grad_y = grad_y_row[c]; c 371 chrome/browser/thumbnails/content_analysis.cc for (int c = 0; c < image_size.width(); ++c) { c 372 chrome/browser/thumbnails/content_analysis.cc unsigned grad_x = grad_x_row[c]; c 373 chrome/browser/thumbnails/content_analysis.cc unsigned grad_y = grad_y_row[c]; c 374 chrome/browser/thumbnails/content_analysis.cc target_row[c] = (grad_x * grad_x + grad_y * grad_y) >> bit_shift; c 405 chrome/browser/thumbnails/content_analysis.cc for (int c = 0; c < area.width(); ++c, ++image_row) { c 407 chrome/browser/thumbnails/content_analysis.cc (*columns)[c] += *image_row; c 696 chrome/browser/thumbnails/content_analysis.cc for (int c = 0; c < bitmap.width(); ++c) { c 697 chrome/browser/thumbnails/content_analysis.cc if (left_copy_pixel < 0 && columns[c]) { c 698 chrome/browser/thumbnails/content_analysis.cc left_copy_pixel = c; // Next time we will start copying from here. c 699 chrome/browser/thumbnails/content_analysis.cc } else if (left_copy_pixel >= 0 && !columns[c]) { c 701 chrome/browser/thumbnails/content_analysis.cc size_t bytes_to_copy = (c - left_copy_pixel) * bitmap.bytesPerPixel(); c 40 chrome/browser/thumbnails/content_analysis_unittest.cc for (int c = rect.x(); c < rect.right(); ++c) c 41 chrome/browser/thumbnails/content_analysis_unittest.cc total += row_data[c]; c 55 chrome/browser/thumbnails/content_analysis_unittest.cc for (int c = 0; c < comparison_area.width(); ++c) { c 56 chrome/browser/thumbnails/content_analysis_unittest.cc SkColor color_left = bitmap_left.getColor(origin_left.x() + c, c 58 chrome/browser/thumbnails/content_analysis_unittest.cc SkColor color_right = bitmap_right.getColor(origin_right.x() + c, c 141 chrome/browser/translate/translate_manager_render_view_host_unittest.cc *original_lang = translate_param.c; c 534 chrome/browser/ui/gtk/gtk_theme_service.cc for (int c = 0; c < 3; ++c) { c 540 chrome/browser/ui/gtk/gtk_theme_service.cc components[c] += data[3 * (kWidth / 3 + y * kWidth) + c]; c 1392 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc gunichar c = g_utf8_get_char(p); c 1398 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc if (c != 0x200B) c 1399 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc base::WriteUnicodeCharacter(c, &filtered_text); c 1666 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc GdkColor c; c 1669 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc c = gfx::SkColorToGdkColor( c 1671 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc gtk_widget_modify_base(text_view_, GTK_STATE_SELECTED, &c); c 1673 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc c = gfx::SkColorToGdkColor( c 1675 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc gtk_widget_modify_text(text_view_, GTK_STATE_SELECTED, &c); c 1677 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc c = gfx::SkColorToGdkColor( c 1679 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc gtk_widget_modify_base(text_view_, GTK_STATE_ACTIVE, &c); c 1681 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc c = gfx::SkColorToGdkColor( c 1683 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc gtk_widget_modify_text(text_view_, GTK_STATE_ACTIVE, &c); c 750 chrome/browser/ui/libgtk2ui/gtk2_ui.cc for (int c = 0; c < 3; ++c) { c 756 chrome/browser/ui/libgtk2ui/gtk2_ui.cc components[c] += data[3 * (kWidth / 3 + y * kWidth) + c]; c 1391 chrome/browser/ui/omnibox/omnibox_edit_model.cc bool OmniboxEditModel::IsSpaceCharForAcceptingKeyword(wchar_t c) { c 1392 chrome/browser/ui/omnibox/omnibox_edit_model.cc switch (c) { c 414 chrome/browser/ui/omnibox/omnibox_edit_model.h static bool IsSpaceCharForAcceptingKeyword(wchar_t c); c 69 chrome/browser/ui/toolbar/back_forward_menu_model_unittest.cc int c = std::min(BackForwardMenuModel::kMaxChapterStops, chapter_stops); c 71 chrome/browser/ui/toolbar/back_forward_menu_model_unittest.cc EXPECT_EQ(c, model->GetChapterStopCount(h)); c 74 chrome/browser/ui/toolbar/back_forward_menu_model_unittest.cc if (c > 0) c 75 chrome/browser/ui/toolbar/back_forward_menu_model_unittest.cc ++c; c 76 chrome/browser/ui/toolbar/back_forward_menu_model_unittest.cc EXPECT_EQ(h + c, model->GetItemCount()); c 554 chrome/browser/ui/toolbar/back_forward_menu_model_unittest.cc SkAutoLockPixels c(default_icon_bitmap); c 13 chrome/common/partial_circular_buffer.cc inline uint32 Min3(uint32 a, uint32 b, uint32 c) { c 14 chrome/common/partial_circular_buffer.cc return std::min(a, std::min(b, c)); c 836 chrome/installer/mini_installer/mini_installer.cc void* memset(void* dest, int c, size_t count) { c 841 chrome/installer/mini_installer/mini_installer.cc UINT32 fill = (c << 24 | c << 16 | c << 8 | c); c 850 chrome/installer/mini_installer/mini_installer.cc dest8[count - 3] = c; c 852 chrome/installer/mini_installer/mini_installer.cc dest8[count - 2] = c; c 854 chrome/installer/mini_installer/mini_installer.cc dest8[count - 1] = c; c 114 chrome/installer/test/alternate_version_generator.cc const std::vector<uint16>& c(version.components()); c 115 chrome/installer/test/alternate_version_generator.cc return ChromeVersion(static_cast<ULONGLONG>(c[0]) << 48 | c 116 chrome/installer/test/alternate_version_generator.cc static_cast<ULONGLONG>(c[1]) << 32 | c 117 chrome/installer/test/alternate_version_generator.cc static_cast<ULONGLONG>(c[2]) << 16 | c 118 chrome/installer/test/alternate_version_generator.cc static_cast<ULONGLONG>(c[3])); c 123 chrome/installer/util/google_update_util.cc bool IsNotPrintable(unsigned char c) { c 124 chrome/installer/util/google_update_util.cc return c < 32 || c >= 127; c 132 chrome/installer/util/google_update_util.cc bool IsIllegalUntrustedDataKeyChar(unsigned char c) { c 133 chrome/installer/util/google_update_util.cc return !(c >= 'A' && c <= 'Z' || c >= 'a' && c <= 'z' || c 134 chrome/installer/util/google_update_util.cc c >= '0' && c <= '9' || c == '-' || c == '_' || c == '$'); c 534 chrome/renderer/printing/print_web_view_helper_browsertest.cc EXPECT_EQ(page_has_print_css, param.c); c 193 chrome/renderer/spellchecker/spellcheck_worditerator.cc bool SpellcheckCharAttribute::OutputChar(UChar c, c 199 chrome/renderer/spellchecker/spellcheck_worditerator.cc return OutputArabic(c, output); c 202 chrome/renderer/spellchecker/spellcheck_worditerator.cc return OutputHangul(c, output); c 205 chrome/renderer/spellchecker/spellcheck_worditerator.cc return OutputHebrew(c, output); c 208 chrome/renderer/spellchecker/spellcheck_worditerator.cc return OutputDefault(c, output); c 212 chrome/renderer/spellchecker/spellcheck_worditerator.cc bool SpellcheckCharAttribute::OutputArabic(UChar c, c 219 chrome/renderer/spellchecker/spellcheck_worditerator.cc if (0x0621 <= c && c <= 0x064D) c 220 chrome/renderer/spellchecker/spellcheck_worditerator.cc output->push_back(c); c 224 chrome/renderer/spellchecker/spellcheck_worditerator.cc bool SpellcheckCharAttribute::OutputHangul(UChar c, c 253 chrome/renderer/spellchecker/spellcheck_worditerator.cc int index = c - kSBase; c 257 chrome/renderer/spellchecker/spellcheck_worditerator.cc return OutputDefault(c, output); c 272 chrome/renderer/spellchecker/spellcheck_worditerator.cc bool SpellcheckCharAttribute::OutputHebrew(UChar c, c 281 chrome/renderer/spellchecker/spellcheck_worditerator.cc if ((0x05D0 <= c && c <= 0x05EA) || c == 0x22 || c == 0x27 || c 282 chrome/renderer/spellchecker/spellcheck_worditerator.cc c == 0x05F4 || c == 0x05F3) c 283 chrome/renderer/spellchecker/spellcheck_worditerator.cc output->push_back(c); c 287 chrome/renderer/spellchecker/spellcheck_worditerator.cc bool SpellcheckCharAttribute::OutputDefault(UChar c, c 292 chrome/renderer/spellchecker/spellcheck_worditerator.cc UScriptCode script_code = uscript_getScript(c, &status); c 294 chrome/renderer/spellchecker/spellcheck_worditerator.cc output->push_back(c); c 427 chrome/renderer/spellchecker/spellcheck_worditerator.cc for (UChar c = it.first(); c != icu::CharacterIterator::DONE; c = it.next()) c 428 chrome/renderer/spellchecker/spellcheck_worditerator.cc attribute_->OutputChar(c, output_string); c 44 chrome/renderer/spellchecker/spellcheck_worditerator.h bool OutputChar(UChar c, base::string16* output) const; c 56 chrome/renderer/spellchecker/spellcheck_worditerator.h bool OutputArabic(UChar c, base::string16* output) const; c 57 chrome/renderer/spellchecker/spellcheck_worditerator.h bool OutputHangul(UChar c, base::string16* output) const; c 58 chrome/renderer/spellchecker/spellcheck_worditerator.h bool OutputHebrew(UChar c, base::string16* output) const; c 59 chrome/renderer/spellchecker/spellcheck_worditerator.h bool OutputDefault(UChar c, base::string16* output) const; c 85 chrome/renderer/translate/translate_helper_browsertest.cc *target_lang = translate_param.c; c 111 chrome/test/chromedriver/net/port_server.cc char c = 0; c 112 chrome/test/chromedriver/net/port_server.cc size_t rv = sock.Receive(&c, 1); c 115 chrome/test/chromedriver/net/port_server.cc response.push_back(c); c 96 chrome/test/chromedriver/net/port_server_unittest.cc char c = 0; c 97 chrome/test/chromedriver/net/port_server_unittest.cc size_t rv = sock.Receive(&c, 1); c 100 chrome/test/chromedriver/net/port_server_unittest.cc request->push_back(c); c 262 chrome/test/data/dromaeo/JSON.php for ($c = 0; $c < $strlen_var; ++$c) { c 264 chrome/test/data/dromaeo/JSON.php $ord_var_c = ord($var{$c}); c 287 chrome/test/data/dromaeo/JSON.php $ascii .= '\\'.$var{$c}; c 292 chrome/test/data/dromaeo/JSON.php $ascii .= $var{$c}; c 298 chrome/test/data/dromaeo/JSON.php $char = pack('C*', $ord_var_c, ord($var{$c + 1})); c 299 chrome/test/data/dromaeo/JSON.php $c += 1; c 308 chrome/test/data/dromaeo/JSON.php ord($var{$c + 1}), c 309 chrome/test/data/dromaeo/JSON.php ord($var{$c + 2})); c 310 chrome/test/data/dromaeo/JSON.php $c += 2; c 319 chrome/test/data/dromaeo/JSON.php ord($var{$c + 1}), c 320 chrome/test/data/dromaeo/JSON.php ord($var{$c + 2}), c 321 chrome/test/data/dromaeo/JSON.php ord($var{$c + 3})); c 322 chrome/test/data/dromaeo/JSON.php $c += 3; c 331 chrome/test/data/dromaeo/JSON.php ord($var{$c + 1}), c 332 chrome/test/data/dromaeo/JSON.php ord($var{$c + 2}), c 333 chrome/test/data/dromaeo/JSON.php ord($var{$c + 3}), c 334 chrome/test/data/dromaeo/JSON.php ord($var{$c + 4})); c 335 chrome/test/data/dromaeo/JSON.php $c += 4; c 344 chrome/test/data/dromaeo/JSON.php ord($var{$c + 1}), c 345 chrome/test/data/dromaeo/JSON.php ord($var{$c + 2}), c 346 chrome/test/data/dromaeo/JSON.php ord($var{$c + 3}), c 347 chrome/test/data/dromaeo/JSON.php ord($var{$c + 4}), c 348 chrome/test/data/dromaeo/JSON.php ord($var{$c + 5})); c 349 chrome/test/data/dromaeo/JSON.php $c += 5; c 520 chrome/test/data/dromaeo/JSON.php for ($c = 0; $c < $strlen_chrs; ++$c) { c 522 chrome/test/data/dromaeo/JSON.php $substr_chrs_c_2 = substr($chrs, $c, 2); c 523 chrome/test/data/dromaeo/JSON.php $ord_chrs_c = ord($chrs{$c}); c 528 chrome/test/data/dromaeo/JSON.php ++$c; c 532 chrome/test/data/dromaeo/JSON.php ++$c; c 536 chrome/test/data/dromaeo/JSON.php ++$c; c 540 chrome/test/data/dromaeo/JSON.php ++$c; c 544 chrome/test/data/dromaeo/JSON.php ++$c; c 553 chrome/test/data/dromaeo/JSON.php $utf8 .= $chrs{++$c}; c 557 chrome/test/data/dromaeo/JSON.php case preg_match('/\\\u[0-9A-F]{4}/i', substr($chrs, $c, 6)): c 559 chrome/test/data/dromaeo/JSON.php $utf16 = chr(hexdec(substr($chrs, ($c + 2), 2))) c 560 chrome/test/data/dromaeo/JSON.php . chr(hexdec(substr($chrs, ($c + 4), 2))); c 562 chrome/test/data/dromaeo/JSON.php $c += 5; c 566 chrome/test/data/dromaeo/JSON.php $utf8 .= $chrs{$c}; c 572 chrome/test/data/dromaeo/JSON.php $utf8 .= substr($chrs, $c, 2); c 573 chrome/test/data/dromaeo/JSON.php ++$c; c 579 chrome/test/data/dromaeo/JSON.php $utf8 .= substr($chrs, $c, 3); c 580 chrome/test/data/dromaeo/JSON.php $c += 2; c 586 chrome/test/data/dromaeo/JSON.php $utf8 .= substr($chrs, $c, 4); c 587 chrome/test/data/dromaeo/JSON.php $c += 3; c 593 chrome/test/data/dromaeo/JSON.php $utf8 .= substr($chrs, $c, 5); c 594 chrome/test/data/dromaeo/JSON.php $c += 4; c 600 chrome/test/data/dromaeo/JSON.php $utf8 .= substr($chrs, $c, 6); c 601 chrome/test/data/dromaeo/JSON.php $c += 5; c 647 chrome/test/data/dromaeo/JSON.php for ($c = 0; $c <= $strlen_chrs; ++$c) { c 650 chrome/test/data/dromaeo/JSON.php $substr_chrs_c_2 = substr($chrs, $c, 2); c 652 chrome/test/data/dromaeo/JSON.php if (($c == $strlen_chrs) || (($chrs{$c} == ',') && ($top['what'] == SERVICES_JSON_SLICE))) { c 655 chrome/test/data/dromaeo/JSON.php $slice = substr($chrs, $top['where'], ($c - $top['where'])); c 656 chrome/test/data/dromaeo/JSON.php array_push($stk, array('what' => SERVICES_JSON_SLICE, 'where' => ($c + 1), 'delim' => false)); c 694 chrome/test/data/dromaeo/JSON.php } elseif ((($chrs{$c} == '"') || ($chrs{$c} == "'")) && ($top['what'] != SERVICES_JSON_IN_STR)) { c 696 chrome/test/data/dromaeo/JSON.php array_push($stk, array('what' => SERVICES_JSON_IN_STR, 'where' => $c, 'delim' => $chrs{$c})); c 699 chrome/test/data/dromaeo/JSON.php } elseif (($chrs{$c} == $top['delim']) && c 701 chrome/test/data/dromaeo/JSON.php ((strlen(substr($chrs, 0, $c)) - strlen(rtrim(substr($chrs, 0, $c), '\\'))) % 2 != 1)) { c 708 chrome/test/data/dromaeo/JSON.php } elseif (($chrs{$c} == '[') && c 711 chrome/test/data/dromaeo/JSON.php array_push($stk, array('what' => SERVICES_JSON_IN_ARR, 'where' => $c, 'delim' => false)); c 714 chrome/test/data/dromaeo/JSON.php } elseif (($chrs{$c} == ']') && ($top['what'] == SERVICES_JSON_IN_ARR)) { c 719 chrome/test/data/dromaeo/JSON.php } elseif (($chrs{$c} == '{') && c 722 chrome/test/data/dromaeo/JSON.php array_push($stk, array('what' => SERVICES_JSON_IN_OBJ, 'where' => $c, 'delim' => false)); c 725 chrome/test/data/dromaeo/JSON.php } elseif (($chrs{$c} == '}') && ($top['what'] == SERVICES_JSON_IN_OBJ)) { c 733 chrome/test/data/dromaeo/JSON.php array_push($stk, array('what' => SERVICES_JSON_IN_CMT, 'where' => $c, 'delim' => false)); c 734 chrome/test/data/dromaeo/JSON.php $c++; c 740 chrome/test/data/dromaeo/JSON.php $c++; c 742 chrome/test/data/dromaeo/JSON.php for ($i = $top['where']; $i <= $c; ++$i) c 16 chrome/test/remoting/key_code_conv.cc char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) { c 21 chrome/test/remoting/key_code_conv.cc if (key_code_map[i].lower_char == c) { c 28 chrome/test/remoting/key_code_conv.cc if (key_code_map[i].upper_char == c) { c 21 chrome/test/remoting/key_code_conv.h char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift); c 403 chrome/test/remoting/remote_desktop_browsertest.cc void RemoteDesktopBrowserTest::SimulateCharInput(char c) { c 407 chrome/test/remoting/remote_desktop_browsertest.cc GetKeyValuesFromChar(c, &code, &keyboard_code, &shift); c 108 chrome/test/remoting/remote_desktop_browsertest.h void SimulateCharInput(char c); c 60 chromeos/ime/xkeyboard_unittest.cc for (int c = 'a'; c <= 'z'; ++c) { c 61 chromeos/ime/xkeyboard_unittest.cc EXPECT_TRUE(XKeyboard::CheckLayoutNameForTesting(std::string(3, c))); c 65 chromeos/ime/xkeyboard_unittest.cc for (int c = '0'; c <= '9'; ++c) { c 66 chromeos/ime/xkeyboard_unittest.cc EXPECT_TRUE(XKeyboard::CheckLayoutNameForTesting(std::string(3, c))); c 45 cloud_print/gcp20/prototype/conio_posix.cc int c = getchar(); c 47 cloud_print/gcp20/prototype/conio_posix.cc return c; c 726 cloud_print/gcp20/prototype/printer.cc int c = _getche(); c 727 cloud_print/gcp20/prototype/printer.cc if (c == 'y' || c == 'Y') { c 81 components/os_crypt/ie7_password_win.cc DecryptedCredentials c; c 82 components/os_crypt/ie7_password_win.cc c.username = reinterpret_cast<const wchar_t*>(offset_to_data + c 84 components/os_crypt/ie7_password_win.cc c.password = reinterpret_cast<const wchar_t*>(offset_to_data + c 86 components/os_crypt/ie7_password_win.cc credentials->push_back(c); c 62 components/plugins/renderer/mobile_youtube_plugin.cc char c = str[i]; c 63 components/plugins/renderer/mobile_youtube_plugin.cc if (isalpha(c) || isdigit(c) || c == '_' || c == '-') c 67 components/plugins/renderer/mobile_youtube_plugin.cc return c == '&' && i > len; c 563 components/policy/core/common/policy_loader_win_unittest.cc for (base::string16::const_iterator c(chars.begin()); c != chars.end(); ++c) { c 564 components/policy/core/common/policy_loader_win_unittest.cc buffer->push_back(*c & 0xff); c 565 components/policy/core/common/policy_loader_win_unittest.cc buffer->push_back((*c >> 8) & 0xff); c 86 components/policy/core/common/policy_map_unittest.cc PolicyMap c; c 87 components/policy/core/common/policy_map_unittest.cc SetPolicy(&c, kTestPolicyName1, base::Value::CreateStringValue("aaa")); c 88 components/policy/core/common/policy_map_unittest.cc SetPolicy(&c, kTestPolicyName2, base::Value::CreateBooleanValue(true)); c 99 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(a.Equals(c)); c 103 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(b.Equals(c)); c 106 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(c.Equals(a)); c 107 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(c.Equals(b)); c 108 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(c.Equals(d)); c 109 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(c.Equals(e)); c 112 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(d.Equals(c)); c 116 components/policy/core/common/policy_map_unittest.cc EXPECT_FALSE(e.Equals(c)); c 200 components/policy/core/common/policy_map_unittest.cc PolicyMap c; c 202 components/policy/core/common/policy_map_unittest.cc c.Set(kTestPolicyName1, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_MACHINE, c 205 components/policy/core/common/policy_map_unittest.cc c.Set(kTestPolicyName2, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_MACHINE, c 207 components/policy/core/common/policy_map_unittest.cc c.Set(kTestPolicyName3, c 211 components/policy/core/common/policy_map_unittest.cc c.Set(kTestPolicyName4, POLICY_LEVEL_RECOMMENDED, c 214 components/policy/core/common/policy_map_unittest.cc c.Set(kTestPolicyName5, c 220 components/policy/core/common/policy_map_unittest.cc c.Set(kTestPolicyName6, POLICY_LEVEL_RECOMMENDED, POLICY_SCOPE_USER, c 223 components/policy/core/common/policy_map_unittest.cc EXPECT_TRUE(a.Equals(c)); c 929 components/policy/core/common/schema_unittest.cc for (char c = 'a'; c <= 'i'; ++c) { c 930 components/policy/core/common/schema_unittest.cc Schema sub = schema.GetKnownProperty(std::string(1, c)); c 931 components/policy/core/common/schema_unittest.cc ASSERT_TRUE(sub.valid()) << c; c 932 components/policy/core/common/schema_unittest.cc ASSERT_EQ(base::Value::TYPE_BOOLEAN, sub.type()) << c; c 24 components/rappor/byte_vector_utils.cc std::string Concat(const ByteVector& value, char c, const std::string& data) { c 25 components/rappor/byte_vector_utils.cc return std::string(value.begin(), value.end()) + c + data; c 254 components/url_matcher/substring_set_matcher.cc uint32 SubstringSetMatcher::AhoCorasickNode::GetEdge(char c) const { c 255 components/url_matcher/substring_set_matcher.cc Edges::const_iterator i = edges_.find(c); c 259 components/url_matcher/substring_set_matcher.cc void SubstringSetMatcher::AhoCorasickNode::SetEdge(char c, uint32 node) { c 260 components/url_matcher/substring_set_matcher.cc edges_[c] = node; c 95 components/url_matcher/substring_set_matcher.h uint32 GetEdge(char c) const; c 96 components/url_matcher/substring_set_matcher.h void SetEdge(char c, uint32 node); c 31 content/browser/android/date_time_chooser_android.cc UChar c = sanitized_iterator.get(); c 32 content/browser/android/date_time_chooser_android.cc if (u_isprint(c)) c 33 content/browser/android/date_time_chooser_android.cc sanitized.append(c); c 25 content/browser/gamepad/gamepad_provider.cc const base::Closure& c, c 27 content/browser/gamepad/gamepad_provider.cc : closure(c), c 97 content/browser/gamepad/gamepad_provider.h ClosureAndThread(const base::Closure& c, c 255 content/browser/indexed_db/indexed_db_leveldb_coding.cc unsigned char c = n; c 256 content/browser/indexed_db/indexed_db_leveldb_coding.cc into->push_back(c); c 269 content/browser/indexed_db/indexed_db_leveldb_coding.cc unsigned char c = n & 0x7f; c 272 content/browser/indexed_db/indexed_db_leveldb_coding.cc c |= 0x80; c 273 content/browser/indexed_db/indexed_db_leveldb_coding.cc into->push_back(c); c 404 content/browser/indexed_db/indexed_db_leveldb_coding.cc unsigned char c = *it++; c 405 content/browser/indexed_db/indexed_db_leveldb_coding.cc ret |= static_cast<int64>(c) << shift; c 424 content/browser/indexed_db/indexed_db_leveldb_coding.cc unsigned char c = *it; c 425 content/browser/indexed_db/indexed_db_leveldb_coding.cc ret |= static_cast<int64>(c & 0x7f) << shift; c 54 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc unsigned char c; c 56 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc c = 0; c 57 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc expected[0] = c; c 58 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc EXPECT_EQ(expected, WrappedEncodeByte(c)); c 60 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc c = 1; c 61 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc expected[0] = c; c 62 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc EXPECT_EQ(expected, WrappedEncodeByte(c)); c 64 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc c = 255; c 65 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc expected[0] = c; c 66 content/browser/indexed_db/indexed_db_leveldb_coding_unittest.cc EXPECT_EQ(expected, WrappedEncodeByte(c)); c 178 content/browser/media/capture/web_contents_video_capture_device_unittest.cc SkColor c = ConvertRgbToYuv(controller_->GetSolidColor()); c 180 content/browser/media/capture/web_contents_video_capture_device_unittest.cc target.get(), SkColorGetR(c), SkColorGetG(c), SkColorGetB(c)); c 201 content/browser/media/capture/web_contents_video_capture_device_unittest.cc SkColor c = ConvertRgbToYuv(controller_->GetSolidColor()); c 203 content/browser/media/capture/web_contents_video_capture_device_unittest.cc target.get(), SkColorGetR(c), SkColorGetG(c), SkColorGetB(c)); c 346 content/browser/net/sqlite_persistent_cookie_store_unittest.cc for (char c = 'a'; c < 'z'; ++c) { c 348 content/browser/net/sqlite_persistent_cookie_store_unittest.cc base::Time t = base::Time::Now() + base::TimeDelta::FromMicroseconds(c); c 349 content/browser/net/sqlite_persistent_cookie_store_unittest.cc std::string name(1, c); c 350 content/browser/net/sqlite_persistent_cookie_store_unittest.cc std::string value(1000, c); c 100 content/browser/renderer_host/backing_store_gtk.cc const base::Closure& c) c 105 content/browser/renderer_host/backing_store_gtk.cc closure(c) { c 57 content/browser/renderer_host/input/input_router_impl_unittest.cc return param.c; c 309 content/browser/renderer_host/java/java_bound_object.cc result.c = is_double ? 0 : c 445 content/browser/renderer_host/java/java_bound_object.cc result.c = 0; c 519 content/browser/renderer_host/java/java_bound_object.cc &value.c); c 143 content/browser/renderer_host/media/webrtc_identity_service_host_unittest.cc EXPECT_EQ(key, identity_in_message.c); c 103 content/browser/renderer_host/p2p/socket_host_test_utils.h return params.c == packet_content; c 259 content/browser/renderer_host/render_sandbox_host_linux.cc WebUChar32 c; c 260 content/browser/renderer_host/render_sandbox_host_linux.cc if (!pickle.ReadInt(&iter, &c)) c 268 content/browser/renderer_host/render_sandbox_host_linux.cc WebFontInfo::familyForChar(c, preferred_locale.c_str(), &family); c 507 content/browser/renderer_host/render_widget_host_view_aura_unittest.cc EXPECT_EQ(4, params.c) << "Should be the same to the caret pos"; c 474 content/child/site_isolation_policy.cc const char c = data[i]; c 475 content/child/site_isolation_policy.cc if (c == ' ' || c == '\t' || c == '\r' || c == '\n') c 480 content/child/site_isolation_policy.cc if (c == '{') c 486 content/child/site_isolation_policy.cc if (c == '\"' || c == '\'') c 492 content/child/site_isolation_policy.cc if (c == ':') c 18 content/common/cookie_data.cc CookieData::CookieData(const net::CanonicalCookie& c) c 19 content/common/cookie_data.cc : name(c.Name()), c 20 content/common/cookie_data.cc value(c.Value()), c 21 content/common/cookie_data.cc domain(c.Domain()), c 22 content/common/cookie_data.cc path(c.Path()), c 23 content/common/cookie_data.cc expires(c.ExpiryDate().ToDoubleT() * 1000), c 24 content/common/cookie_data.cc http_only(c.IsHttpOnly()), c 25 content/common/cookie_data.cc secure(c.IsSecure()), c 26 content/common/cookie_data.cc session(!c.IsPersistent()) { c 20 content/common/cookie_data.h explicit CookieData(const net::CanonicalCookie& c); c 19 content/common/gamepad_seqlock_unittest.cc unsigned a, b, c; c 48 content/common/gamepad_seqlock_unittest.cc EXPECT_EQ(copy.c, copy.b + copy.a); c 84 content/common/gamepad_seqlock_unittest.cc data.c = data.b + data.a; c 148 content/common/gpu/client/gl_helper_unittest.cc int Channel(SkBitmap* pixels, int x, int y, int c) { c 152 content/common/gpu/client/gl_helper_unittest.cc return (*data) >> (c * 8) & 0xff; c 156 content/common/gpu/client/gl_helper_unittest.cc void SetChannel(SkBitmap* pixels, int x, int y, int c, int v) { c 163 content/common/gpu/client/gl_helper_unittest.cc *data = (*data & ~(0xffu << (c * 8))) | (v << (c * 8)); c 168 content/common/gpu/client/gl_helper_unittest.cc void PrintChannel(SkBitmap* pixels, int c) { c 172 content/common/gpu/client/gl_helper_unittest.cc formatted.append(base::StringPrintf("%3d, ", Channel(pixels, x, y, c))); c 391 content/common/gpu/client/gl_helper_unittest.cc for (int c = 0; c < 4; c++) { c 392 content/common/gpu/client/gl_helper_unittest.cc int a = Channel(truth, x, y, c); c 393 content/common/gpu/client/gl_helper_unittest.cc int b = Channel(other, x, y, c); c 394 content/common/gpu/client/gl_helper_unittest.cc EXPECT_NEAR(a, b, maxdiff) << " x=" << x << " y=" << y << " c=" << c c 398 content/common/gpu/client/gl_helper_unittest.cc PrintChannel(truth, c); c 400 content/common/gpu/client/gl_helper_unittest.cc PrintChannel(other, c); c 403 content/common/gpu/client/gl_helper_unittest.cc PrintChannel(source, c); c 415 content/common/gpu/client/gl_helper_unittest.cc float ChannelAsFloat(SkBitmap* pixels, int x, int y, int c) { c 416 content/common/gpu/client/gl_helper_unittest.cc return Channel(pixels, x, y, c) / 255.0; c 420 content/common/gpu/client/gl_helper_unittest.cc float Bilinear(SkBitmap* pixels, float x, float y, int c) { c 427 content/common/gpu/client/gl_helper_unittest.cc return (ChannelAsFloat(pixels, base_x, base_y, c) * (1 - x) * (1 - y) + c 428 content/common/gpu/client/gl_helper_unittest.cc ChannelAsFloat(pixels, base_x + 1, base_y, c) * x * (1 - y) + c 429 content/common/gpu/client/gl_helper_unittest.cc ChannelAsFloat(pixels, base_x, base_y + 1, c) * (1 - x) * y + c 430 content/common/gpu/client/gl_helper_unittest.cc ChannelAsFloat(pixels, base_x + 1, base_y + 1, c) * x * y); c 465 content/common/gpu/client/gl_helper_unittest.cc float c = ChannelAsFloat(input, src_x, src_y, channel); c 466 content/common/gpu/client/gl_helper_unittest.cc value += c * coeff; c 325 content/common/gpu/media/android_video_encode_accelerator.cc UMA_HISTOGRAM_TIMES("Media.AVEA.InputQueueTime", base::Time::Now() - input.c); c 1225 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.left = 0; c 1226 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.top = 0; c 1227 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.width = input_visible_size_.width(); c 1228 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.height = input_visible_size_.height(); c 1272 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.left = 0; c 1273 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.top = 0; c 1274 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.width = converted_visible_size_.width(); c 1275 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.height = converted_visible_size_.height(); c 1321 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.left = 0; c 1322 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.top = 0; c 1323 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.width = input_visible_size_.width(); c 1324 content/common/gpu/media/exynos_video_encode_accelerator.cc crop.c.height = input_visible_size_.height(); c 1168 content/common/gpu/media/video_decode_accelerator_unittest.cc return os << t.a << ", " << t.b << ", " << t.c << ", " << t.d << ", " << t.e c 1195 content/common/gpu/media/video_decode_accelerator_unittest.cc const int num_play_throughs = GetParam().c; c 681 content/common/gpu/media/video_encode_accelerator_unittest.cc const bool force_bitrate = GetParam().c; c 300 content/public/android/java/src/org/chromium/content/browser/input/HandleView.java protected void onDraw(Canvas c) { c 303 content/public/android/java/src/org/chromium/content/browser/input/HandleView.java mDrawable.draw(c); c 29 content/public/android/javatests/src/org/chromium/content/browser/PopupZoomerTest.java CustomCanvasPopupZoomer(Context context, Canvas c) { c 31 content/public/android/javatests/src/org/chromium/content/browser/PopupZoomerTest.java mCanvas = c; c 40 content/public/android/javatests/src/org/chromium/content/browser/PopupZoomerTest.java public void onDraw(Canvas c) { c 42 content/public/android/javatests/src/org/chromium/content/browser/PopupZoomerTest.java super.onDraw(c); c 35 content/public/browser/resource_throttle.h void set_controller_for_testing(ResourceController* c) { c 36 content/public/browser/resource_throttle.h controller_ = c; c 45 content/public/browser/resource_throttle.h void set_controller(ResourceController* c) { controller_ = c; } c 235 content/renderer/render_view_browsertest.cc long c = GetCharacterFromKeyCode(static_cast<ui::KeyboardCode>(key_code), c 237 content/renderer/render_view_browsertest.cc output->assign(1, static_cast<base::char16>(c)); c 268 content/renderer/render_view_browsertest.cc long c = GetCharacterFromKeyCode(static_cast<ui::KeyboardCode>(key_code), c 270 content/renderer/render_view_browsertest.cc output->assign(1, static_cast<base::char16>(c)); c 531 content/renderer/render_view_impl.cc PendingFileChooser(const FileChooserParams& p, WebFileChooserCompletion* c) c 533 content/renderer/render_view_impl.cc completion(c) { c 51 content/renderer/renderer_webcookiejar_impl.cc const CookieData& c = cookies[i]; c 52 content/renderer/renderer_webcookiejar_impl.cc result[i] = WebCookie(WebString::fromUTF8(c.name), c 53 content/renderer/renderer_webcookiejar_impl.cc WebString::fromUTF8(c.value), c 54 content/renderer/renderer_webcookiejar_impl.cc WebString::fromUTF8(c.domain), c 55 content/renderer/renderer_webcookiejar_impl.cc WebString::fromUTF8(c.path), c 56 content/renderer/renderer_webcookiejar_impl.cc c.expires, c 57 content/renderer/renderer_webcookiejar_impl.cc c.http_only, c 58 content/renderer/renderer_webcookiejar_impl.cc c.secure, c 59 content/renderer/renderer_webcookiejar_impl.cc c.session); c 190 content/renderer/skia_benchmarking_extension.cc uint32 c = packed_pixels[i >> 2]; c 191 content/renderer/skia_benchmarking_extension.cc buffer_pixels[i] = SkGetPackedR32(c); c 192 content/renderer/skia_benchmarking_extension.cc buffer_pixels[i + 1] = SkGetPackedG32(c); c 193 content/renderer/skia_benchmarking_extension.cc buffer_pixels[i + 2] = SkGetPackedB32(c); c 194 content/renderer/skia_benchmarking_extension.cc buffer_pixels[i + 3] = SkGetPackedA32(c); c 307 content/shell/renderer/test_runner/WebTestProxy.cpp base::char16 operator()(base::char16 c) { return tolower(c); } c 669 content/shell/tools/plugin/main.cpp char c = ' '; c 670 content/shell/tools/plugin/main.cpp XLookupString(event, &c, sizeof(c), 0, 0); c 671 content/shell/tools/plugin/main.cpp return c; c 452 crypto/curve25519-donna.c limb a[19] = {0}, b[19] = {1}, c[19] = {1}, d[19] = {0}; c 453 crypto/curve25519-donna.c limb *nqpqx = a, *nqpqz = b, *nqx = c, *nqz = d, *t; c 758 crypto/openpgp_symmetric_encryption.cc uint8 c = plaintext_copy[i] ^ fre[out_used]; c 759 crypto/openpgp_symmetric_encryption.cc fre[out_used++] = c; c 760 crypto/openpgp_symmetric_encryption.cc packet.push_back(c); c 275 crypto/third_party/nss/sha512.cc PRUint32 a, b, c, d, e, f, g, h; c 279 crypto/third_party/nss/sha512.cc c = H[2]; c 286 crypto/third_party/nss/sha512.cc #define ROUND(n,a,b,c,d,e,f,g,h) \ c 289 crypto/third_party/nss/sha512.cc h += S0(a) + Maj(a,b,c); c 295 crypto/third_party/nss/sha512.cc ROUND(t+0,a,b,c,d,e,f,g,h) c 296 crypto/third_party/nss/sha512.cc ROUND(t+1,h,a,b,c,d,e,f,g) c 297 crypto/third_party/nss/sha512.cc ROUND(t+2,g,h,a,b,c,d,e,f) c 298 crypto/third_party/nss/sha512.cc ROUND(t+3,f,g,h,a,b,c,d,e) c 299 crypto/third_party/nss/sha512.cc ROUND(t+4,e,f,g,h,a,b,c,d) c 300 crypto/third_party/nss/sha512.cc ROUND(t+5,d,e,f,g,h,a,b,c) c 301 crypto/third_party/nss/sha512.cc ROUND(t+6,c,d,e,f,g,h,a,b) c 302 crypto/third_party/nss/sha512.cc ROUND(t+7,b,c,d,e,f,g,h,a) c 306 crypto/third_party/nss/sha512.cc ROUND( 0,a,b,c,d,e,f,g,h) c 307 crypto/third_party/nss/sha512.cc ROUND( 1,h,a,b,c,d,e,f,g) c 308 crypto/third_party/nss/sha512.cc ROUND( 2,g,h,a,b,c,d,e,f) c 309 crypto/third_party/nss/sha512.cc ROUND( 3,f,g,h,a,b,c,d,e) c 310 crypto/third_party/nss/sha512.cc ROUND( 4,e,f,g,h,a,b,c,d) c 311 crypto/third_party/nss/sha512.cc ROUND( 5,d,e,f,g,h,a,b,c) c 312 crypto/third_party/nss/sha512.cc ROUND( 6,c,d,e,f,g,h,a,b) c 313 crypto/third_party/nss/sha512.cc ROUND( 7,b,c,d,e,f,g,h,a) c 315 crypto/third_party/nss/sha512.cc ROUND( 8,a,b,c,d,e,f,g,h) c 316 crypto/third_party/nss/sha512.cc ROUND( 9,h,a,b,c,d,e,f,g) c 317 crypto/third_party/nss/sha512.cc ROUND(10,g,h,a,b,c,d,e,f) c 318 crypto/third_party/nss/sha512.cc ROUND(11,f,g,h,a,b,c,d,e) c 319 crypto/third_party/nss/sha512.cc ROUND(12,e,f,g,h,a,b,c,d) c 320 crypto/third_party/nss/sha512.cc ROUND(13,d,e,f,g,h,a,b,c) c 321 crypto/third_party/nss/sha512.cc ROUND(14,c,d,e,f,g,h,a,b) c 322 crypto/third_party/nss/sha512.cc ROUND(15,b,c,d,e,f,g,h,a) c 324 crypto/third_party/nss/sha512.cc ROUND(16,a,b,c,d,e,f,g,h) c 325 crypto/third_party/nss/sha512.cc ROUND(17,h,a,b,c,d,e,f,g) c 326 crypto/third_party/nss/sha512.cc ROUND(18,g,h,a,b,c,d,e,f) c 327 crypto/third_party/nss/sha512.cc ROUND(19,f,g,h,a,b,c,d,e) c 328 crypto/third_party/nss/sha512.cc ROUND(20,e,f,g,h,a,b,c,d) c 329 crypto/third_party/nss/sha512.cc ROUND(21,d,e,f,g,h,a,b,c) c 330 crypto/third_party/nss/sha512.cc ROUND(22,c,d,e,f,g,h,a,b) c 331 crypto/third_party/nss/sha512.cc ROUND(23,b,c,d,e,f,g,h,a) c 333 crypto/third_party/nss/sha512.cc ROUND(24,a,b,c,d,e,f,g,h) c 334 crypto/third_party/nss/sha512.cc ROUND(25,h,a,b,c,d,e,f,g) c 335 crypto/third_party/nss/sha512.cc ROUND(26,g,h,a,b,c,d,e,f) c 336 crypto/third_party/nss/sha512.cc ROUND(27,f,g,h,a,b,c,d,e) c 337 crypto/third_party/nss/sha512.cc ROUND(28,e,f,g,h,a,b,c,d) c 338 crypto/third_party/nss/sha512.cc ROUND(29,d,e,f,g,h,a,b,c) c 339 crypto/third_party/nss/sha512.cc ROUND(30,c,d,e,f,g,h,a,b) c 340 crypto/third_party/nss/sha512.cc ROUND(31,b,c,d,e,f,g,h,a) c 342 crypto/third_party/nss/sha512.cc ROUND(32,a,b,c,d,e,f,g,h) c 343 crypto/third_party/nss/sha512.cc ROUND(33,h,a,b,c,d,e,f,g) c 344 crypto/third_party/nss/sha512.cc ROUND(34,g,h,a,b,c,d,e,f) c 345 crypto/third_party/nss/sha512.cc ROUND(35,f,g,h,a,b,c,d,e) c 346 crypto/third_party/nss/sha512.cc ROUND(36,e,f,g,h,a,b,c,d) c 347 crypto/third_party/nss/sha512.cc ROUND(37,d,e,f,g,h,a,b,c) c 348 crypto/third_party/nss/sha512.cc ROUND(38,c,d,e,f,g,h,a,b) c 349 crypto/third_party/nss/sha512.cc ROUND(39,b,c,d,e,f,g,h,a) c 351 crypto/third_party/nss/sha512.cc ROUND(40,a,b,c,d,e,f,g,h) c 352 crypto/third_party/nss/sha512.cc ROUND(41,h,a,b,c,d,e,f,g) c 353 crypto/third_party/nss/sha512.cc ROUND(42,g,h,a,b,c,d,e,f) c 354 crypto/third_party/nss/sha512.cc ROUND(43,f,g,h,a,b,c,d,e) c 355 crypto/third_party/nss/sha512.cc ROUND(44,e,f,g,h,a,b,c,d) c 356 crypto/third_party/nss/sha512.cc ROUND(45,d,e,f,g,h,a,b,c) c 357 crypto/third_party/nss/sha512.cc ROUND(46,c,d,e,f,g,h,a,b) c 358 crypto/third_party/nss/sha512.cc ROUND(47,b,c,d,e,f,g,h,a) c 360 crypto/third_party/nss/sha512.cc ROUND(48,a,b,c,d,e,f,g,h) c 361 crypto/third_party/nss/sha512.cc ROUND(49,h,a,b,c,d,e,f,g) c 362 crypto/third_party/nss/sha512.cc ROUND(50,g,h,a,b,c,d,e,f) c 363 crypto/third_party/nss/sha512.cc ROUND(51,f,g,h,a,b,c,d,e) c 364 crypto/third_party/nss/sha512.cc ROUND(52,e,f,g,h,a,b,c,d) c 365 crypto/third_party/nss/sha512.cc ROUND(53,d,e,f,g,h,a,b,c) c 366 crypto/third_party/nss/sha512.cc ROUND(54,c,d,e,f,g,h,a,b) c 367 crypto/third_party/nss/sha512.cc ROUND(55,b,c,d,e,f,g,h,a) c 369 crypto/third_party/nss/sha512.cc ROUND(56,a,b,c,d,e,f,g,h) c 370 crypto/third_party/nss/sha512.cc ROUND(57,h,a,b,c,d,e,f,g) c 371 crypto/third_party/nss/sha512.cc ROUND(58,g,h,a,b,c,d,e,f) c 372 crypto/third_party/nss/sha512.cc ROUND(59,f,g,h,a,b,c,d,e) c 373 crypto/third_party/nss/sha512.cc ROUND(60,e,f,g,h,a,b,c,d) c 374 crypto/third_party/nss/sha512.cc ROUND(61,d,e,f,g,h,a,b,c) c 375 crypto/third_party/nss/sha512.cc ROUND(62,c,d,e,f,g,h,a,b) c 376 crypto/third_party/nss/sha512.cc ROUND(63,b,c,d,e,f,g,h,a) c 381 crypto/third_party/nss/sha512.cc H[2] += c; c 725 crypto/third_party/nss/sha512.cc #define ROUND(n,a,b,c,d,e,f,g,h) \ c 728 crypto/third_party/nss/sha512.cc h += S0(a) + Maj(a,b,c); \ c 771 crypto/third_party/nss/sha512.cc #define ROUND(n,a,b,c,d,e,f,g,h) \ c 783 crypto/third_party/nss/sha512.cc lo += (tm = Majx(a,b,c,lo)); cy = (lo < tm); \ c 785 crypto/third_party/nss/sha512.cc h.hi += cy + S0hi(a) + Majx(a,b,c,hi); \ c 915 crypto/third_party/nss/sha512.cc PRUint64 a, b, c, d, e, f, g, h; c 919 crypto/third_party/nss/sha512.cc c = H[2]; c 930 crypto/third_party/nss/sha512.cc ROUND(t+0,a,b,c,d,e,f,g,h) c 931 crypto/third_party/nss/sha512.cc ROUND(t+1,h,a,b,c,d,e,f,g) c 932 crypto/third_party/nss/sha512.cc ROUND(t+2,g,h,a,b,c,d,e,f) c 933 crypto/third_party/nss/sha512.cc ROUND(t+3,f,g,h,a,b,c,d,e) c 934 crypto/third_party/nss/sha512.cc ROUND(t+4,e,f,g,h,a,b,c,d) c 935 crypto/third_party/nss/sha512.cc ROUND(t+5,d,e,f,g,h,a,b,c) c 936 crypto/third_party/nss/sha512.cc ROUND(t+6,c,d,e,f,g,h,a,b) c 937 crypto/third_party/nss/sha512.cc ROUND(t+7,b,c,d,e,f,g,h,a) c 941 crypto/third_party/nss/sha512.cc ROUND( 0,a,b,c,d,e,f,g,h) c 942 crypto/third_party/nss/sha512.cc ROUND( 1,h,a,b,c,d,e,f,g) c 943 crypto/third_party/nss/sha512.cc ROUND( 2,g,h,a,b,c,d,e,f) c 944 crypto/third_party/nss/sha512.cc ROUND( 3,f,g,h,a,b,c,d,e) c 945 crypto/third_party/nss/sha512.cc ROUND( 4,e,f,g,h,a,b,c,d) c 946 crypto/third_party/nss/sha512.cc ROUND( 5,d,e,f,g,h,a,b,c) c 947 crypto/third_party/nss/sha512.cc ROUND( 6,c,d,e,f,g,h,a,b) c 948 crypto/third_party/nss/sha512.cc ROUND( 7,b,c,d,e,f,g,h,a) c 950 crypto/third_party/nss/sha512.cc ROUND( 8,a,b,c,d,e,f,g,h) c 951 crypto/third_party/nss/sha512.cc ROUND( 9,h,a,b,c,d,e,f,g) c 952 crypto/third_party/nss/sha512.cc ROUND(10,g,h,a,b,c,d,e,f) c 953 crypto/third_party/nss/sha512.cc ROUND(11,f,g,h,a,b,c,d,e) c 954 crypto/third_party/nss/sha512.cc ROUND(12,e,f,g,h,a,b,c,d) c 955 crypto/third_party/nss/sha512.cc ROUND(13,d,e,f,g,h,a,b,c) c 956 crypto/third_party/nss/sha512.cc ROUND(14,c,d,e,f,g,h,a,b) c 957 crypto/third_party/nss/sha512.cc ROUND(15,b,c,d,e,f,g,h,a) c 959 crypto/third_party/nss/sha512.cc ROUND(16,a,b,c,d,e,f,g,h) c 960 crypto/third_party/nss/sha512.cc ROUND(17,h,a,b,c,d,e,f,g) c 961 crypto/third_party/nss/sha512.cc ROUND(18,g,h,a,b,c,d,e,f) c 962 crypto/third_party/nss/sha512.cc ROUND(19,f,g,h,a,b,c,d,e) c 963 crypto/third_party/nss/sha512.cc ROUND(20,e,f,g,h,a,b,c,d) c 964 crypto/third_party/nss/sha512.cc ROUND(21,d,e,f,g,h,a,b,c) c 965 crypto/third_party/nss/sha512.cc ROUND(22,c,d,e,f,g,h,a,b) c 966 crypto/third_party/nss/sha512.cc ROUND(23,b,c,d,e,f,g,h,a) c 968 crypto/third_party/nss/sha512.cc ROUND(24,a,b,c,d,e,f,g,h) c 969 crypto/third_party/nss/sha512.cc ROUND(25,h,a,b,c,d,e,f,g) c 970 crypto/third_party/nss/sha512.cc ROUND(26,g,h,a,b,c,d,e,f) c 971 crypto/third_party/nss/sha512.cc ROUND(27,f,g,h,a,b,c,d,e) c 972 crypto/third_party/nss/sha512.cc ROUND(28,e,f,g,h,a,b,c,d) c 973 crypto/third_party/nss/sha512.cc ROUND(29,d,e,f,g,h,a,b,c) c 974 crypto/third_party/nss/sha512.cc ROUND(30,c,d,e,f,g,h,a,b) c 975 crypto/third_party/nss/sha512.cc ROUND(31,b,c,d,e,f,g,h,a) c 977 crypto/third_party/nss/sha512.cc ROUND(32,a,b,c,d,e,f,g,h) c 978 crypto/third_party/nss/sha512.cc ROUND(33,h,a,b,c,d,e,f,g) c 979 crypto/third_party/nss/sha512.cc ROUND(34,g,h,a,b,c,d,e,f) c 980 crypto/third_party/nss/sha512.cc ROUND(35,f,g,h,a,b,c,d,e) c 981 crypto/third_party/nss/sha512.cc ROUND(36,e,f,g,h,a,b,c,d) c 982 crypto/third_party/nss/sha512.cc ROUND(37,d,e,f,g,h,a,b,c) c 983 crypto/third_party/nss/sha512.cc ROUND(38,c,d,e,f,g,h,a,b) c 984 crypto/third_party/nss/sha512.cc ROUND(39,b,c,d,e,f,g,h,a) c 986 crypto/third_party/nss/sha512.cc ROUND(40,a,b,c,d,e,f,g,h) c 987 crypto/third_party/nss/sha512.cc ROUND(41,h,a,b,c,d,e,f,g) c 988 crypto/third_party/nss/sha512.cc ROUND(42,g,h,a,b,c,d,e,f) c 989 crypto/third_party/nss/sha512.cc ROUND(43,f,g,h,a,b,c,d,e) c 990 crypto/third_party/nss/sha512.cc ROUND(44,e,f,g,h,a,b,c,d) c 991 crypto/third_party/nss/sha512.cc ROUND(45,d,e,f,g,h,a,b,c) c 992 crypto/third_party/nss/sha512.cc ROUND(46,c,d,e,f,g,h,a,b) c 993 crypto/third_party/nss/sha512.cc ROUND(47,b,c,d,e,f,g,h,a) c 995 crypto/third_party/nss/sha512.cc ROUND(48,a,b,c,d,e,f,g,h) c 996 crypto/third_party/nss/sha512.cc ROUND(49,h,a,b,c,d,e,f,g) c 997 crypto/third_party/nss/sha512.cc ROUND(50,g,h,a,b,c,d,e,f) c 998 crypto/third_party/nss/sha512.cc ROUND(51,f,g,h,a,b,c,d,e) c 999 crypto/third_party/nss/sha512.cc ROUND(52,e,f,g,h,a,b,c,d) c 1000 crypto/third_party/nss/sha512.cc ROUND(53,d,e,f,g,h,a,b,c) c 1001 crypto/third_party/nss/sha512.cc ROUND(54,c,d,e,f,g,h,a,b) c 1002 crypto/third_party/nss/sha512.cc ROUND(55,b,c,d,e,f,g,h,a) c 1004 crypto/third_party/nss/sha512.cc ROUND(56,a,b,c,d,e,f,g,h) c 1005 crypto/third_party/nss/sha512.cc ROUND(57,h,a,b,c,d,e,f,g) c 1006 crypto/third_party/nss/sha512.cc ROUND(58,g,h,a,b,c,d,e,f) c 1007 crypto/third_party/nss/sha512.cc ROUND(59,f,g,h,a,b,c,d,e) c 1008 crypto/third_party/nss/sha512.cc ROUND(60,e,f,g,h,a,b,c,d) c 1009 crypto/third_party/nss/sha512.cc ROUND(61,d,e,f,g,h,a,b,c) c 1010 crypto/third_party/nss/sha512.cc ROUND(62,c,d,e,f,g,h,a,b) c 1011 crypto/third_party/nss/sha512.cc ROUND(63,b,c,d,e,f,g,h,a) c 1013 crypto/third_party/nss/sha512.cc ROUND(64,a,b,c,d,e,f,g,h) c 1014 crypto/third_party/nss/sha512.cc ROUND(65,h,a,b,c,d,e,f,g) c 1015 crypto/third_party/nss/sha512.cc ROUND(66,g,h,a,b,c,d,e,f) c 1016 crypto/third_party/nss/sha512.cc ROUND(67,f,g,h,a,b,c,d,e) c 1017 crypto/third_party/nss/sha512.cc ROUND(68,e,f,g,h,a,b,c,d) c 1018 crypto/third_party/nss/sha512.cc ROUND(69,d,e,f,g,h,a,b,c) c 1019 crypto/third_party/nss/sha512.cc ROUND(70,c,d,e,f,g,h,a,b) c 1020 crypto/third_party/nss/sha512.cc ROUND(71,b,c,d,e,f,g,h,a) c 1022 crypto/third_party/nss/sha512.cc ROUND(72,a,b,c,d,e,f,g,h) c 1023 crypto/third_party/nss/sha512.cc ROUND(73,h,a,b,c,d,e,f,g) c 1024 crypto/third_party/nss/sha512.cc ROUND(74,g,h,a,b,c,d,e,f) c 1025 crypto/third_party/nss/sha512.cc ROUND(75,f,g,h,a,b,c,d,e) c 1026 crypto/third_party/nss/sha512.cc ROUND(76,e,f,g,h,a,b,c,d) c 1027 crypto/third_party/nss/sha512.cc ROUND(77,d,e,f,g,h,a,b,c) c 1028 crypto/third_party/nss/sha512.cc ROUND(78,c,d,e,f,g,h,a,b) c 1029 crypto/third_party/nss/sha512.cc ROUND(79,b,c,d,e,f,g,h,a) c 1034 crypto/third_party/nss/sha512.cc ADDTO(c,H[2]); c 24 dbus/string_util.cc const char c = value[i]; c 25 dbus/string_util.cc if (c == '/') { c 33 dbus/string_util.cc ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z') || c 34 dbus/string_util.cc ('0' <= c && c <= '9') || c == '_'; c 61 extensions/browser/file_highlighter.cc char c = str[*index]; c 64 extensions/browser/file_highlighter.cc if (c == '"') c 66 extensions/browser/file_highlighter.cc else if (c == '[') c 68 extensions/browser/file_highlighter.cc else if (c == '{') c 70 extensions/browser/file_highlighter.cc else if (!stack.empty() && c == stack.top()) c 73 extensions/browser/file_highlighter.cc c = str[*index]; c 148 extensions/browser/file_highlighter.cc char c = '\0'; c 150 extensions/browser/file_highlighter.cc c = contents_[start_]; c 151 extensions/browser/file_highlighter.cc if (c == '"') { c 165 extensions/browser/file_highlighter.cc } else if (enforce_at_top_level && (c == '{' || c == '[')) { c 178 extensions/browser/file_highlighter.cc char c = '\0'; c 180 extensions/browser/file_highlighter.cc c = contents_[local_start]; c 183 extensions/browser/file_highlighter.cc if (c == ',' || c == '}' || c == ']') { c 189 extensions/browser/file_highlighter.cc if (c == '"' || c == '{' || c == '[') c 32 gpu/command_buffer/client/gles2_cmd_helper.h gles2::cmds::GetAttribLocation* c = c 34 gpu/command_buffer/client/gles2_cmd_helper.h if (c) { c 35 gpu/command_buffer/client/gles2_cmd_helper.h c->Init( c 44 gpu/command_buffer/client/gles2_cmd_helper.h gles2::cmds::GetAttribLocationBucket* c = c 46 gpu/command_buffer/client/gles2_cmd_helper.h if (c) { c 47 gpu/command_buffer/client/gles2_cmd_helper.h c->Init(program, name_bucket_id, location_shm_id, location_shm_offset); c 54 gpu/command_buffer/client/gles2_cmd_helper.h gles2::cmds::GetUniformLocation* c = c 56 gpu/command_buffer/client/gles2_cmd_helper.h if (c) { c 57 gpu/command_buffer/client/gles2_cmd_helper.h c->Init( c 66 gpu/command_buffer/client/gles2_cmd_helper.h gles2::cmds::GetUniformLocationBucket* c = c 68 gpu/command_buffer/client/gles2_cmd_helper.h if (c) { c 69 gpu/command_buffer/client/gles2_cmd_helper.h c->Init(program, name_bucket_id, location_shm_id, location_shm_offset); c 15 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ActiveTexture* c = GetCmdSpace<gles2::cmds::ActiveTexture>(); c 16 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 17 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(texture); c 22 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::AttachShader* c = GetCmdSpace<gles2::cmds::AttachShader>(); c 23 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 24 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, shader); c 33 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindAttribLocation* c = c 35 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 36 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, index, name_shm_id, name_shm_offset, data_size); c 43 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindAttribLocationBucket* c = c 45 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 46 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, index, name_bucket_id); c 51 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindBuffer* c = GetCmdSpace<gles2::cmds::BindBuffer>(); c 52 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 53 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, buffer); c 58 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindFramebuffer* c = GetCmdSpace<gles2::cmds::BindFramebuffer>(); c 59 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 60 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, framebuffer); c 65 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindRenderbuffer* c = c 67 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 68 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, renderbuffer); c 73 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindTexture* c = GetCmdSpace<gles2::cmds::BindTexture>(); c 74 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 75 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, texture); c 80 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BlendColor* c = GetCmdSpace<gles2::cmds::BlendColor>(); c 81 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 82 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(red, green, blue, alpha); c 87 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BlendEquation* c = GetCmdSpace<gles2::cmds::BlendEquation>(); c 88 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 89 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode); c 94 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BlendEquationSeparate* c = c 96 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 97 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(modeRGB, modeAlpha); c 102 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BlendFunc* c = GetCmdSpace<gles2::cmds::BlendFunc>(); c 103 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 104 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(sfactor, dfactor); c 112 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BlendFuncSeparate* c = c 114 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 115 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(srcRGB, dstRGB, srcAlpha, dstAlpha); c 124 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BufferData* c = GetCmdSpace<gles2::cmds::BufferData>(); c 125 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 126 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, size, data_shm_id, data_shm_offset, usage); c 135 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BufferSubData* c = GetCmdSpace<gles2::cmds::BufferSubData>(); c 136 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 137 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, offset, size, data_shm_id, data_shm_offset); c 144 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CheckFramebufferStatus* c = c 146 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 147 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, result_shm_id, result_shm_offset); c 152 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Clear* c = GetCmdSpace<gles2::cmds::Clear>(); c 153 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 154 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mask); c 159 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ClearColor* c = GetCmdSpace<gles2::cmds::ClearColor>(); c 160 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 161 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(red, green, blue, alpha); c 166 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ClearDepthf* c = GetCmdSpace<gles2::cmds::ClearDepthf>(); c 167 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 168 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(depth); c 173 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ClearStencil* c = GetCmdSpace<gles2::cmds::ClearStencil>(); c 174 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 175 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(s); c 183 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ColorMask* c = GetCmdSpace<gles2::cmds::ColorMask>(); c 184 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 185 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(red, green, blue, alpha); c 190 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CompileShader* c = GetCmdSpace<gles2::cmds::CompileShader>(); c 191 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 192 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader); c 205 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CompressedTexImage2D* c = c 207 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 208 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, c 227 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CompressedTexImage2DBucket* c = c 229 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 230 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, level, internalformat, width, height, border, bucket_id); c 244 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CompressedTexSubImage2D* c = c 246 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 247 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, c 268 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CompressedTexSubImage2DBucket* c = c 270 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 271 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, level, xoffset, yoffset, width, height, format, bucket_id); c 283 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CopyTexImage2D* c = GetCmdSpace<gles2::cmds::CopyTexImage2D>(); c 284 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 285 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, level, internalformat, x, y, width, height, border); c 297 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CopyTexSubImage2D* c = c 299 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 300 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, level, xoffset, yoffset, x, y, width, height); c 305 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CreateProgram* c = GetCmdSpace<gles2::cmds::CreateProgram>(); c 306 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 307 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(client_id); c 312 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CreateShader* c = GetCmdSpace<gles2::cmds::CreateShader>(); c 313 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 314 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(type, client_id); c 319 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CullFace* c = GetCmdSpace<gles2::cmds::CullFace>(); c 320 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 321 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode); c 328 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteBuffers* c = GetCmdSpace<gles2::cmds::DeleteBuffers>(); c 329 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 330 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, buffers_shm_id, buffers_shm_offset); c 336 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteBuffersImmediate* c = c 338 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 339 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, buffers); c 346 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteFramebuffers* c = c 348 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 349 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, framebuffers_shm_id, framebuffers_shm_offset); c 355 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteFramebuffersImmediate* c = c 358 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 359 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, framebuffers); c 364 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteProgram* c = GetCmdSpace<gles2::cmds::DeleteProgram>(); c 365 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 366 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program); c 373 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteRenderbuffers* c = c 375 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 376 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, renderbuffers_shm_id, renderbuffers_shm_offset); c 382 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteRenderbuffersImmediate* c = c 385 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 386 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, renderbuffers); c 391 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteShader* c = GetCmdSpace<gles2::cmds::DeleteShader>(); c 392 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 393 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader); c 400 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteTextures* c = GetCmdSpace<gles2::cmds::DeleteTextures>(); c 401 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 402 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, textures_shm_id, textures_shm_offset); c 408 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteTexturesImmediate* c = c 410 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 411 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, textures); c 416 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DepthFunc* c = GetCmdSpace<gles2::cmds::DepthFunc>(); c 417 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 418 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(func); c 423 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DepthMask* c = GetCmdSpace<gles2::cmds::DepthMask>(); c 424 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 425 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(flag); c 430 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DepthRangef* c = GetCmdSpace<gles2::cmds::DepthRangef>(); c 431 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 432 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(zNear, zFar); c 437 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DetachShader* c = GetCmdSpace<gles2::cmds::DetachShader>(); c 438 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 439 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, shader); c 444 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Disable* c = GetCmdSpace<gles2::cmds::Disable>(); c 445 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 446 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(cap); c 451 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DisableVertexAttribArray* c = c 453 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 454 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(index); c 459 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DrawArrays* c = GetCmdSpace<gles2::cmds::DrawArrays>(); c 460 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 461 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode, first, count); c 469 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DrawElements* c = GetCmdSpace<gles2::cmds::DrawElements>(); c 470 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 471 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode, count, type, index_offset); c 476 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Enable* c = GetCmdSpace<gles2::cmds::Enable>(); c 477 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 478 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(cap); c 483 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::EnableVertexAttribArray* c = c 485 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 486 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(index); c 491 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Finish* c = GetCmdSpace<gles2::cmds::Finish>(); c 492 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 493 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 498 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Flush* c = GetCmdSpace<gles2::cmds::Flush>(); c 499 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 500 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 508 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::FramebufferRenderbuffer* c = c 510 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 511 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, attachment, renderbuffertarget, renderbuffer); c 520 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::FramebufferTexture2D* c = c 522 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 523 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, attachment, textarget, texture, level); c 528 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::FrontFace* c = GetCmdSpace<gles2::cmds::FrontFace>(); c 529 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 530 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode); c 535 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenBuffers* c = GetCmdSpace<gles2::cmds::GenBuffers>(); c 536 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 537 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, buffers_shm_id, buffers_shm_offset); c 543 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenBuffersImmediate* c = c 545 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 546 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, buffers); c 551 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenerateMipmap* c = GetCmdSpace<gles2::cmds::GenerateMipmap>(); c 552 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 553 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target); c 560 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenFramebuffers* c = GetCmdSpace<gles2::cmds::GenFramebuffers>(); c 561 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 562 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, framebuffers_shm_id, framebuffers_shm_offset); c 568 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenFramebuffersImmediate* c = c 571 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 572 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, framebuffers); c 579 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenRenderbuffers* c = c 581 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 582 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, renderbuffers_shm_id, renderbuffers_shm_offset); c 588 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenRenderbuffersImmediate* c = c 591 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 592 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, renderbuffers); c 599 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenTextures* c = GetCmdSpace<gles2::cmds::GenTextures>(); c 600 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 601 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, textures_shm_id, textures_shm_offset); c 607 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenTexturesImmediate* c = c 609 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 610 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, textures); c 619 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetActiveAttrib* c = GetCmdSpace<gles2::cmds::GetActiveAttrib>(); c 620 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 621 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, index, name_bucket_id, result_shm_id, result_shm_offset); c 630 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetActiveUniform* c = c 632 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 633 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, index, name_bucket_id, result_shm_id, result_shm_offset); c 641 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetAttachedShaders* c = c 643 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 644 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, result_shm_id, result_shm_offset, result_size); c 649 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetBooleanv* c = GetCmdSpace<gles2::cmds::GetBooleanv>(); c 650 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 651 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(pname, params_shm_id, params_shm_offset); c 659 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetBufferParameteriv* c = c 661 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 662 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params_shm_id, params_shm_offset); c 667 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetError* c = GetCmdSpace<gles2::cmds::GetError>(); c 668 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 669 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(result_shm_id, result_shm_offset); c 674 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetFloatv* c = GetCmdSpace<gles2::cmds::GetFloatv>(); c 675 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 676 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(pname, params_shm_id, params_shm_offset); c 685 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetFramebufferAttachmentParameteriv* c = c 687 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 688 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, attachment, pname, params_shm_id, params_shm_offset); c 693 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetIntegerv* c = GetCmdSpace<gles2::cmds::GetIntegerv>(); c 694 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 695 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(pname, params_shm_id, params_shm_offset); c 703 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetProgramiv* c = GetCmdSpace<gles2::cmds::GetProgramiv>(); c 704 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 705 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, pname, params_shm_id, params_shm_offset); c 710 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetProgramInfoLog* c = c 712 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 713 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, bucket_id); c 721 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetRenderbufferParameteriv* c = c 723 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 724 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params_shm_id, params_shm_offset); c 732 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetShaderiv* c = GetCmdSpace<gles2::cmds::GetShaderiv>(); c 733 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 734 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, pname, params_shm_id, params_shm_offset); c 739 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetShaderInfoLog* c = c 741 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 742 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, bucket_id); c 750 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetShaderPrecisionFormat* c = c 752 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 753 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shadertype, precisiontype, result_shm_id, result_shm_offset); c 758 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetShaderSource* c = GetCmdSpace<gles2::cmds::GetShaderSource>(); c 759 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 760 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, bucket_id); c 765 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetString* c = GetCmdSpace<gles2::cmds::GetString>(); c 766 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 767 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(name, bucket_id); c 775 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetTexParameterfv* c = c 777 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 778 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params_shm_id, params_shm_offset); c 786 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetTexParameteriv* c = c 788 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 789 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params_shm_id, params_shm_offset); c 797 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetUniformfv* c = GetCmdSpace<gles2::cmds::GetUniformfv>(); c 798 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 799 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, location, params_shm_id, params_shm_offset); c 807 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetUniformiv* c = GetCmdSpace<gles2::cmds::GetUniformiv>(); c 808 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 809 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, location, params_shm_id, params_shm_offset); c 817 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetVertexAttribfv* c = c 819 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 820 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(index, pname, params_shm_id, params_shm_offset); c 828 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetVertexAttribiv* c = c 830 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 831 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(index, pname, params_shm_id, params_shm_offset); c 839 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetVertexAttribPointerv* c = c 841 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 842 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(index, pname, pointer_shm_id, pointer_shm_offset); c 847 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Hint* c = GetCmdSpace<gles2::cmds::Hint>(); c 848 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 849 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, mode); c 854 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsBuffer* c = GetCmdSpace<gles2::cmds::IsBuffer>(); c 855 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 856 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(buffer, result_shm_id, result_shm_offset); c 861 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsEnabled* c = GetCmdSpace<gles2::cmds::IsEnabled>(); c 862 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 863 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(cap, result_shm_id, result_shm_offset); c 870 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsFramebuffer* c = GetCmdSpace<gles2::cmds::IsFramebuffer>(); c 871 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 872 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(framebuffer, result_shm_id, result_shm_offset); c 877 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsProgram* c = GetCmdSpace<gles2::cmds::IsProgram>(); c 878 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 879 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, result_shm_id, result_shm_offset); c 886 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsRenderbuffer* c = GetCmdSpace<gles2::cmds::IsRenderbuffer>(); c 887 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 888 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(renderbuffer, result_shm_id, result_shm_offset); c 893 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsShader* c = GetCmdSpace<gles2::cmds::IsShader>(); c 894 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 895 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, result_shm_id, result_shm_offset); c 900 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsTexture* c = GetCmdSpace<gles2::cmds::IsTexture>(); c 901 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 902 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(texture, result_shm_id, result_shm_offset); c 907 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::LineWidth* c = GetCmdSpace<gles2::cmds::LineWidth>(); c 908 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 909 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(width); c 914 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::LinkProgram* c = GetCmdSpace<gles2::cmds::LinkProgram>(); c 915 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 916 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program); c 921 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::PixelStorei* c = GetCmdSpace<gles2::cmds::PixelStorei>(); c 922 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 923 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(pname, param); c 928 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::PolygonOffset* c = GetCmdSpace<gles2::cmds::PolygonOffset>(); c 929 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 930 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(factor, units); c 945 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ReadPixels* c = GetCmdSpace<gles2::cmds::ReadPixels>(); c 946 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 947 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(x, c 962 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ReleaseShaderCompiler* c = c 964 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 965 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 973 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::RenderbufferStorage* c = c 975 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 976 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, internalformat, width, height); c 981 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::SampleCoverage* c = GetCmdSpace<gles2::cmds::SampleCoverage>(); c 982 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 983 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(value, invert); c 988 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Scissor* c = GetCmdSpace<gles2::cmds::Scissor>(); c 989 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 990 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(x, y, width, height); c 1001 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ShaderBinary* c = GetCmdSpace<gles2::cmds::ShaderBinary>(); c 1002 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1003 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, c 1017 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ShaderSource* c = GetCmdSpace<gles2::cmds::ShaderSource>(); c 1018 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1019 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, data_shm_id, data_shm_offset, data_size); c 1024 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ShaderSourceBucket* c = c 1026 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1027 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, data_bucket_id); c 1032 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::StencilFunc* c = GetCmdSpace<gles2::cmds::StencilFunc>(); c 1033 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1034 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(func, ref, mask); c 1039 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::StencilFuncSeparate* c = c 1041 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1042 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(face, func, ref, mask); c 1047 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::StencilMask* c = GetCmdSpace<gles2::cmds::StencilMask>(); c 1048 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1049 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mask); c 1054 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::StencilMaskSeparate* c = c 1056 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1057 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(face, mask); c 1062 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::StencilOp* c = GetCmdSpace<gles2::cmds::StencilOp>(); c 1063 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1064 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(fail, zfail, zpass); c 1069 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::StencilOpSeparate* c = c 1071 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1072 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(face, fail, zfail, zpass); c 1086 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexImage2D* c = GetCmdSpace<gles2::cmds::TexImage2D>(); c 1087 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1088 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, c 1102 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexParameterf* c = GetCmdSpace<gles2::cmds::TexParameterf>(); c 1103 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1104 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, param); c 1112 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexParameterfv* c = GetCmdSpace<gles2::cmds::TexParameterfv>(); c 1113 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1114 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params_shm_id, params_shm_offset); c 1122 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexParameterfvImmediate* c = c 1124 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1125 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params); c 1130 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexParameteri* c = GetCmdSpace<gles2::cmds::TexParameteri>(); c 1131 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1132 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, param); c 1140 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexParameteriv* c = GetCmdSpace<gles2::cmds::TexParameteriv>(); c 1141 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1142 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params_shm_id, params_shm_offset); c 1148 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexParameterivImmediate* c = c 1150 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1151 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, pname, params); c 1166 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexSubImage2D* c = GetCmdSpace<gles2::cmds::TexSubImage2D>(); c 1167 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1168 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, c 1183 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform1f* c = GetCmdSpace<gles2::cmds::Uniform1f>(); c 1184 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1185 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x); c 1193 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform1fv* c = GetCmdSpace<gles2::cmds::Uniform1fv>(); c 1194 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1195 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1201 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform1fvImmediate* c = c 1203 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1204 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1209 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform1i* c = GetCmdSpace<gles2::cmds::Uniform1i>(); c 1210 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1211 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x); c 1219 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform1iv* c = GetCmdSpace<gles2::cmds::Uniform1iv>(); c 1220 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1221 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1227 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform1ivImmediate* c = c 1229 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1230 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1235 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform2f* c = GetCmdSpace<gles2::cmds::Uniform2f>(); c 1236 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1237 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x, y); c 1245 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform2fv* c = GetCmdSpace<gles2::cmds::Uniform2fv>(); c 1246 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1247 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1253 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform2fvImmediate* c = c 1255 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1256 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1261 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform2i* c = GetCmdSpace<gles2::cmds::Uniform2i>(); c 1262 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1263 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x, y); c 1271 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform2iv* c = GetCmdSpace<gles2::cmds::Uniform2iv>(); c 1272 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1273 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1279 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform2ivImmediate* c = c 1281 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1282 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1287 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform3f* c = GetCmdSpace<gles2::cmds::Uniform3f>(); c 1288 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1289 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x, y, z); c 1297 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform3fv* c = GetCmdSpace<gles2::cmds::Uniform3fv>(); c 1298 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1299 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1305 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform3fvImmediate* c = c 1307 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1308 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1313 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform3i* c = GetCmdSpace<gles2::cmds::Uniform3i>(); c 1314 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1315 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x, y, z); c 1323 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform3iv* c = GetCmdSpace<gles2::cmds::Uniform3iv>(); c 1324 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1325 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1331 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform3ivImmediate* c = c 1333 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1334 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1339 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform4f* c = GetCmdSpace<gles2::cmds::Uniform4f>(); c 1340 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1341 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x, y, z, w); c 1349 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform4fv* c = GetCmdSpace<gles2::cmds::Uniform4fv>(); c 1350 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1351 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1357 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform4fvImmediate* c = c 1359 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1360 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1365 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform4i* c = GetCmdSpace<gles2::cmds::Uniform4i>(); c 1366 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1367 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, x, y, z, w); c 1375 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform4iv* c = GetCmdSpace<gles2::cmds::Uniform4iv>(); c 1376 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1377 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v_shm_id, v_shm_offset); c 1383 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Uniform4ivImmediate* c = c 1385 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1386 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, v); c 1395 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UniformMatrix2fv* c = c 1397 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1398 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, transpose, value_shm_id, value_shm_offset); c 1408 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UniformMatrix2fvImmediate* c = c 1411 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1412 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, transpose, value); c 1421 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UniformMatrix3fv* c = c 1423 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1424 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, transpose, value_shm_id, value_shm_offset); c 1434 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UniformMatrix3fvImmediate* c = c 1437 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1438 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, transpose, value); c 1447 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UniformMatrix4fv* c = c 1449 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1450 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, transpose, value_shm_id, value_shm_offset); c 1460 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UniformMatrix4fvImmediate* c = c 1463 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1464 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(location, count, transpose, value); c 1469 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::UseProgram* c = GetCmdSpace<gles2::cmds::UseProgram>(); c 1470 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1471 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program); c 1476 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ValidateProgram* c = GetCmdSpace<gles2::cmds::ValidateProgram>(); c 1477 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1478 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program); c 1483 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib1f* c = GetCmdSpace<gles2::cmds::VertexAttrib1f>(); c 1484 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1485 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, x); c 1492 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib1fv* c = GetCmdSpace<gles2::cmds::VertexAttrib1fv>(); c 1493 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1494 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values_shm_id, values_shm_offset); c 1500 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib1fvImmediate* c = c 1503 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1504 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values); c 1509 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib2f* c = GetCmdSpace<gles2::cmds::VertexAttrib2f>(); c 1510 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1511 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, x, y); c 1518 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib2fv* c = GetCmdSpace<gles2::cmds::VertexAttrib2fv>(); c 1519 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1520 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values_shm_id, values_shm_offset); c 1526 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib2fvImmediate* c = c 1529 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1530 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values); c 1535 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib3f* c = GetCmdSpace<gles2::cmds::VertexAttrib3f>(); c 1536 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1537 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, x, y, z); c 1544 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib3fv* c = GetCmdSpace<gles2::cmds::VertexAttrib3fv>(); c 1545 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1546 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values_shm_id, values_shm_offset); c 1552 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib3fvImmediate* c = c 1555 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1556 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values); c 1561 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib4f* c = GetCmdSpace<gles2::cmds::VertexAttrib4f>(); c 1562 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1563 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, x, y, z, w); c 1570 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib4fv* c = GetCmdSpace<gles2::cmds::VertexAttrib4fv>(); c 1571 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1572 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values_shm_id, values_shm_offset); c 1578 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttrib4fvImmediate* c = c 1581 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1582 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, values); c 1592 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttribPointer* c = c 1594 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1595 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(indx, size, type, normalized, stride, offset); c 1600 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::Viewport* c = GetCmdSpace<gles2::cmds::Viewport>(); c 1601 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1602 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(x, y, width, height); c 1616 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BlitFramebufferCHROMIUM* c = c 1618 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1619 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init( c 1629 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::RenderbufferStorageMultisampleCHROMIUM* c = c 1631 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1632 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, samples, internalformat, width, height); c 1641 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::RenderbufferStorageMultisampleEXT* c = c 1643 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1644 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, samples, internalformat, width, height); c 1654 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::FramebufferTexture2DMultisampleEXT* c = c 1656 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1657 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, attachment, textarget, texture, level, samples); c 1666 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexStorage2DEXT* c = GetCmdSpace<gles2::cmds::TexStorage2DEXT>(); c 1667 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1668 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, levels, internalFormat, width, height); c 1675 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenQueriesEXT* c = GetCmdSpace<gles2::cmds::GenQueriesEXT>(); c 1676 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1677 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, queries_shm_id, queries_shm_offset); c 1683 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenQueriesEXTImmediate* c = c 1685 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1686 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, queries); c 1693 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteQueriesEXT* c = c 1695 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1696 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, queries_shm_id, queries_shm_offset); c 1702 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteQueriesEXTImmediate* c = c 1705 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1706 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, queries); c 1714 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BeginQueryEXT* c = GetCmdSpace<gles2::cmds::BeginQueryEXT>(); c 1715 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1716 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, id, sync_data_shm_id, sync_data_shm_offset); c 1721 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::EndQueryEXT* c = GetCmdSpace<gles2::cmds::EndQueryEXT>(); c 1722 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1723 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, submit_count); c 1728 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::InsertEventMarkerEXT* c = c 1730 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1731 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(bucket_id); c 1736 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::PushGroupMarkerEXT* c = c 1738 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1739 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(bucket_id); c 1744 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::PopGroupMarkerEXT* c = c 1746 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1747 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 1754 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenVertexArraysOES* c = c 1756 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1757 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, arrays_shm_id, arrays_shm_offset); c 1763 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenVertexArraysOESImmediate* c = c 1766 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1767 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, arrays); c 1774 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteVertexArraysOES* c = c 1776 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1777 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, arrays_shm_id, arrays_shm_offset); c 1784 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteVertexArraysOESImmediate* c = c 1787 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1788 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(n, arrays); c 1795 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::IsVertexArrayOES* c = c 1797 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1798 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(array, result_shm_id, result_shm_offset); c 1803 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindVertexArrayOES* c = c 1805 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1806 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(array); c 1811 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::SwapBuffers* c = GetCmdSpace<gles2::cmds::SwapBuffers>(); c 1812 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1813 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 1823 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetMaxValueInBufferCHROMIUM* c = c 1825 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1826 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(buffer_id, count, type, offset, result_shm_id, result_shm_offset); c 1835 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GenSharedIdsCHROMIUM* c = c 1837 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1838 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(namespace_id, id_offset, n, ids_shm_id, ids_shm_offset); c 1846 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DeleteSharedIdsCHROMIUM* c = c 1848 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1849 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(namespace_id, n, ids_shm_id, ids_shm_offset); c 1857 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::RegisterSharedIdsCHROMIUM* c = c 1859 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1860 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(namespace_id, n, ids_shm_id, ids_shm_offset); c 1867 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::EnableFeatureCHROMIUM* c = c 1869 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1870 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(bucket_id, result_shm_id, result_shm_offset); c 1875 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ResizeCHROMIUM* c = GetCmdSpace<gles2::cmds::ResizeCHROMIUM>(); c 1876 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1877 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(width, height, scale_factor); c 1882 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetRequestableExtensionsCHROMIUM* c = c 1884 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1885 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(bucket_id); c 1890 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::RequestExtensionCHROMIUM* c = c 1892 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1893 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(bucket_id); c 1903 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetMultipleIntegervCHROMIUM* c = c 1905 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1906 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(pnames_shm_id, c 1916 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetProgramInfoCHROMIUM* c = c 1918 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1919 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, bucket_id); c 1924 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::GetTranslatedShaderSourceANGLE* c = c 1926 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1927 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(shader, bucket_id); c 1932 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::PostSubBufferCHROMIUM* c = c 1934 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1935 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(x, y, width, height); c 1944 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TexImageIOSurface2DCHROMIUM* c = c 1946 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1947 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, width, height, ioSurfaceId, plane); c 1957 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::CopyTextureCHROMIUM* c = c 1959 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1960 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, source_id, dest_id, level, internalformat, dest_type); c 1968 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DrawArraysInstancedANGLE* c = c 1970 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1971 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode, first, count, primcount); c 1980 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DrawElementsInstancedANGLE* c = c 1982 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1983 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(mode, count, type, index_offset, primcount); c 1988 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::VertexAttribDivisorANGLE* c = c 1990 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 1991 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(index, divisor); c 1998 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ProduceTextureCHROMIUM* c = c 2000 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2001 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, mailbox_shm_id, mailbox_shm_offset); c 2008 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ProduceTextureCHROMIUMImmediate* c = c 2011 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2012 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, mailbox); c 2019 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ConsumeTextureCHROMIUM* c = c 2021 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2022 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, mailbox_shm_id, mailbox_shm_offset); c 2029 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ConsumeTextureCHROMIUMImmediate* c = c 2032 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2033 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, mailbox); c 2042 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindUniformLocationCHROMIUM* c = c 2044 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2045 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, location, name_shm_id, name_shm_offset, data_size); c 2052 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindUniformLocationCHROMIUMBucket* c = c 2054 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2055 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(program, location, name_bucket_id); c 2060 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::BindTexImage2DCHROMIUM* c = c 2062 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2063 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, imageId); c 2068 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::ReleaseTexImage2DCHROMIUM* c = c 2070 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2071 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, imageId); c 2076 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TraceBeginCHROMIUM* c = c 2078 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2079 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(bucket_id); c 2084 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::TraceEndCHROMIUM* c = c 2086 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2087 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 2104 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::AsyncTexSubImage2DCHROMIUM* c = c 2106 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2107 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, c 2136 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::AsyncTexImage2DCHROMIUM* c = c 2138 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2139 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, c 2156 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::WaitAsyncTexImage2DCHROMIUM* c = c 2158 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2159 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target); c 2164 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::WaitAllAsyncTexImage2DCHROMIUM* c = c 2166 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2167 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 2175 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DiscardFramebufferEXT* c = c 2177 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2178 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, count, attachments_shm_id, attachments_shm_offset); c 2187 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DiscardFramebufferEXTImmediate* c = c 2190 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2191 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(target, count, attachments); c 2196 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::LoseContextCHROMIUM* c = c 2198 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2199 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(current, other); c 2204 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::WaitSyncPointCHROMIUM* c = c 2206 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2207 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(sync_point); c 2212 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DrawBuffersEXT* c = GetCmdSpace<gles2::cmds::DrawBuffersEXT>(); c 2213 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2214 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(count, bufs_shm_id, bufs_shm_offset); c 2220 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DrawBuffersEXTImmediate* c = c 2222 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2223 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(count, bufs); c 2228 gpu/command_buffer/client/gles2_cmd_helper_autogen.h gles2::cmds::DiscardBackbufferCHROMIUM* c = c 2230 gpu/command_buffer/client/gles2_cmd_helper_autogen.h if (c) { c 2231 gpu/command_buffer/client/gles2_cmd_helper_autogen.h c->Init(); c 253 gpu/command_buffer/service/gles2_cmd_decoder.cc static bool CharacterIsValidForGLES(unsigned char c) { c 255 gpu/command_buffer/service/gles2_cmd_decoder.cc if (c >= 32 && c <= 126 && c 256 gpu/command_buffer/service/gles2_cmd_decoder.cc c != '"' && c 257 gpu/command_buffer/service/gles2_cmd_decoder.cc c != '$' && c 258 gpu/command_buffer/service/gles2_cmd_decoder.cc c != '`' && c 259 gpu/command_buffer/service/gles2_cmd_decoder.cc c != '@' && c 260 gpu/command_buffer/service/gles2_cmd_decoder.cc c != '\\' && c 261 gpu/command_buffer/service/gles2_cmd_decoder.cc c != '\'') { c 266 gpu/command_buffer/service/gles2_cmd_decoder.cc if (c >= 9 && c <= 13) { c 1625 gpu/command_buffer/service/gles2_cmd_decoder.cc void FinishReadPixels(const cmds::ReadPixels& c, GLuint buffer); c 3589 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::ResizeCHROMIUM& c) { c 3593 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint width = static_cast<GLuint>(c.width); c 3594 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint height = static_cast<GLuint>(c.height); c 3595 gpu/command_buffer/service/gles2_cmd_decoder.cc GLfloat scale_factor = c.scale_factor; c 4690 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::BindAttribLocation& c) { c 4691 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program = static_cast<GLuint>(c.program); c 4692 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint index = static_cast<GLuint>(c.index); c 4693 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 name_size = c.data_size; c 4695 gpu/command_buffer/service/gles2_cmd_decoder.cc c.name_shm_id, c.name_shm_offset, name_size); c 4705 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::BindAttribLocationBucket& c) { c 4706 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program = static_cast<GLuint>(c.program); c 4707 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint index = static_cast<GLuint>(c.index); c 4708 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.name_bucket_id); c 4755 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::BindUniformLocationCHROMIUM& c) { c 4756 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program = static_cast<GLuint>(c.program); c 4757 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint location = static_cast<GLint>(c.location); c 4758 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 name_size = c.data_size; c 4760 gpu/command_buffer/service/gles2_cmd_decoder.cc c.name_shm_id, c.name_shm_offset, name_size); c 4771 gpu/command_buffer/service/gles2_cmd_decoder.cc const cmds::BindUniformLocationCHROMIUMBucket& c) { c 4772 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program = static_cast<GLuint>(c.program); c 4773 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint location = static_cast<GLint>(c.location); c 4774 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.name_bucket_id); c 4787 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DeleteShader& c) { c 4788 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint client_id = c.shader; c 4804 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DeleteProgram& c) { c 4805 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint client_id = c.program; c 4829 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DeleteSharedIdsCHROMIUM& c) { c 4830 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint namespace_id = static_cast<GLuint>(c.namespace_id); c 4831 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei n = static_cast<GLsizei>(c.n); c 4837 gpu/command_buffer/service/gles2_cmd_decoder.cc c.ids_shm_id, c.ids_shm_offset, data_size); c 4865 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GenSharedIdsCHROMIUM& c) { c 4866 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint namespace_id = static_cast<GLuint>(c.namespace_id); c 4867 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint id_offset = static_cast<GLuint>(c.id_offset); c 4868 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei n = static_cast<GLsizei>(c.n); c 4874 gpu/command_buffer/service/gles2_cmd_decoder.cc c.ids_shm_id, c.ids_shm_offset, data_size); c 4903 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::RegisterSharedIdsCHROMIUM& c) { c 4904 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint namespace_id = static_cast<GLuint>(c.namespace_id); c 4905 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei n = static_cast<GLsizei>(c.n); c 4911 gpu/command_buffer/service/gles2_cmd_decoder.cc c.ids_shm_id, c.ids_shm_offset, data_size); c 6471 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DrawArrays& c) { c 6474 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLenum>(c.mode), c 6475 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLint>(c.first), c 6476 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLsizei>(c.count), c 6481 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DrawArraysInstancedANGLE& c) { c 6490 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLenum>(c.mode), c 6491 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLint>(c.first), c 6492 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLsizei>(c.count), c 6493 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLsizei>(c.primcount)); c 6607 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DrawElements& c) { c 6610 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLenum>(c.mode), c 6611 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLsizei>(c.count), c 6612 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLenum>(c.type), c 6613 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<int32>(c.index_offset), c 6618 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DrawElementsInstancedANGLE& c) { c 6627 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLenum>(c.mode), c 6628 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLsizei>(c.count), c 6629 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLenum>(c.type), c 6630 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<int32>(c.index_offset), c 6631 gpu/command_buffer/service/gles2_cmd_decoder.cc static_cast<GLsizei>(c.primcount)); c 6672 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::ShaderSource& c) { c 6673 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 data_size = c.data_size; c 6675 gpu/command_buffer/service/gles2_cmd_decoder.cc c.data_shm_id, c.data_shm_offset, data_size); c 6679 gpu/command_buffer/service/gles2_cmd_decoder.cc return ShaderSourceHelper(c.shader, data, data_size); c 6683 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::ShaderSourceBucket& c) { c 6684 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.data_bucket_id); c 6689 gpu/command_buffer/service/gles2_cmd_decoder.cc c.shader, bucket->GetDataAs<const char*>(0, bucket->size() - 1), c 6739 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetShaderSource& c) { c 6740 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint shader_id = c.shader; c 6741 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 bucket_id = static_cast<uint32>(c.bucket_id); c 6754 gpu/command_buffer/service/gles2_cmd_decoder.cc const cmds::GetTranslatedShaderSourceANGLE& c) { c 6755 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint shader_id = c.shader; c 6756 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 bucket_id = static_cast<uint32>(c.bucket_id); c 6771 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetProgramInfoLog& c) { c 6772 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program_id = c.program; c 6773 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 bucket_id = static_cast<uint32>(c.bucket_id); c 6786 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetShaderInfoLog& c) { c 6787 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint shader_id = c.shader; c 6788 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 bucket_id = static_cast<uint32>(c.bucket_id); c 7079 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::VertexAttribPointer& c) { c 7088 gpu/command_buffer/service/gles2_cmd_decoder.cc } else if (c.offset != 0) { c 7096 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint indx = c.indx; c 7097 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint size = c.size; c 7098 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = c.type; c 7099 gpu/command_buffer/service/gles2_cmd_decoder.cc GLboolean normalized = c.normalized; c 7100 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei stride = c.stride; c 7101 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei offset = c.offset; c 7171 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::VertexAttribDivisorANGLE& c) { c 7177 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint index = c.index; c 7178 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint divisor = c.divisor; c 7217 gpu/command_buffer/service/gles2_cmd_decoder.cc const cmds::ReadPixels& c, c 7220 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = c.width; c 7221 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = c.height; c 7222 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = c.format; c 7223 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = c.type; c 7227 gpu/command_buffer/service/gles2_cmd_decoder.cc if (c.result_shm_id != 0) { c 7229 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, sizeof(*result)); c 7241 gpu/command_buffer/service/gles2_cmd_decoder.cc c.pixels_shm_id, c.pixels_shm_offset, pixels_size); c 7323 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::ReadPixels& c) { c 7328 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint x = c.x; c 7329 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint y = c.y; c 7330 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = c.width; c 7331 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = c.height; c 7332 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = c.format; c 7333 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = c.type; c 7334 gpu/command_buffer/service/gles2_cmd_decoder.cc GLboolean async = c.async; c 7347 gpu/command_buffer/service/gles2_cmd_decoder.cc c.pixels_shm_id, c.pixels_shm_offset, pixels_size); c 7352 gpu/command_buffer/service/gles2_cmd_decoder.cc if (c.result_shm_id != 0) { c 7354 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, sizeof(*result)); c 7464 gpu/command_buffer/service/gles2_cmd_decoder.cc c, buffer)); c 7479 gpu/command_buffer/service/gles2_cmd_decoder.cc FinishReadPixels(c, 0); c 7486 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::PixelStorei& c) { c 7487 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum pname = c.pname; c 7488 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum param = c.param; c 7534 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::PostSubBufferCHROMIUM& c) { c 7551 gpu/command_buffer/service/gles2_cmd_decoder.cc if (surface_->PostSubBuffer(c.x, c.y, c.width, c.height)) { c 7592 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetAttribLocation& c) { c 7593 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 name_size = c.data_size; c 7595 gpu/command_buffer/service/gles2_cmd_decoder.cc c.name_shm_id, c.name_shm_offset, name_size); c 7601 gpu/command_buffer/service/gles2_cmd_decoder.cc c.program, c.location_shm_id, c.location_shm_offset, name_str); c 7605 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetAttribLocationBucket& c) { c 7606 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.name_bucket_id); c 7615 gpu/command_buffer/service/gles2_cmd_decoder.cc c.program, c.location_shm_id, c.location_shm_offset, name_str); c 7651 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetUniformLocation& c) { c 7652 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 name_size = c.data_size; c 7654 gpu/command_buffer/service/gles2_cmd_decoder.cc c.name_shm_id, c.name_shm_offset, name_size); c 7660 gpu/command_buffer/service/gles2_cmd_decoder.cc c.program, c.location_shm_id, c.location_shm_offset, name_str); c 7664 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetUniformLocationBucket& c) { c 7665 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.name_bucket_id); c 7674 gpu/command_buffer/service/gles2_cmd_decoder.cc c.program, c.location_shm_id, c.location_shm_offset, name_str); c 7678 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetString& c) { c 7679 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum name = static_cast<GLenum>(c.name); c 7738 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = CreateBucket(c.bucket_id); c 7744 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::BufferData& c) { c 7745 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 7746 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizeiptr size = static_cast<GLsizeiptr>(c.size); c 7747 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 data_shm_id = static_cast<uint32>(c.data_shm_id); c 7748 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 data_shm_offset = static_cast<uint32>(c.data_shm_offset); c 7749 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum usage = static_cast<GLenum>(c.usage); c 8093 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::CompressedTexImage2D& c) { c 8094 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 8095 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 8096 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum internal_format = static_cast<GLenum>(c.internalformat); c 8097 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 8098 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 8099 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint border = static_cast<GLint>(c.border); c 8100 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei image_size = static_cast<GLsizei>(c.imageSize); c 8101 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 data_shm_id = static_cast<uint32>(c.data_shm_id); c 8102 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 data_shm_offset = static_cast<uint32>(c.data_shm_offset); c 8116 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::CompressedTexImage2DBucket& c) { c 8117 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 8118 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 8119 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum internal_format = static_cast<GLenum>(c.internalformat); c 8120 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 8121 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 8122 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint border = static_cast<GLint>(c.border); c 8123 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.bucket_id); c 8140 gpu/command_buffer/service/gles2_cmd_decoder.cc const cmds::CompressedTexSubImage2DBucket& c) { c 8141 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 8142 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 8143 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint xoffset = static_cast<GLint>(c.xoffset); c 8144 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint yoffset = static_cast<GLint>(c.yoffset); c 8145 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 8146 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 8147 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = static_cast<GLenum>(c.format); c 8148 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.bucket_id); c 8189 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::TexImage2D& c) { c 8193 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 8194 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 8197 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum internal_format = static_cast<GLenum>(c.internalformat); c 8198 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 8199 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 8200 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint border = static_cast<GLint>(c.border); c 8201 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = static_cast<GLenum>(c.format); c 8202 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = static_cast<GLenum>(c.type); c 8203 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 pixels_shm_id = static_cast<uint32>(c.pixels_shm_id); c 8204 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 pixels_shm_offset = static_cast<uint32>(c.pixels_shm_offset); c 8663 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::TexSubImage2D& c) { c 8665 gpu/command_buffer/service/gles2_cmd_decoder.cc GLboolean internal = static_cast<GLboolean>(c.internal); c 8669 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 8670 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 8671 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint xoffset = static_cast<GLint>(c.xoffset); c 8672 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint yoffset = static_cast<GLint>(c.yoffset); c 8673 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 8674 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 8675 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = static_cast<GLenum>(c.format); c 8676 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = static_cast<GLenum>(c.type); c 8684 gpu/command_buffer/service/gles2_cmd_decoder.cc c.pixels_shm_id, c.pixels_shm_offset, data_size); c 8690 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetVertexAttribPointerv& c) { c 8691 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint index = static_cast<GLuint>(c.index); c 8692 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum pname = static_cast<GLenum>(c.pname); c 8695 gpu/command_buffer/service/gles2_cmd_decoder.cc c.pointer_shm_id, c.pointer_shm_offset, Result::ComputeSize(1)); c 8780 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetUniformiv& c) { c 8781 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program = c.program; c 8782 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint fake_location = c.location; c 8789 gpu/command_buffer/service/gles2_cmd_decoder.cc program, fake_location, c.params_shm_id, c.params_shm_offset, c 8799 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetUniformfv& c) { c 8800 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program = c.program; c 8801 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint fake_location = c.location; c 8809 gpu/command_buffer/service/gles2_cmd_decoder.cc program, fake_location, c.params_shm_id, c.params_shm_offset, c 8829 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetShaderPrecisionFormat& c) { c 8830 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum shader_type = static_cast<GLenum>(c.shadertype); c 8831 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum precision_type = static_cast<GLenum>(c.precisiontype); c 8834 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, sizeof(*result)); c 8867 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetAttachedShaders& c) { c 8868 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 result_size = c.result_size; c 8869 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program_id = static_cast<GLuint>(c.program); c 8878 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, Result::ComputeSize(max_count)); c 8901 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetActiveUniform& c) { c 8902 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program_id = c.program; c 8903 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint index = c.index; c 8904 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 name_bucket_id = c.name_bucket_id; c 8907 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, sizeof(*result)); c 8936 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetActiveAttrib& c) { c 8937 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program_id = c.program; c 8938 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint index = c.index; c 8939 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 name_bucket_id = c.name_bucket_id; c 8942 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, sizeof(*result)); c 8971 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::ShaderBinary& c) { c 8976 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei n = static_cast<GLsizei>(c.n); c 8981 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei length = static_cast<GLsizei>(c.length); c 8991 gpu/command_buffer/service/gles2_cmd_decoder.cc c.shaders_shm_id, c.shaders_shm_offset, data_size); c 8992 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum binaryformat = static_cast<GLenum>(c.binaryformat); c 8994 gpu/command_buffer/service/gles2_cmd_decoder.cc c.binary_shm_id, c.binary_shm_offset, length); c 9127 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::EnableFeatureCHROMIUM& c) { c 9128 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.bucket_id); c 9134 gpu/command_buffer/service/gles2_cmd_decoder.cc c.result_shm_id, c.result_shm_offset, sizeof(*result)); c 9175 gpu/command_buffer/service/gles2_cmd_decoder.cc const cmds::GetRequestableExtensionsCHROMIUM& c) { c 9176 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = CreateBucket(c.bucket_id); c 9184 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::RequestExtensionCHROMIUM& c) { c 9185 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.bucket_id); c 9225 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetMultipleIntegervCHROMIUM& c) { c 9226 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint count = c.count; c 9232 gpu/command_buffer/service/gles2_cmd_decoder.cc c.pnames_shm_id, c.pnames_shm_offset, pnames_size); c 9264 gpu/command_buffer/service/gles2_cmd_decoder.cc if (result_size != static_cast<uint32>(c.size)) { c 9272 gpu/command_buffer/service/gles2_cmd_decoder.cc c.results_shm_id, c.results_shm_offset, result_size); c 9304 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GetProgramInfoCHROMIUM& c) { c 9305 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint program_id = static_cast<GLuint>(c.program); c 9306 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 bucket_id = c.bucket_id; c 9373 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::LoseContextCHROMIUM& c) { c 9374 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum current = static_cast<GLenum>(c.current); c 9375 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum other = static_cast<GLenum>(c.other); c 9390 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::InsertSyncPointCHROMIUM& c) { c 9395 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::WaitSyncPointCHROMIUM& c) { c 9400 gpu/command_buffer/service/gles2_cmd_decoder.cc return wait_sync_point_callback_.Run(c.sync_point) ? c 9405 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::DiscardBackbufferCHROMIUM& c) { c 9489 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::BeginQueryEXT& c) { c 9490 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 9491 gpu/command_buffer/service/gles2_cmd_decoder.cc GLuint client_id = static_cast<GLuint>(c.id); c 9492 gpu/command_buffer/service/gles2_cmd_decoder.cc int32 sync_shm_id = static_cast<int32>(c.sync_data_shm_id); c 9493 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 sync_shm_offset = static_cast<uint32>(c.sync_data_shm_offset); c 9566 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::EndQueryEXT& c) { c 9567 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 9568 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 submit_count = static_cast<GLuint>(c.submit_count); c 10106 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::GenMailboxCHROMIUM& c) { c 10316 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::TraceBeginCHROMIUM& c) { c 10317 gpu/command_buffer/service/gles2_cmd_decoder.cc Bucket* bucket = GetBucket(c.bucket_id); c 10444 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::AsyncTexImage2DCHROMIUM& c) { c 10446 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 10447 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 10450 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum internal_format = static_cast<GLenum>(c.internalformat); c 10451 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 10452 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 10453 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint border = static_cast<GLint>(c.border); c 10454 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = static_cast<GLenum>(c.format); c 10455 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = static_cast<GLenum>(c.type); c 10456 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 pixels_shm_id = static_cast<uint32>(c.pixels_shm_id); c 10457 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 pixels_shm_offset = static_cast<uint32>(c.pixels_shm_offset); c 10459 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 async_upload_token = static_cast<uint32>(c.async_upload_token); c 10460 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 sync_data_shm_id = static_cast<uint32>(c.sync_data_shm_id); c 10461 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 sync_data_shm_offset = static_cast<uint32>(c.sync_data_shm_offset); c 10526 gpu/command_buffer/service/gles2_cmd_decoder.cc GetSharedMemoryBuffer(c.pixels_shm_id), c.pixels_shm_offset, pixels_size); c 10550 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::AsyncTexSubImage2DCHROMIUM& c) { c 10552 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 10553 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint level = static_cast<GLint>(c.level); c 10554 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint xoffset = static_cast<GLint>(c.xoffset); c 10555 gpu/command_buffer/service/gles2_cmd_decoder.cc GLint yoffset = static_cast<GLint>(c.yoffset); c 10556 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei width = static_cast<GLsizei>(c.width); c 10557 gpu/command_buffer/service/gles2_cmd_decoder.cc GLsizei height = static_cast<GLsizei>(c.height); c 10558 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum format = static_cast<GLenum>(c.format); c 10559 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum type = static_cast<GLenum>(c.type); c 10560 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 async_upload_token = static_cast<uint32>(c.async_upload_token); c 10561 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 sync_data_shm_id = static_cast<uint32>(c.sync_data_shm_id); c 10562 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 sync_data_shm_offset = static_cast<uint32>(c.sync_data_shm_offset); c 10585 gpu/command_buffer/service/gles2_cmd_decoder.cc c.data_shm_id, c.data_shm_offset, data_size); c 10622 gpu/command_buffer/service/gles2_cmd_decoder.cc GetSharedMemoryBuffer(c.data_shm_id), c.data_shm_offset, data_size); c 10647 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::WaitAsyncTexImage2DCHROMIUM& c) { c 10649 gpu/command_buffer/service/gles2_cmd_decoder.cc GLenum target = static_cast<GLenum>(c.target); c 10678 gpu/command_buffer/service/gles2_cmd_decoder.cc uint32 immediate_data_size, const cmds::WaitAllAsyncTexImage2DCHROMIUM& c) { c 17 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ActiveTexture& c) { c 18 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum texture = static_cast<GLenum>(c.texture); c 25 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::AttachShader& c) { c 26 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 27 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint shader = c.shader; c 34 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BindBuffer& c) { c 35 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 36 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint buffer = c.buffer; c 47 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BindFramebuffer& c) { c 48 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 49 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint framebuffer = c.framebuffer; c 60 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BindRenderbuffer& c) { c 61 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 62 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint renderbuffer = c.renderbuffer; c 73 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BindTexture& c) { c 74 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 75 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint texture = c.texture; c 86 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BlendColor& c) { c 87 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf red = static_cast<GLclampf>(c.red); c 88 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf green = static_cast<GLclampf>(c.green); c 89 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf blue = static_cast<GLclampf>(c.blue); c 90 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf alpha = static_cast<GLclampf>(c.alpha); c 104 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BlendEquation& c) { c 105 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum mode = static_cast<GLenum>(c.mode); c 121 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BlendEquationSeparate& c) { c 122 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum modeRGB = static_cast<GLenum>(c.modeRGB); c 123 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum modeAlpha = static_cast<GLenum>(c.modeAlpha); c 145 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BlendFunc& c) { c 146 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum sfactor = static_cast<GLenum>(c.sfactor); c 147 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum dfactor = static_cast<GLenum>(c.dfactor); c 170 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BlendFuncSeparate& c) { c 171 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum srcRGB = static_cast<GLenum>(c.srcRGB); c 172 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum dstRGB = static_cast<GLenum>(c.dstRGB); c 173 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum srcAlpha = static_cast<GLenum>(c.srcAlpha); c 174 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum dstAlpha = static_cast<GLenum>(c.dstAlpha); c 207 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BufferSubData& c) { c 208 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 209 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLintptr offset = static_cast<GLintptr>(c.offset); c 210 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizeiptr size = static_cast<GLsizeiptr>(c.size); c 213 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.data_shm_id, c.data_shm_offset, data_size); c 231 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CheckFramebufferStatus& c) { c 232 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 235 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 249 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Clear& c) { c 254 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLbitfield mask = static_cast<GLbitfield>(c.mask); c 261 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ClearColor& c) { c 262 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf red = static_cast<GLclampf>(c.red); c 263 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf green = static_cast<GLclampf>(c.green); c 264 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf blue = static_cast<GLclampf>(c.blue); c 265 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf alpha = static_cast<GLclampf>(c.alpha); c 279 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ClearDepthf& c) { c 280 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf depth = static_cast<GLclampf>(c.depth); c 290 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ClearStencil& c) { c 291 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint s = static_cast<GLint>(c.s); c 301 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ColorMask& c) { c 302 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean red = static_cast<GLboolean>(c.red); c 303 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean green = static_cast<GLboolean>(c.green); c 304 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean blue = static_cast<GLboolean>(c.blue); c 305 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean alpha = static_cast<GLboolean>(c.alpha); c 319 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CompileShader& c) { c 320 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint shader = c.shader; c 327 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CompressedTexSubImage2D& c) { c 328 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 329 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint level = static_cast<GLint>(c.level); c 330 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint xoffset = static_cast<GLint>(c.xoffset); c 331 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint yoffset = static_cast<GLint>(c.yoffset); c 332 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 333 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 334 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum format = static_cast<GLenum>(c.format); c 335 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei imageSize = static_cast<GLsizei>(c.imageSize); c 338 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.data_shm_id, c.data_shm_offset, data_size); c 374 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CopyTexImage2D& c) { c 379 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 380 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint level = static_cast<GLint>(c.level); c 381 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum internalformat = static_cast<GLenum>(c.internalformat); c 382 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 383 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 384 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 385 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 386 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint border = static_cast<GLint>(c.border); c 415 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CopyTexSubImage2D& c) { c 420 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 421 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint level = static_cast<GLint>(c.level); c 422 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint xoffset = static_cast<GLint>(c.xoffset); c 423 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint yoffset = static_cast<GLint>(c.yoffset); c 424 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 425 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 426 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 427 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 446 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CreateProgram& c) { c 447 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h uint32 client_id = c.client_id; c 456 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CreateShader& c) { c 457 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum type = static_cast<GLenum>(c.type); c 462 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h uint32 client_id = c.client_id; c 470 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CullFace& c) { c 471 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum mode = static_cast<GLenum>(c.mode); c 485 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteBuffers& c) { c 486 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 492 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.buffers_shm_id, c.buffers_shm_offset, data_size); c 502 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteBuffersImmediate& c) { c 503 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 509 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLuint*>(c, data_size, immediate_data_size); c 519 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteFramebuffers& c) { c 520 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 526 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.framebuffers_shm_id, c.framebuffers_shm_offset, data_size); c 536 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteFramebuffersImmediate& c) { c 537 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 543 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLuint*>(c, data_size, immediate_data_size); c 553 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteRenderbuffers& c) { c 554 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 560 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.renderbuffers_shm_id, c.renderbuffers_shm_offset, data_size); c 570 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteRenderbuffersImmediate& c) { c 571 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 577 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLuint*>(c, data_size, immediate_data_size); c 587 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteTextures& c) { c 588 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 594 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.textures_shm_id, c.textures_shm_offset, data_size); c 604 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteTexturesImmediate& c) { c 605 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 611 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLuint*>(c, data_size, immediate_data_size); c 621 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DepthFunc& c) { c 622 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum func = static_cast<GLenum>(c.func); c 636 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DepthMask& c) { c 637 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean flag = static_cast<GLboolean>(c.flag); c 647 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DepthRangef& c) { c 648 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf zNear = static_cast<GLclampf>(c.zNear); c 649 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf zFar = static_cast<GLclampf>(c.zFar); c 656 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DetachShader& c) { c 657 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 658 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint shader = c.shader; c 664 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Disable& c) { c 665 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum cap = static_cast<GLenum>(c.cap); c 676 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DisableVertexAttribArray& c) { c 677 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint index = static_cast<GLuint>(c.index); c 683 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Enable& c) { c 684 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum cap = static_cast<GLenum>(c.cap); c 695 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::EnableVertexAttribArray& c) { c 696 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint index = static_cast<GLuint>(c.index); c 702 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Finish& c) { c 712 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Flush& c) { c 719 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::FramebufferRenderbuffer& c) { c 720 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 721 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum attachment = static_cast<GLenum>(c.attachment); c 722 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum renderbuffertarget = static_cast<GLenum>(c.renderbuffertarget); c 723 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint renderbuffer = c.renderbuffer; c 746 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::FramebufferTexture2D& c) { c 747 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 748 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum attachment = static_cast<GLenum>(c.attachment); c 749 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum textarget = static_cast<GLenum>(c.textarget); c 750 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint texture = c.texture; c 751 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint level = static_cast<GLint>(c.level); c 777 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::FrontFace& c) { c 778 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum mode = static_cast<GLenum>(c.mode); c 792 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenBuffers& c) { c 793 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 799 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.buffers_shm_id, c.buffers_shm_offset, data_size); c 811 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenBuffersImmediate& c) { c 812 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 818 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<GLuint*>(c, data_size, immediate_data_size); c 830 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenerateMipmap& c) { c 831 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 842 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenFramebuffers& c) { c 843 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 849 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.framebuffers_shm_id, c.framebuffers_shm_offset, data_size); c 861 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenFramebuffersImmediate& c) { c 862 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 868 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<GLuint*>(c, data_size, immediate_data_size); c 880 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenRenderbuffers& c) { c 881 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 887 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.renderbuffers_shm_id, c.renderbuffers_shm_offset, data_size); c 899 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenRenderbuffersImmediate& c) { c 900 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 906 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<GLuint*>(c, data_size, immediate_data_size); c 918 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenTextures& c) { c 919 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 925 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.textures_shm_id, c.textures_shm_offset, data_size); c 937 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenTexturesImmediate& c) { c 938 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 944 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<GLuint*>(c, data_size, immediate_data_size); c 956 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetBooleanv& c) { c 957 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 962 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 988 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetBufferParameteriv& c) { c 989 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 990 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 995 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1017 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetError& c) { c 1020 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1030 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetFloatv& c) { c 1031 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1036 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1062 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetFramebufferAttachmentParameteriv& c) { c 1063 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1064 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum attachment = static_cast<GLenum>(c.attachment); c 1065 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1070 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1107 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetIntegerv& c) { c 1108 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1113 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1139 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetProgramiv& c) { c 1140 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 1141 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1146 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1172 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetRenderbufferParameteriv& c) { c 1173 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1174 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1179 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1211 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetShaderiv& c) { c 1212 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint shader = c.shader; c 1213 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1218 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1244 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetTexParameterfv& c) { c 1245 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1246 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1251 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1281 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetTexParameteriv& c) { c 1282 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1283 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1288 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1318 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetVertexAttribfv& c) { c 1319 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint index = static_cast<GLuint>(c.index); c 1320 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1325 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1351 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetVertexAttribiv& c) { c 1352 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint index = static_cast<GLuint>(c.index); c 1353 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1358 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, Result::ComputeSize(num_values)); c 1383 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Hint& c) { c 1384 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1385 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum mode = static_cast<GLenum>(c.mode); c 1414 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsBuffer& c) { c 1415 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint buffer = c.buffer; c 1418 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1428 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsEnabled& c) { c 1429 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum cap = static_cast<GLenum>(c.cap); c 1432 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1446 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsFramebuffer& c) { c 1447 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint framebuffer = c.framebuffer; c 1450 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1460 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsProgram& c) { c 1461 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 1464 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1474 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsRenderbuffer& c) { c 1475 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint renderbuffer = c.renderbuffer; c 1478 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1487 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsShader& c) { c 1488 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint shader = c.shader; c 1491 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1501 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsTexture& c) { c 1502 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint texture = c.texture; c 1505 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 1515 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::LineWidth& c) { c 1516 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat width = static_cast<GLfloat>(c.width); c 1530 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::LinkProgram& c) { c 1531 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 1538 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::PolygonOffset& c) { c 1539 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat factor = static_cast<GLfloat>(c.factor); c 1540 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat units = static_cast<GLfloat>(c.units); c 1552 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ReleaseShaderCompiler& c) { c 1559 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::RenderbufferStorage& c) { c 1560 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1561 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum internalformat = static_cast<GLenum>(c.internalformat); c 1562 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 1563 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 1587 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::SampleCoverage& c) { c 1588 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLclampf value = static_cast<GLclampf>(c.value); c 1589 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean invert = static_cast<GLboolean>(c.invert); c 1595 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Scissor& c) { c 1596 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 1597 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 1598 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 1599 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 1621 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::StencilFunc& c) { c 1622 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum func = static_cast<GLenum>(c.func); c 1623 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint ref = static_cast<GLint>(c.ref); c 1624 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint mask = static_cast<GLuint>(c.mask); c 1645 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::StencilFuncSeparate& c) { c 1646 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum face = static_cast<GLenum>(c.face); c 1647 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum func = static_cast<GLenum>(c.func); c 1648 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint ref = static_cast<GLint>(c.ref); c 1649 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint mask = static_cast<GLuint>(c.mask); c 1687 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::StencilMask& c) { c 1688 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint mask = static_cast<GLuint>(c.mask); c 1700 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::StencilMaskSeparate& c) { c 1701 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum face = static_cast<GLenum>(c.face); c 1702 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint mask = static_cast<GLuint>(c.mask); c 1728 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::StencilOp& c) { c 1729 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum fail = static_cast<GLenum>(c.fail); c 1730 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum zfail = static_cast<GLenum>(c.zfail); c 1731 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum zpass = static_cast<GLenum>(c.zpass); c 1763 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::StencilOpSeparate& c) { c 1764 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum face = static_cast<GLenum>(c.face); c 1765 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum fail = static_cast<GLenum>(c.fail); c 1766 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum zfail = static_cast<GLenum>(c.zfail); c 1767 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum zpass = static_cast<GLenum>(c.zpass); c 1813 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexParameterf& c) { c 1814 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1815 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1816 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat param = static_cast<GLfloat>(c.param); c 1831 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexParameterfv& c) { c 1832 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1833 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1839 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, data_size); c 1857 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexParameterfvImmediate& c) { c 1858 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1859 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1868 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 1886 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexParameteri& c) { c 1887 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1888 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1889 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint param = static_cast<GLint>(c.param); c 1904 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexParameteriv& c) { c 1905 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1906 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1912 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.params_shm_id, c.params_shm_offset, data_size); c 1930 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexParameterivImmediate& c) { c 1931 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 1932 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum pname = static_cast<GLenum>(c.pname); c 1941 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLint*>(c, data_size, immediate_data_size); c 1959 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform1f& c) { c 1960 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 1961 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 1969 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform1fv& c) { c 1970 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 1971 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 1977 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLfloat*>(c.v_shm_id, c.v_shm_offset, data_size); c 1987 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform1fvImmediate& c) { c 1988 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 1989 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 1998 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2008 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform1i& c) { c 2009 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2010 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 2017 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform1iv& c) { c 2018 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2019 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2025 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLint*>(c.v_shm_id, c.v_shm_offset, data_size); c 2035 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform1ivImmediate& c) { c 2036 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2037 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2046 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLint*>(c, data_size, immediate_data_size); c 2056 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform2f& c) { c 2057 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2058 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2059 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat y = static_cast<GLfloat>(c.y); c 2067 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform2fv& c) { c 2068 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2069 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2075 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLfloat*>(c.v_shm_id, c.v_shm_offset, data_size); c 2085 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform2fvImmediate& c) { c 2086 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2087 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2096 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2106 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform2i& c) { c 2107 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2108 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 2109 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 2117 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform2iv& c) { c 2118 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2119 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2125 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLint*>(c.v_shm_id, c.v_shm_offset, data_size); c 2135 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform2ivImmediate& c) { c 2136 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2137 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2146 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLint*>(c, data_size, immediate_data_size); c 2156 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform3f& c) { c 2157 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2158 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2159 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat y = static_cast<GLfloat>(c.y); c 2160 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat z = static_cast<GLfloat>(c.z); c 2168 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform3fv& c) { c 2169 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2170 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2176 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLfloat*>(c.v_shm_id, c.v_shm_offset, data_size); c 2186 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform3fvImmediate& c) { c 2187 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2188 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2197 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2207 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform3i& c) { c 2208 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2209 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 2210 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 2211 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint z = static_cast<GLint>(c.z); c 2219 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform3iv& c) { c 2220 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2221 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2227 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLint*>(c.v_shm_id, c.v_shm_offset, data_size); c 2237 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform3ivImmediate& c) { c 2238 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2239 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2248 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLint*>(c, data_size, immediate_data_size); c 2258 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform4f& c) { c 2259 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2260 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2261 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat y = static_cast<GLfloat>(c.y); c 2262 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat z = static_cast<GLfloat>(c.z); c 2263 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat w = static_cast<GLfloat>(c.w); c 2271 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform4fv& c) { c 2272 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2273 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2279 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLfloat*>(c.v_shm_id, c.v_shm_offset, data_size); c 2289 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform4fvImmediate& c) { c 2290 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2291 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2300 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2310 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform4i& c) { c 2311 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2312 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 2313 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 2314 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint z = static_cast<GLint>(c.z); c 2315 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint w = static_cast<GLint>(c.w); c 2323 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform4iv& c) { c 2324 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2325 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2331 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetSharedMemoryAs<const GLint*>(c.v_shm_id, c.v_shm_offset, data_size); c 2341 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Uniform4ivImmediate& c) { c 2342 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2343 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2352 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLint*>(c, data_size, immediate_data_size); c 2362 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UniformMatrix2fv& c) { c 2363 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2364 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2365 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean transpose = static_cast<GLboolean>(c.transpose); c 2371 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.value_shm_id, c.value_shm_offset, data_size); c 2386 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UniformMatrix2fvImmediate& c) { c 2387 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2388 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2389 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean transpose = static_cast<GLboolean>(c.transpose); c 2398 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2413 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UniformMatrix3fv& c) { c 2414 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2415 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2416 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean transpose = static_cast<GLboolean>(c.transpose); c 2422 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.value_shm_id, c.value_shm_offset, data_size); c 2437 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UniformMatrix3fvImmediate& c) { c 2438 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2439 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2440 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean transpose = static_cast<GLboolean>(c.transpose); c 2449 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2464 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UniformMatrix4fv& c) { c 2465 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2466 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2467 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean transpose = static_cast<GLboolean>(c.transpose); c 2473 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.value_shm_id, c.value_shm_offset, data_size); c 2488 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UniformMatrix4fvImmediate& c) { c 2489 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint location = static_cast<GLint>(c.location); c 2490 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 2491 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLboolean transpose = static_cast<GLboolean>(c.transpose); c 2500 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2515 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::UseProgram& c) { c 2516 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 2523 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ValidateProgram& c) { c 2524 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint program = c.program; c 2531 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib1f& c) { c 2532 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2533 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2540 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib1fv& c) { c 2541 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2547 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.values_shm_id, c.values_shm_offset, data_size); c 2557 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib1fvImmediate& c) { c 2558 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2567 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2577 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib2f& c) { c 2578 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2579 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2580 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat y = static_cast<GLfloat>(c.y); c 2587 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib2fv& c) { c 2588 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2594 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.values_shm_id, c.values_shm_offset, data_size); c 2604 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib2fvImmediate& c) { c 2605 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2614 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2624 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib3f& c) { c 2625 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2626 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2627 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat y = static_cast<GLfloat>(c.y); c 2628 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat z = static_cast<GLfloat>(c.z); c 2635 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib3fv& c) { c 2636 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2642 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.values_shm_id, c.values_shm_offset, data_size); c 2652 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib3fvImmediate& c) { c 2653 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2662 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2672 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib4f& c) { c 2673 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2674 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat x = static_cast<GLfloat>(c.x); c 2675 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat y = static_cast<GLfloat>(c.y); c 2676 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat z = static_cast<GLfloat>(c.z); c 2677 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLfloat w = static_cast<GLfloat>(c.w); c 2684 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib4fv& c) { c 2685 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2691 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.values_shm_id, c.values_shm_offset, data_size); c 2701 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::VertexAttrib4fvImmediate& c) { c 2702 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint indx = static_cast<GLuint>(c.indx); c 2711 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); c 2720 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::Viewport& c) { c 2721 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint x = static_cast<GLint>(c.x); c 2722 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint y = static_cast<GLint>(c.y); c 2723 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 2724 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 2739 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BlitFramebufferCHROMIUM& c) { c 2747 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint srcX0 = static_cast<GLint>(c.srcX0); c 2748 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint srcY0 = static_cast<GLint>(c.srcY0); c 2749 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint srcX1 = static_cast<GLint>(c.srcX1); c 2750 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint srcY1 = static_cast<GLint>(c.srcY1); c 2751 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint dstX0 = static_cast<GLint>(c.dstX0); c 2752 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint dstY0 = static_cast<GLint>(c.dstY0); c 2753 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint dstX1 = static_cast<GLint>(c.dstX1); c 2754 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint dstY1 = static_cast<GLint>(c.dstY1); c 2755 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLbitfield mask = static_cast<GLbitfield>(c.mask); c 2756 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum filter = static_cast<GLenum>(c.filter); c 2769 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::RenderbufferStorageMultisampleCHROMIUM& c) { c 2770 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 2771 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei samples = static_cast<GLsizei>(c.samples); c 2772 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum internalformat = static_cast<GLenum>(c.internalformat); c 2773 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 2774 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 2811 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::RenderbufferStorageMultisampleEXT& c) { c 2812 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 2813 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei samples = static_cast<GLsizei>(c.samples); c 2814 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum internalformat = static_cast<GLenum>(c.internalformat); c 2815 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 2816 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 2850 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::FramebufferTexture2DMultisampleEXT& c) { c 2851 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 2852 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum attachment = static_cast<GLenum>(c.attachment); c 2853 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum textarget = static_cast<GLenum>(c.textarget); c 2854 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint texture = c.texture; c 2855 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint level = static_cast<GLint>(c.level); c 2856 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei samples = static_cast<GLsizei>(c.samples); c 2891 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexStorage2DEXT& c) { c 2892 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 2893 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei levels = static_cast<GLsizei>(c.levels); c 2894 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum internalFormat = static_cast<GLenum>(c.internalFormat); c 2895 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 2896 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 2924 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenQueriesEXT& c) { c 2925 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 2931 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.queries_shm_id, c.queries_shm_offset, data_size); c 2943 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenQueriesEXTImmediate& c) { c 2944 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 2950 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<GLuint*>(c, data_size, immediate_data_size); c 2962 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteQueriesEXT& c) { c 2963 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 2969 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.queries_shm_id, c.queries_shm_offset, data_size); c 2979 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteQueriesEXTImmediate& c) { c 2980 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 2986 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLuint*>(c, data_size, immediate_data_size); c 2996 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::InsertEventMarkerEXT& c) { c 2997 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint bucket_id = static_cast<GLuint>(c.bucket_id); c 3012 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::PushGroupMarkerEXT& c) { c 3013 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint bucket_id = static_cast<GLuint>(c.bucket_id); c 3028 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::PopGroupMarkerEXT& c) { c 3035 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenVertexArraysOES& c) { c 3036 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 3042 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.arrays_shm_id, c.arrays_shm_offset, data_size); c 3054 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GenVertexArraysOESImmediate& c) { c 3055 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 3061 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<GLuint*>(c, data_size, immediate_data_size); c 3073 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteVertexArraysOES& c) { c 3074 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 3080 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.arrays_shm_id, c.arrays_shm_offset, data_size); c 3090 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DeleteVertexArraysOESImmediate& c) { c 3091 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei n = static_cast<GLsizei>(c.n); c 3097 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLuint*>(c, data_size, immediate_data_size); c 3107 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::IsVertexArrayOES& c) { c 3108 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint array = c.array; c 3111 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 3121 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BindVertexArrayOES& c) { c 3122 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint array = c.array; c 3129 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::SwapBuffers& c) { c 3136 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::GetMaxValueInBufferCHROMIUM& c) { c 3137 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint buffer_id = c.buffer_id; c 3138 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 3139 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum type = static_cast<GLenum>(c.type); c 3140 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint offset = static_cast<GLuint>(c.offset); c 3143 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.result_shm_id, c.result_shm_offset, sizeof(*result_dst)); c 3163 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TexImageIOSurface2DCHROMIUM& c) { c 3164 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3165 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei width = static_cast<GLsizei>(c.width); c 3166 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei height = static_cast<GLsizei>(c.height); c 3167 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint ioSurfaceId = static_cast<GLuint>(c.ioSurfaceId); c 3168 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLuint plane = static_cast<GLuint>(c.plane); c 3190 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::CopyTextureCHROMIUM& c) { c 3191 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3192 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum source_id = static_cast<GLenum>(c.source_id); c 3193 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum dest_id = static_cast<GLenum>(c.dest_id); c 3194 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint level = static_cast<GLint>(c.level); c 3195 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint internalformat = static_cast<GLint>(c.internalformat); c 3196 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum dest_type = static_cast<GLenum>(c.dest_type); c 3215 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ProduceTextureCHROMIUM& c) { c 3216 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3222 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.mailbox_shm_id, c.mailbox_shm_offset, data_size); c 3237 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ProduceTextureCHROMIUMImmediate& c) { c 3238 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3247 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLbyte*>(c, data_size, immediate_data_size); c 3262 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ConsumeTextureCHROMIUM& c) { c 3263 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3269 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.mailbox_shm_id, c.mailbox_shm_offset, data_size); c 3284 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ConsumeTextureCHROMIUMImmediate& c) { c 3285 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3294 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLbyte*>(c, data_size, immediate_data_size); c 3309 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::BindTexImage2DCHROMIUM& c) { c 3310 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3311 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint imageId = static_cast<GLint>(c.imageId); c 3323 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::ReleaseTexImage2DCHROMIUM& c) { c 3324 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3325 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLint imageId = static_cast<GLint>(c.imageId); c 3337 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::TraceEndCHROMIUM& c) { c 3344 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DiscardFramebufferEXT& c) { c 3345 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3346 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 3352 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.attachments_shm_id, c.attachments_shm_offset, data_size); c 3367 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DiscardFramebufferEXTImmediate& c) { c 3368 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLenum target = static_cast<GLenum>(c.target); c 3369 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 3378 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLenum*>(c, data_size, immediate_data_size); c 3393 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DrawBuffersEXT& c) { c 3394 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 3400 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h c.bufs_shm_id, c.bufs_shm_offset, data_size); c 3414 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h const gles2::cmds::DrawBuffersEXTImmediate& c) { c 3415 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GLsizei count = static_cast<GLsizei>(c.count); c 3424 gpu/command_buffer/service/gles2_cmd_decoder_autogen.h GetImmediateDataAs<const GLenum*>(c, data_size, immediate_data_size); c 142 gpu/tools/compositor_model_bench/render_model_utils.cc for (int c = 0; c < 4; ++c) { c 143 gpu/tools/compositor_model_bench/render_model_utils.cc random_color[c] = std::rand() % 255; c 149 gpu/tools/compositor_model_bench/render_model_utils.cc for (int c = 0; c < bytes_per_pixel; ++c) { c 151 gpu/tools/compositor_model_bench/render_model_utils.cc uint8 v = on ? random_color[c] : ~random_color[c]; c 152 gpu/tools/compositor_model_bench/render_model_utils.cc (image_data_[imgID])[pix_addr + c] = v; c 185 gpu/tools/compositor_model_bench/render_tree.cc bool InterpretCommonContents(base::DictionaryValue* node, RenderNode* c) { c 199 gpu/tools/compositor_model_bench/render_tree.cc c->set_layerID(layerID); c 202 gpu/tools/compositor_model_bench/render_tree.cc c->set_width(width); c 205 gpu/tools/compositor_model_bench/render_tree.cc c->set_height(height); c 208 gpu/tools/compositor_model_bench/render_tree.cc c->set_drawsContent(drawsContent); c 211 gpu/tools/compositor_model_bench/render_tree.cc c->set_targetSurface(targetSurface); c 227 gpu/tools/compositor_model_bench/render_tree.cc c->set_transform(transform_mat); c 244 gpu/tools/compositor_model_bench/render_tree.cc c->set_tile_width(tile_width); c 247 gpu/tools/compositor_model_bench/render_tree.cc c->set_tile_height(tile_height); c 273 gpu/tools/compositor_model_bench/render_tree.cc c->add_tile(t); c 279 gpu/tools/compositor_model_bench/render_tree.cc bool InterpretCCData(base::DictionaryValue* node, CCNode* c) { c 290 gpu/tools/compositor_model_bench/render_tree.cc c->set_vertex_shader(ShaderIDFromString(vertex_shader_name)); c 291 gpu/tools/compositor_model_bench/render_tree.cc c->set_fragment_shader(ShaderIDFromString(fragment_shader_name)); c 315 gpu/tools/compositor_model_bench/render_tree.cc LOG(ERROR) << "Unrecognized texture format in layer " << c->layerID() << c 321 gpu/tools/compositor_model_bench/render_tree.cc c->add_texture(t); c 324 gpu/tools/compositor_model_bench/render_tree.cc if (c->vertex_shader() == SHADER_UNRECOGNIZED) { c 325 gpu/tools/compositor_model_bench/render_tree.cc LOG(ERROR) << "Unrecognized vertex shader name, layer " << c->layerID() << c 330 gpu/tools/compositor_model_bench/render_tree.cc if (c->fragment_shader() == SHADER_UNRECOGNIZED) { c 331 gpu/tools/compositor_model_bench/render_tree.cc LOG(ERROR) << "Unrecognized fragment shader name, layer " << c->layerID() << c 487 ipc/ipc_message_macros.h (obj->*func)(*msg, p.a, p.b, p.c); \ c 493 ipc/ipc_message_macros.h static bool Read(const IPC::Message* msg, TA* a, TB* b, TC* c) { \ c 499 ipc/ipc_message_macros.h *c = p.c; \ c 510 ipc/ipc_message_macros.h (obj->*func)(*msg, p.a, p.b, p.c, p.d); \ c 516 ipc/ipc_message_macros.h static bool Read(const IPC::Message* msg, TA* a, TB* b, TC* c, TD* d) { \ c 522 ipc/ipc_message_macros.h *c = p.c; \ c 534 ipc/ipc_message_macros.h (obj->*func)(*msg, p.a, p.b, p.c, p.d, p.e); \ c 540 ipc/ipc_message_macros.h static bool Read(const IPC::Message* msg, TA* a, TB* b, TC* c, TD* d, \ c 547 ipc/ipc_message_macros.h *c = p.c; \ c 587 ipc/ipc_message_macros.h static void WriteReplyParams(Message* reply, TA a, TB b, TC c) { \ c 588 ipc/ipc_message_macros.h Schema::WriteReplyParams(reply, a, b, c); \ c 593 ipc/ipc_message_macros.h static void WriteReplyParams(Message* reply, TA a, TB b, TC c, TD d) { \ c 594 ipc/ipc_message_macros.h Schema::WriteReplyParams(reply, a, b, c, d); \ c 599 ipc/ipc_message_macros.h static void WriteReplyParams(Message* reply, TA a, TB b, TC c, TD d, TE e) { \ c 600 ipc/ipc_message_macros.h Schema::WriteReplyParams(reply, a, b, c, d, e); \ c 571 ipc/ipc_message_utils.h WriteParam(m, p.c); c 576 ipc/ipc_message_utils.h ReadParam(m, iter, &r->c)); c 583 ipc/ipc_message_utils.h LogParam(p.c, l); c 593 ipc/ipc_message_utils.h WriteParam(m, p.c); c 599 ipc/ipc_message_utils.h ReadParam(m, iter, &r->c) && c 607 ipc/ipc_message_utils.h LogParam(p.c, l); c 619 ipc/ipc_message_utils.h WriteParam(m, p.c); c 626 ipc/ipc_message_utils.h ReadParam(m, iter, &r->c) && c 635 ipc/ipc_message_utils.h LogParam(p.c, l); c 903 ipc/ipc_message_utils.h static void WriteReplyParams(Message* reply, TA a, TB b, TC c) { c 904 ipc/ipc_message_utils.h ReplyParam p(a, b, c); c 909 ipc/ipc_message_utils.h static void WriteReplyParams(Message* reply, TA a, TB b, TC c, TD d) { c 910 ipc/ipc_message_utils.h ReplyParam p(a, b, c, d); c 915 ipc/ipc_message_utils.h static void WriteReplyParams(Message* reply, TA a, TB b, TC c, TD d, TE e) { c 916 ipc/ipc_message_utils.h ReplyParam p(a, b, c, d, e); c 254 ipc/ipc_send_fds_test.cc static void DestroyChannel(scoped_ptr<IPC::Channel> *c, c 256 ipc/ipc_send_fds_test.cc c->reset(0); c 199 ipc/ipc_sync_channel.cc QueuedMessage(Message* m, SyncContext* c) : message(m), context(c) { } c 18 media/base/container_names.cc #define TAG(a, b, c, d) \ c 20 media/base/container_names.cc (static_cast<uint8>(c) << 8) | (static_cast<uint8>(d))) c 1158 media/base/container_names.cc char c = static_cast<char>(buffer[(*offset)++]); c 1159 media/base/container_names.cc return (c == c1 || (c == c2 && c2 != 0)); c 46 media/base/media_file_checker.cc AVCodecContext* c = format_context->streams[i]->codec; c 47 media/base/media_file_checker.cc if (c->codec_type == AVMEDIA_TYPE_AUDIO || c 48 media/base/media_file_checker.cc c->codec_type == AVMEDIA_TYPE_VIDEO) { c 49 media/base/media_file_checker.cc AVCodec* codec = avcodec_find_decoder(c->codec_id); c 50 media/base/media_file_checker.cc if (codec && avcodec_open2(c, codec, NULL) >= 0) c 51 media/base/media_file_checker.cc stream_contexts[i] = c; c 28 media/cast/audio_receiver/audio_decoder_unittest.cc TestScenario(transport::AudioCodec c, int n, int s) c 29 media/cast/audio_receiver/audio_decoder_unittest.cc : codec(c), num_channels(n), sampling_rate(s) {} c 470 media/cast/rtcp/rtcp_utility.cc uint8 c; c 471 media/cast/rtcp/rtcp_utility.cc big_endian_reader.ReadU8(&c); c 472 media/cast/rtcp/rtcp_utility.cc if ((c < ' ') || (c > '{') || (c == '%') || (c == '\\')) { c 478 media/cast/rtcp/rtcp_utility.cc field_.c_name.name[i] = c; c 43 media/filters/audio_file_reader.cc AVCodecContext* c = format_context->streams[i]->codec; c 44 media/filters/audio_file_reader.cc if (c->codec_type == AVMEDIA_TYPE_AUDIO) { c 45 media/filters/audio_file_reader.cc codec_context_ = c; c 96 media/filters/wsola_internals.cc float c = y_values[1]; c 104 media/filters/wsola_internals.cc *extremum_value = a * (*extremum) * (*extremum) + b * (*extremum) + c; c 51 media/formats/mp4/box_reader_unittest.cc uint16 c; c 62 media/formats/mp4/box_reader_unittest.cc reader->Read2(&c) && c 99 media/formats/mp4/box_reader_unittest.cc EXPECT_EQ(0x0708, box.c); c 33 media/formats/mpeg/mpeg_audio_stream_parser_base.cc char c = buf[i]; c 34 media/formats/mpeg/mpeg_audio_stream_parser_base.cc if (c == '\n') { c 38 media/formats/mpeg/mpeg_audio_stream_parser_base.cc } else if (c != '\r' || last_c != '\n') { c 41 media/formats/mpeg/mpeg_audio_stream_parser_base.cc last_c = c; c 297 media/formats/webm/chromeos/webm_encoder.cc uint8 c = *buffer >> (i * CHAR_BIT); c 298 media/formats/webm/chromeos/webm_encoder.cc EbmlWrite(&c, 1); c 31 mojo/common/test/multiprocess_test_helper_unittest.cc bool WriteByte(const embedder::PlatformHandle& handle, char c) { c 33 mojo/common/test/multiprocess_test_helper_unittest.cc BlockingWrite(handle, &c, 1, &bytes_written); c 37 mojo/common/test/multiprocess_test_helper_unittest.cc bool ReadByte(const embedder::PlatformHandle& handle, char* c) { c 39 mojo/common/test/multiprocess_test_helper_unittest.cc BlockingRead(handle, c, 1, &bytes_read); c 77 mojo/common/test/multiprocess_test_helper_unittest.cc const char c = 'X'; c 78 mojo/common/test/multiprocess_test_helper_unittest.cc EXPECT_TRUE(WriteByte(handle.get(), c)); c 83 mojo/common/test/multiprocess_test_helper_unittest.cc EXPECT_EQ(c + 1, d); c 86 mojo/common/test/multiprocess_test_helper_unittest.cc EXPECT_EQ(c + 2, helper.WaitForChildShutdown()); c 100 mojo/common/test/multiprocess_test_helper_unittest.cc char c = 0; c 101 mojo/common/test/multiprocess_test_helper_unittest.cc EXPECT_TRUE(ReadByte(handle.get(), &c)); c 104 mojo/common/test/multiprocess_test_helper_unittest.cc c++; c 105 mojo/common/test/multiprocess_test_helper_unittest.cc EXPECT_TRUE(WriteByte(handle.get(), c)); c 108 mojo/common/test/multiprocess_test_helper_unittest.cc c++; c 109 mojo/common/test/multiprocess_test_helper_unittest.cc return static_cast<int>(c); c 114 mojo/public/cpp/bindings/tests/sample_service_unittest.cc EXPECT_FALSE(foo.c()); c 218 mojo/public/cpp/bindings/tests/sample_service_unittest.cc Print(depth, "c", foo.c()); c 81 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc String c(static_cast<const char*>(kText)); c 85 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc EXPECT_EQ(std::string(kText), c.To<std::string>()); c 40 native_client_sdk/src/examples/demo/drive/drive.cc char c = s[i]; c 41 native_client_sdk/src/examples/demo/drive/drive.cc if (isalpha(c) || isdigit(c) || strchr("-_.!~*'()", c)) { c 42 native_client_sdk/src/examples/demo/drive/drive.cc result += c; c 45 native_client_sdk/src/examples/demo/drive/drive.cc result += hex[(c >> 4) & 0xf]; c 46 native_client_sdk/src/examples/demo/drive/drive.cc result += hex[c & 0xf]; c 62 native_client_sdk/src/examples/demo/earth/earth.cc inline float ExtractR(uint32_t c) { c 63 native_client_sdk/src/examples/demo/earth/earth.cc return static_cast<float>(c & 0xFF) * kOneOver255; c 66 native_client_sdk/src/examples/demo/earth/earth.cc inline float ExtractG(uint32_t c) { c 67 native_client_sdk/src/examples/demo/earth/earth.cc return static_cast<float>((c & 0xFF00) >> 8) * kOneOver255; c 70 native_client_sdk/src/examples/demo/earth/earth.cc inline float ExtractB(uint32_t c) { c 71 native_client_sdk/src/examples/demo/earth/earth.cc return static_cast<float>((c & 0xFF0000) >> 16) * kOneOver255; c 414 native_client_sdk/src/examples/demo/earth/earth.cc float c = planet_xyz_eye_xyz + c 417 native_client_sdk/src/examples/demo/earth/earth.cc float disc = b * b - 4.0f * a * c; c 50 native_client_sdk/src/examples/tutorial/debugging/debugging.c void layer3(int a, int b, int c) { layer4(a + b + c); } c 56 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc inline float ExtractR(uint32_t c) { c 57 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc return static_cast<float>(c & 0xFF) * kOneOver255; c 60 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc inline float ExtractG(uint32_t c) { c 61 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc return static_cast<float>((c & 0xFF00) >> 8) * kOneOver255; c 64 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc inline float ExtractB(uint32_t c) { c 65 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc return static_cast<float>((c & 0xFF0000) >> 16) * kOneOver255; c 452 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float c = planet_xyz_eye_xyz + c 455 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc float disc = b * b - 4.0f * a * c; c 173 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc char c = buffer[i]; c 175 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc if (c == '\r') { c 179 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc c = '\n'; c 180 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc } else if (c == '\n') { c 182 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc c = '\r'; c 190 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc if (IS_ECHOE && c == termios_.c_cc[VERASE]) { c 206 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc } else if (IS_ECHO || (IS_ECHONL && c == '\n')) { c 207 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc if (c == termios_.c_cc[VEOF]) { c 211 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc } else if (c != '\n' && iscntrl(c) && IS_ECHOCTL) { c 214 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc char visible_char = c + 0x40; c 218 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc Echo(&c, 1); c 224 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc input_buffer_.push_back(c); c 226 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc if (c == '\n' || c == termios_.c_cc[VEOF] || !IS_ICANON) c 36 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc char c = s[i]; c 37 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc result += upper ? toupper(c) : tolower(c); c 38 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc upper = c == '-'; c 20 native_client_sdk/src/libraries/sdk_util/string_util.h char c, c 26 native_client_sdk/src/libraries/sdk_util/string_util.h if (i == size || str[i] == c) { c 898 native_client_sdk/src/libraries/third_party/pthreads-win32/implement.h # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_64(p,v,c) InterlockedCompareExchange64(PTW32_TO_VLONG64PTR(p),(v),(c)) c 919 native_client_sdk/src/libraries/third_party/pthreads-win32/implement.h # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR(p,v,c) InterlockedCompareExchangePointer((p),(v),(c)) c 924 native_client_sdk/src/libraries/third_party/pthreads-win32/implement.h # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE(p,v,c) PTW32_INTERLOCKED_COMPARE_EXCHANGE_64(PTW32_TO_VLONG64PTR(p),(v),(c)) c 930 native_client_sdk/src/libraries/third_party/pthreads-win32/implement.h # define PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE(p,v,c) PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG((p),(v),(c)) c 42 native_client_sdk/src/libraries/xray/hashtable.c size_t c; c 46 native_client_sdk/src/libraries/xray/hashtable.c for (c = 0; c < sizeof(y); ++c) { c 47 native_client_sdk/src/libraries/xray/hashtable.c z = s[c]; c 86 native_client_sdk/src/libraries/xray/stringpool.c struct XRayStringPoolNode* c = n; c 88 native_client_sdk/src/libraries/xray/stringpool.c XRayFree(c); c 102 native_client_sdk/src/libraries/xray/symtable.c struct XRaySymbolPoolNode* c = n; c 104 native_client_sdk/src/libraries/xray/symtable.c XRayFree(c); c 234 native_client_sdk/src/tests/nacl_io_test/tty_test.cc char c; c 235 native_client_sdk/src/tests/nacl_io_test/tty_test.cc ASSERT_EQ(1, ki_read(tty_fd, &c, 1)); c 236 native_client_sdk/src/tests/nacl_io_test/tty_test.cc ASSERT_EQ('a', c); c 32 net/base/escape.cc bool Contains(unsigned char c) const { c 33 net/base/escape.cc return ((map[c >> 5] & (1 << (c & 31))) != 0); c 48 net/base/escape.cc unsigned char c = static_cast<unsigned char>(text[i]); c 49 net/base/escape.cc if (use_plus && ' ' == c) { c 51 net/base/escape.cc } else if (charmap.Contains(c)) { c 53 net/base/escape.cc escaped.push_back(IntToHex(c >> 4)); c 54 net/base/escape.cc escaped.push_back(IntToHex(c & 0xf)); c 56 net/base/escape.cc escaped.push_back(c); c 239 net/base/escape.cc void AppendEscapedCharForHTMLImpl(typename str::value_type c, str* output) { c 252 net/base/escape.cc if (c == kCharsToEscape[k].key) { c 260 net/base/escape.cc output->push_back(c); c 328 net/base/escape.cc void AppendEscapedCharForHTML(char c, std::string* output) { c 329 net/base/escape.cc AppendEscapedCharForHTMLImpl(c, output); c 50 net/base/escape.h NET_EXPORT void AppendEscapedCharForHTML(char c, std::string* output); c 203 net/base/int128_unittest.cc uint128 a, b, c; c 208 net/base/int128_unittest.cc c = a * b; c 209 net/base/int128_unittest.cc EXPECT_EQ(0, c); c 214 net/base/int128_unittest.cc c = a * b; c 215 net/base/int128_unittest.cc EXPECT_EQ(1, c); c 218 net/base/int128_unittest.cc c = uint128(0) - 1; c 219 net/base/int128_unittest.cc c *= c; c 220 net/base/int128_unittest.cc EXPECT_EQ(1, c); c 227 net/base/int128_unittest.cc c = a * b; c 228 net/base/int128_unittest.cc EXPECT_EQ(uint128(1) << (i+j), c); c 237 net/base/int128_unittest.cc c = a * b; c 239 net/base/int128_unittest.cc GG_ULONGLONG(0xBF25975319080000)), c); c 240 net/base/int128_unittest.cc EXPECT_EQ(0, c - b * a); c 248 net/base/int128_unittest.cc c = a * b; c 250 net/base/int128_unittest.cc GG_ULONGLONG(0x342d0bbf48948200)), c); c 251 net/base/int128_unittest.cc EXPECT_EQ(0, c - b * a); c 1113 net/base/net_util.cc inline bool IsHostCharAlphanumeric(char c) { c 1116 net/base/net_util.cc return ((c >= 'a') && (c <= 'z')) || ((c >= '0') && (c <= '9')); c 1129 net/base/net_util.cc const char c = *i; c 1131 net/base/net_util.cc most_recent_component_started_alphanumeric = IsHostCharAlphanumeric(c); c 1132 net/base/net_util.cc if (!most_recent_component_started_alphanumeric && (c != '-')) c 1136 net/base/net_util.cc if (c == '.') { c 1140 net/base/net_util.cc } else if (IsHostCharAlphanumeric(c) || (c == '-')) { c 1142 net/base/net_util.cc } else if (c == '_') { c 206 net/cert/x509_certificate.cc char c, c 209 net/cert/x509_certificate.cc size_t pos = src.find(c); c 27 net/cookies/cookie_monster_perftest.cc int CountInString(const std::string& str, char c) { c 28 net/cookies/cookie_monster_perftest.cc return std::count(str.begin(), str.end(), c); c 419 net/cookies/cookie_monster_unittest.cc int CountInString(const std::string& str, char c) { c 420 net/cookies/cookie_monster_unittest.cc return std::count(str.begin(), str.end(), c); c 68 net/cookies/parsed_cookie.cc inline bool CharIsA(const char c, const char* chars) { c 69 net/cookies/parsed_cookie.cc return strchr(chars, c) != NULL; c 139 net/cookies/parsed_cookie.cc bool IsControlCharacter(unsigned char c) { c 140 net/cookies/parsed_cookie.cc return (c >= 0) && (c <= 31); c 369 net/ftp/ftp_network_transaction.cc CompletionCallback c = user_callback_; c 371 net/ftp/ftp_network_transaction.cc c.Run(rv); c 552 net/http/http_auth_controller.cc CompletionCallback c = callback_; c 554 net/http/http_auth_controller.cc c.Run(result); c 171 net/http/http_auth_handler_ntlm_portable.cc #define LogBuf(a, b, c) ((void) 0) c 172 net/http/http_auth_handler_ntlm_portable.cc #define LogToken(a, b, c) ((void) 0) c 574 net/http/http_cache_transaction.cc CompletionCallback c = callback_; c 576 net/http/http_cache_transaction.cc c.Run(rv); c 675 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context()); c 676 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 679 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 681 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 691 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 692 net/http/http_cache_unittest.cc c.reset(); c 720 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context()); c 721 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 725 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 726 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 1279 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1281 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1282 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1283 net/http/http_cache_unittest.cc EXPECT_EQ(net::LOAD_STATE_IDLE, c->trans->GetLoadState()); c 1285 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1286 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1291 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1292 net/http/http_cache_unittest.cc EXPECT_EQ(net::LOAD_STATE_WAITING_FOR_CACHE, c->trans->GetLoadState()); c 1308 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1309 net/http/http_cache_unittest.cc EXPECT_EQ(net::LOAD_STATE_IDLE, c->trans->GetLoadState()); c 1313 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1314 net/http/http_cache_unittest.cc if (c->result == net::ERR_IO_PENDING) c 1315 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1316 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1326 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1327 net/http/http_cache_unittest.cc delete c; c 1347 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1349 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1350 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1356 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1357 net/http/http_cache_unittest.cc this_request, c->callback.callback(), net::BoundNetLog()); c 1370 net/http/http_cache_unittest.cc Context* c = context_list[0]; c 1371 net/http/http_cache_unittest.cc ASSERT_EQ(net::ERR_IO_PENDING, c->result); c 1372 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1373 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1382 net/http/http_cache_unittest.cc c = context_list[1]; c 1383 net/http/http_cache_unittest.cc ASSERT_EQ(net::ERR_IO_PENDING, c->result); c 1384 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1385 net/http/http_cache_unittest.cc if (c->result == net::OK) c 1386 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1393 net/http/http_cache_unittest.cc c = context_list[2]; c 1394 net/http/http_cache_unittest.cc c->trans.reset(); c 1397 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1398 net/http/http_cache_unittest.cc if (c->result == net::ERR_IO_PENDING) c 1399 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1400 net/http/http_cache_unittest.cc if (c->result == net::OK) c 1401 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1411 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1412 net/http/http_cache_unittest.cc delete c; c 1432 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1434 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1435 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1441 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1442 net/http/http_cache_unittest.cc this_request, c->callback.callback(), net::BoundNetLog()); c 1457 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1458 net/http/http_cache_unittest.cc ASSERT_EQ(net::ERR_IO_PENDING, c->result); c 1459 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1460 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1480 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1482 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1483 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1485 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1486 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1503 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1504 net/http/http_cache_unittest.cc if (c->result == net::ERR_IO_PENDING) c 1505 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1506 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kFastNoStoreGET_Transaction); c 1507 net/http/http_cache_unittest.cc delete c; c 1527 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1529 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1530 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1532 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1533 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1547 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1548 net/http/http_cache_unittest.cc if (c->result == net::ERR_IO_PENDING) c 1549 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 1552 net/http/http_cache_unittest.cc delete c; c 1559 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1560 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1570 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1571 net/http/http_cache_unittest.cc delete c; c 1587 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1589 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1590 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1592 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1593 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1614 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1615 net/http/http_cache_unittest.cc if (c) { c 1616 net/http/http_cache_unittest.cc c->result = c->callback.GetResult(c->result); c 1617 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1638 net/http/http_cache_unittest.cc Context* c = new Context(); c 1640 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1641 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1643 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1644 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1645 net/http/http_cache_unittest.cc EXPECT_EQ(net::ERR_IO_PENDING, c->result); c 1650 net/http/http_cache_unittest.cc delete c; c 1668 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1670 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1671 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1673 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1674 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1686 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1687 net/http/http_cache_unittest.cc c->result = c->callback.GetResult(c->result); c 1688 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction); c 1744 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1746 net/http/http_cache_unittest.cc c->result = cache->CreateTransaction(&c->trans); c 1747 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1749 net/http/http_cache_unittest.cc c->result = c->trans->Start( c 1750 net/http/http_cache_unittest.cc &request, c->callback.callback(), net::BoundNetLog()); c 1783 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1785 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1786 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1829 net/http/http_cache_unittest.cc Context* c = context_list[i]; c 1831 net/http/http_cache_unittest.cc c->result = cache.CreateTransaction(&c->trans); c 1832 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1876 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context()); c 1877 net/http/http_cache_unittest.cc c->result = cache->CreateTransaction(&c->trans); c 1878 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1880 net/http/http_cache_unittest.cc c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 1886 net/http/http_cache_unittest.cc EXPECT_FALSE(c->callback.have_result()); c 1914 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context()); c 1915 net/http/http_cache_unittest.cc c->result = cache->CreateTransaction(&c->trans); c 1916 net/http/http_cache_unittest.cc ASSERT_EQ(net::OK, c->result); c 1918 net/http/http_cache_unittest.cc c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 1929 net/http/http_cache_unittest.cc EXPECT_FALSE(c->callback.have_result()); c 1937 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(c->result)); c 4290 net/http/http_cache_unittest.cc Context* c = new Context(); c 4291 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4294 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4296 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4304 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4306 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4310 net/http/http_cache_unittest.cc delete c; c 4329 net/http/http_cache_unittest.cc Context* c = new Context(); c 4330 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4333 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4335 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4344 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4345 net/http/http_cache_unittest.cc EXPECT_EQ(5, c->callback.GetResult(rv)); c 4346 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4350 net/http/http_cache_unittest.cc delete c; c 4374 net/http/http_cache_unittest.cc Context* c = new Context(); c 4375 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4378 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4380 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4389 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4390 net/http/http_cache_unittest.cc EXPECT_EQ(5, c->callback.GetResult(rv)); c 4391 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4395 net/http/http_cache_unittest.cc delete c; c 4401 net/http/http_cache_unittest.cc c = new Context(); c 4402 net/http/http_cache_unittest.cc rv = cache.CreateTransaction(&c->trans); c 4405 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4413 net/http/http_cache_unittest.cc delete c; c 4760 net/http/http_cache_unittest.cc Context* c = new Context(); c 4761 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4764 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4766 net/http/http_cache_unittest.cc c->result = c->callback.WaitForResult(); c 4774 net/http/http_cache_unittest.cc delete c; c 4790 net/http/http_cache_unittest.cc Context* c = new Context(); c 4791 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4794 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4796 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4804 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4806 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4810 net/http/http_cache_unittest.cc delete c; c 4833 net/http/http_cache_unittest.cc Context* c = new Context(); c 4834 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4837 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4839 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4847 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4849 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4853 net/http/http_cache_unittest.cc delete c; c 4876 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context()); c 4878 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4881 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4883 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4891 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4893 net/http/http_cache_unittest.cc rv = c->callback.WaitForResult(); c 4897 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4899 net/http/http_cache_unittest.cc EXPECT_FALSE(c->callback.have_result()); c 4904 net/http/http_cache_unittest.cc c->trans.reset(); c 4912 net/http/http_cache_unittest.cc EXPECT_FALSE(c->callback.have_result()); c 4938 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context()); c 4939 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 4942 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 4943 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 4947 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 4948 net/http/http_cache_unittest.cc EXPECT_EQ(buf->size(), c->callback.GetResult(rv)); c 4951 net/http/http_cache_unittest.cc c->trans.reset(); c 5081 net/http/http_cache_unittest.cc Context* c = new Context(); c 5083 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 5093 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 5097 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 5101 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback()); c 5102 net/http/http_cache_unittest.cc EXPECT_EQ(5, c->callback.GetResult(rv)); c 5105 net/http/http_cache_unittest.cc delete c; c 5174 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context); c 5175 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 5179 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 5180 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 5210 net/http/http_cache_unittest.cc scoped_ptr<Context> c(new Context); c 5211 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 5215 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 5216 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 5218 net/http/http_cache_unittest.cc const net::HttpResponseInfo* response = c->trans->GetResponseInfo(); c 5221 net/http/http_cache_unittest.cc rv = c->trans->RestartWithAuth(net::AuthCredentials(), c 5222 net/http/http_cache_unittest.cc c->callback.callback()); c 5223 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 5224 net/http/http_cache_unittest.cc response = c->trans->GetResponseInfo(); c 5228 net/http/http_cache_unittest.cc ReadAndVerifyTransaction(c->trans.get(), transaction); c 5229 net/http/http_cache_unittest.cc c.reset(); // The destructor could delete the entry. c 5296 net/http/http_cache_unittest.cc Context* c = new Context(); c 5297 net/http/http_cache_unittest.cc int rv = cache.CreateTransaction(&c->trans); c 5300 net/http/http_cache_unittest.cc rv = c->trans->Start(&request, c->callback.callback(), net::BoundNetLog()); c 5301 net/http/http_cache_unittest.cc EXPECT_EQ(net::OK, c->callback.GetResult(rv)); c 5305 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), 20, c->callback.callback()); c 5306 net/http/http_cache_unittest.cc EXPECT_EQ(20, c->callback.GetResult(rv)); c 5307 net/http/http_cache_unittest.cc rv = c->trans->Read(buf.get(), 10, c->callback.callback()); c 5308 net/http/http_cache_unittest.cc EXPECT_EQ(10, c->callback.GetResult(rv)); c 5312 net/http/http_cache_unittest.cc delete c; c 593 net/http/http_network_transaction.cc CompletionCallback c = callback_; c 595 net/http/http_network_transaction.cc c.Run(rv); c 310 net/http/http_proxy_client_socket.cc CompletionCallback c = user_callback_; c 312 net/http/http_proxy_client_socket.cc c.Run(result); c 355 net/http/http_stream_parser.cc CompletionCallback c = callback_; c 357 net/http/http_stream_parser.cc c.Run(result); c 394 net/http/http_util.cc bool HttpUtil::IsLWS(char c) { c 395 net/http/http_util.cc return strchr(HTTP_LWS, c) != NULL; c 409 net/http/http_util.cc bool HttpUtil::IsQuote(char c) { c 412 net/http/http_util.cc return c == '"' || c == '\''; c 421 net/http/http_util.cc unsigned char c = *iter; c 422 net/http/http_util.cc if (c >= 0x80 || c <= 0x1F || c == 0x7F || c 423 net/http/http_util.cc c == '(' || c == ')' || c == '<' || c == '>' || c == '@' || c 424 net/http/http_util.cc c == ',' || c == ';' || c == ':' || c == '\\' || c == '"' || c 425 net/http/http_util.cc c == '/' || c == '[' || c == ']' || c == '?' || c == '=' || c 426 net/http/http_util.cc c == '{' || c == '}' || c == ' ' || c == '\t') c 454 net/http/http_util.cc char c = *begin; c 455 net/http/http_util.cc if (c == '\\' && !prev_escape) { c 460 net/http/http_util.cc unescaped.push_back(c); c 482 net/http/http_util.cc char c = *begin; c 483 net/http/http_util.cc if (c == '"' || c == '\\') c 485 net/http/http_util.cc escaped.push_back(c); c 513 net/http/http_util.cc char c = buf[i]; c 514 net/http/http_util.cc if (c == '\n') { c 518 net/http/http_util.cc } else if (c != '\r' || last_c != '\n') { c 521 net/http/http_util.cc last_c = c; c 98 net/http/http_util.h static bool IsLWS(char c); c 105 net/http/http_util.h static bool IsQuote(char c); c 68 net/http/md4.cc #define RD1(a,b,c,d,k,s) a += F(b,c,d) + X[k]; a = ROTL(a,s) c 71 net/http/md4.cc #define RD2(a,b,c,d,k,s) a += G(b,c,d) + X[k] + 0x5A827999; a = ROTL(a,s) c 74 net/http/md4.cc #define RD3(a,b,c,d,k,s) a += H(b,c,d) + X[k] + 0x6ED9EBA1; a = ROTL(a,s) c 321 net/http/mock_http_cache.cc CallbackInfo c = {entry, callback, result}; c 322 net/http/mock_http_cache.cc callback_list.push_back(c); c 325 net/http/mock_http_cache.cc CallbackInfo& c = callback_list[i]; c 326 net/http/mock_http_cache.cc c.entry->CallbackLater(c.callback, c.result); c 22 net/quic/crypto/crypto_protocol.h #define TAG(a, b, c, d) ((d << 24) + (c << 16) + (b << 8) + a) c 234 net/quic/crypto/strike_register.cc uint8 c = value[node->critbyte()]; c 236 net/quic/crypto/strike_register.cc (1 + static_cast<unsigned>(node->otherbits() | c)) >> 8; c 242 net/quic/iovector_test.cc char a[2], b[2], c[2]; c 245 net/quic/iovector_test.cc iov.Append(&c[0], 1); c 257 net/quic/iovector_test.cc char a[2], b[2], c[2], d[2], e[2]; c 261 net/quic/iovector_test.cc iov2.Append(&c[0], 1); c 267 net/quic/iovector_test.cc EXPECT_EQ(&c[0], iov1.iovec()[0].iov_base); c 140 net/quic/quic_protocol.cc uint32 MakeQuicTag(char a, char b, char c, char d) { c 143 net/quic/quic_protocol.cc static_cast<uint32>(c) << 16 | c 314 net/quic/quic_protocol.h NET_EXPORT_PRIVATE QuicTag MakeQuicTag(char a, char b, char c, char d); c 710 net/quic/quic_protocol.h std::ostream& os, const QuicCongestionFeedbackFrame& c); c 744 net/quic/quic_protocol.h std::ostream& os, const QuicConnectionCloseFrame& c); c 111 net/quic/test_tools/crypto_test_utils.cc bool HexChar(char c, uint8* value) { c 112 net/quic/test_tools/crypto_test_utils.cc if (c >= '0' && c <= '9') { c 113 net/quic/test_tools/crypto_test_utils.cc *value = c - '0'; c 116 net/quic/test_tools/crypto_test_utils.cc if (c >= 'a' && c <= 'f') { c 117 net/quic/test_tools/crypto_test_utils.cc *value = c - 'a' + 10; c 120 net/quic/test_tools/crypto_test_utils.cc if (c >= 'A' && c <= 'F') { c 121 net/quic/test_tools/crypto_test_utils.cc *value = c - 'A' + 10; c 2242 net/socket/ssl_client_socket_nss.cc base::Closure c = base::Bind( c 2245 net/socket/ssl_client_socket_nss.cc PostOrRunCallback(FROM_HERE, c); c 1058 net/socket/ssl_client_socket_openssl.cc CompletionCallback c = user_connect_callback_; c 1060 net/socket/ssl_client_socket_openssl.cc c.Run(rv > OK ? OK : rv); c 776 net/socket/ssl_server_socket_nss.cc CompletionCallback c = user_handshake_callback_; c 778 net/socket/ssl_server_socket_nss.cc c.Run(rv > OK ? OK : rv); c 787 net/socket/ssl_server_socket_nss.cc CompletionCallback c = user_read_callback_; c 791 net/socket/ssl_server_socket_nss.cc c.Run(rv); c 800 net/socket/ssl_server_socket_nss.cc CompletionCallback c = user_write_callback_; c 804 net/socket/ssl_server_socket_nss.cc c.Run(rv); c 318 net/socket/tcp_socket_libevent.cc char c; c 319 net/socket/tcp_socket_libevent.cc int rv = HANDLE_EINTR(recv(socket_, &c, 1, MSG_PEEK)); c 339 net/socket/tcp_socket_libevent.cc char c; c 340 net/socket/tcp_socket_libevent.cc int rv = HANDLE_EINTR(recv(socket_, &c, 1, MSG_PEEK)); c 433 net/socket/tcp_socket_win.cc char c; c 434 net/socket/tcp_socket_win.cc int rv = recv(socket_, &c, 1, MSG_PEEK); c 454 net/socket/tcp_socket_win.cc char c; c 455 net/socket/tcp_socket_win.cc int rv = recv(socket_, &c, 1, MSG_PEEK); c 444 net/spdy/hpack_huffman_table_test.cc char c = static_cast<char>(i); c 445 net/spdy/hpack_huffman_table_test.cc char storage[3] = {c, c, c}; c 509 net/spdy/spdy_http_stream.cc CompletionCallback c = callback_; c 511 net/spdy/spdy_http_stream.cc c.Run(rv); c 275 net/spdy/spdy_proxy_client_socket.cc CompletionCallback c = read_callback_; c 277 net/spdy/spdy_proxy_client_socket.cc c.Run(rv); c 472 net/spdy/spdy_proxy_client_socket.cc CompletionCallback c = read_callback_; c 476 net/spdy/spdy_proxy_client_socket.cc c.Run(rv); c 92 net/third_party/nss/ssl/preenc.h #define GetInt2(c) ((c[0] << 8) | c[1]) c 93 net/third_party/nss/ssl/preenc.h #define GetInt4(c) (((unsigned long)c[0] << 24)|((unsigned long)c[1] << 16)\ c 94 net/third_party/nss/ssl/preenc.h |((unsigned long)c[2] << 8)| ((unsigned long)c[3])) c 95 net/third_party/nss/ssl/preenc.h #define PutInt2(c,i) ((c[1] = (i) & 0xff), (c[0] = ((i) >> 8) & 0xff)) c 96 net/third_party/nss/ssl/preenc.h #define PutInt4(c,i) ((c[0]=((i) >> 24) & 0xff),(c[1]=((i) >> 16) & 0xff),\ c 97 net/third_party/nss/ssl/preenc.h (c[2] = ((i) >> 8) & 0xff), (c[3] = (i) & 0xff)) c 10125 net/third_party/nss/ssl/ssl3con.c ssl3CertNode *c = PORT_ArenaNew(arena, ssl3CertNode); c 10126 net/third_party/nss/ssl/ssl3con.c c->cert = CERT_DupCertificate(sid->peerCertChain[i]); c 10127 net/third_party/nss/ssl/ssl3con.c c->next = NULL; c 10129 net/third_party/nss/ssl/ssl3con.c lastCert->next = c; c 10131 net/third_party/nss/ssl/ssl3con.c certs = c; c 10133 net/third_party/nss/ssl/ssl3con.c lastCert = c; c 10142 net/third_party/nss/ssl/ssl3con.c ssl3CertNode *c = certs; c 10143 net/third_party/nss/ssl/ssl3con.c for (; i < MAX_PEER_CERT_CHAIN_SIZE && c; i++, c = c->next) { c 10145 net/third_party/nss/ssl/ssl3con.c sid->peerCertChain[i] = CERT_DupCertificate(c->cert); c 10213 net/third_party/nss/ssl/ssl3con.c ssl3CertNode * c; c 10327 net/third_party/nss/ssl/ssl3con.c c = PORT_ArenaNew(ss->ssl3.peerCertArena, ssl3CertNode); c 10328 net/third_party/nss/ssl/ssl3con.c if (c == NULL) { c 10332 net/third_party/nss/ssl/ssl3con.c c->cert = CERT_NewTempCertificate(ss->dbHandle, &certItem, NULL, c 10334 net/third_party/nss/ssl/ssl3con.c if (c->cert == NULL) { c 10338 net/third_party/nss/ssl/ssl3con.c c->next = NULL; c 10340 net/third_party/nss/ssl/ssl3con.c lastCert->next = c; c 10342 net/third_party/nss/ssl/ssl3con.c ss->ssl3.peerCertChain = c; c 10344 net/third_party/nss/ssl/ssl3con.c lastCert = c; c 11705 net/third_party/nss/ssl/ssl3con.c unsigned int c = a ^ b; c 11706 net/third_party/nss/ssl/ssl3con.c c--; c 11707 net/third_party/nss/ssl/ssl3con.c return DUPLICATE_MSB_TO_ALL_8(c); c 3686 net/third_party/nss/ssl/sslcon.c volatile char c; /* force a reference that won't get optimized away */ c 3688 net/third_party/nss/ssl/sslcon.c c = __nss_ssl_rcsid[0] + __nss_ssl_sccsid[0]; c 188 net/third_party/nss/ssl/sslmutex.c char c = 1; c 190 net/third_party/nss/ssl/sslmutex.c cc = write(pMutex->u.pipeStr.mPipes[1], &c, 1); c 219 net/third_party/nss/ssl/sslmutex.c char c; c 221 net/third_party/nss/ssl/sslmutex.c cc = read(pMutex->u.pipeStr.mPipes[0], &c, 1); c 246 net/third_party/nss/ssl/sslmutex.c char c = 1; c 257 net/third_party/nss/ssl/sslmutex.c cc = write(pMutex->u.pipeStr.mPipes[1], &c, 1); c 274 net/third_party/nss/ssl/sslmutex.c char c; c 286 net/third_party/nss/ssl/sslmutex.c cc = read(pMutex->u.pipeStr.mPipes[0], &c, 1); c 387 net/tools/balsa/balsa_frame.cc uint8 c = *parsed_response_code_current - '0'; c 389 net/tools/balsa/balsa_frame.cc (std::numeric_limits<size_t>::max() - status_code_x_10) < c) { c 394 net/tools/balsa/balsa_frame.cc headers->parsed_response_code_ = status_code_x_10 + c; c 519 net/tools/balsa/balsa_frame.cc const char c = *(stream_begin + lines_[i].first); c 520 net/tools/balsa/balsa_frame.cc if (c > ' ') { c 651 net/tools/balsa/balsa_frame.cc const unsigned char c = *value_begin - '0'; c 653 net/tools/balsa/balsa_frame.cc (std::numeric_limits<size_t>::max() - length_x_10) < c) { c 660 net/tools/balsa/balsa_frame.cc *length = length_x_10 + c; c 787 net/tools/balsa/balsa_frame.cc const char c = *key_begin; c 790 net/tools/balsa/balsa_frame.cc << " c: '" << c << "' key_len: " << key_len; c 799 net/tools/balsa/balsa_frame.cc if (c == 'c' || c == 'C') { c 825 net/tools/balsa/balsa_frame.cc } else if (c == 't' || c == 'T') { c 837 net/tools/balsa/balsa_frame.cc } else if (i == 0 && (key_len == 0 || c == ' ')) { c 957 net/tools/balsa/balsa_frame.cc const char c = *message_current; c 958 net/tools/balsa/balsa_frame.cc if (c != '\r' && c != '\n') { c 959 net/tools/balsa/balsa_frame.cc if (c <= ' ') { c 1318 net/tools/balsa/balsa_frame.cc const char c = *current; c 1320 net/tools/balsa/balsa_frame.cc const signed char addition = buf[static_cast<int>(c)]; c 1367 net/tools/balsa/balsa_frame.cc const char c = *current; c 1368 net/tools/balsa/balsa_frame.cc if (c == '\r' || c == '\n') { c 1376 net/tools/balsa/balsa_frame.cc if (c == '\n') { c 1422 net/tools/balsa/balsa_frame.cc const char c = *current; c 1425 net/tools/balsa/balsa_frame.cc if (c == '\n') { c 1436 net/tools/balsa/balsa_frame.cc const char c = *current; c 1438 net/tools/balsa/balsa_frame.cc if (!HeaderFramingFound(c)) { c 1478 net/tools/balsa/balsa_frame.cc const char c = *current; c 1487 net/tools/balsa/balsa_frame.cc if (HeaderFramingFound(c)) { c 47 net/tools/balsa/string_piece_utils.h base::StringPiece::const_iterator c = piece1->begin(); c 49 net/tools/balsa/string_piece_utils.h while (c != e && isspace(*c)) { c 50 net/tools/balsa/string_piece_utils.h ++c; c 52 net/tools/balsa/string_piece_utils.h if (c == e) { c 53 net/tools/balsa/string_piece_utils.h *piece1 = base::StringPiece(c, e-c); c 57 net/tools/balsa/string_piece_utils.h while (c != e &&isspace(*e)) { c 61 net/tools/balsa/string_piece_utils.h *piece1 = base::StringPiece(c, e-c); c 50 net/tools/dump_cache/url_to_filename_encoder_unittest.cc char c = escaped_word[i]; c 51 net/tools/dump_cache/url_to_filename_encoder_unittest.cc EXPECT_EQ(string::npos, kInvalidChars.find(c)); c 52 net/tools/dump_cache/url_to_filename_encoder_unittest.cc EXPECT_NE(invalid_slash, c); c 53 net/tools/dump_cache/url_to_filename_encoder_unittest.cc EXPECT_NE('\0', c); // only invalid character in Posix c 54 net/tools/dump_cache/url_to_filename_encoder_unittest.cc EXPECT_GT(0x7E, c); // only English printable characters c 78 net/tools/dump_cache/url_utilities.cc char c = *iter; c 81 net/tools/dump_cache/url_utilities.cc if (c == '%') { c 85 net/tools/dump_cache/url_utilities.cc unescaped_url.push_back(c); c 90 net/tools/dump_cache/url_utilities.cc if (IsHexDigit(c)) { c 91 net/tools/dump_cache/url_utilities.cc escape_text.push_back(c); c 101 net/tools/dump_cache/url_utilities.cc if (IsHexDigit(c)) { c 102 net/tools/dump_cache/url_utilities.cc escape_text.push_back(c); c 78 net/tools/dump_cache/url_utilities_unittest.cc for (int c = 0; c < 256; ++c) { c 79 net/tools/dump_cache/url_utilities_unittest.cc std::string unescaped_char(1, implicit_cast<unsigned char>(c)); c 80 net/tools/dump_cache/url_utilities_unittest.cc std::string escaped_char = base::StringPrintf("%%%02X", c); c 83 net/tools/dump_cache/url_utilities_unittest.cc escaped_char = base::StringPrintf("%%%02x", c); c 91 net/tools/dump_cache/url_utilities_unittest.cc for (int c = 0; c < 256; ++c) { c 92 net/tools/dump_cache/url_utilities_unittest.cc if (c != '%') { c 93 net/tools/dump_cache/url_utilities_unittest.cc std::string just_char(1, implicit_cast<unsigned char>(c)); c 74 net/tools/flip_server/flip_in_mem_edsm_server.cc char c; c 76 net/tools/flip_server/flip_in_mem_edsm_server.cc while (read(0, &c, 1) > 0) { c 77 net/tools/flip_server/flip_in_mem_edsm_server.cc maybequit += c; c 119 net/tools/flip_server/sm_connection.h friend std::ostream& operator<<(std::ostream& os, const SMConnection& c) { c 120 net/tools/flip_server/sm_connection.h os << &c << "\n"; c 365 net/udp/udp_socket_libevent.cc CompletionCallback c = read_callback_; c 367 net/udp/udp_socket_libevent.cc c.Run(rv); c 375 net/udp/udp_socket_libevent.cc CompletionCallback c = write_callback_; c 377 net/udp/udp_socket_libevent.cc c.Run(rv); c 453 net/udp/udp_socket_win.cc CompletionCallback c = read_callback_; c 455 net/udp/udp_socket_win.cc c.Run(rv); c 463 net/udp/udp_socket_win.cc CompletionCallback c = write_callback_; c 465 net/udp/udp_socket_win.cc c.Run(rv); c 180 net/url_request/test_url_fetcher_factory.h void set_cookies(const ResponseCookies& c) { fake_cookies_ = c; } c 26 net/websockets/websocket_extension_parser.cc void WebSocketExtensionParser::Consume(char c) { c 30 net/websockets/websocket_extension_parser.cc if (current_ == end_ || c != current_[0]) { c 123 net/websockets/websocket_extension_parser.cc bool WebSocketExtensionParser::Lookahead(char c) { c 127 net/websockets/websocket_extension_parser.cc Consume(c); c 134 net/websockets/websocket_extension_parser.cc bool WebSocketExtensionParser::ConsumeIfMatch(char c) { c 138 net/websockets/websocket_extension_parser.cc Consume(c); c 148 net/websockets/websocket_extension_parser.cc bool WebSocketExtensionParser::IsControl(char c) { c 149 net/websockets/websocket_extension_parser.cc return (0 <= c && c <= 31) || c == 127; c 153 net/websockets/websocket_extension_parser.cc bool WebSocketExtensionParser::IsSeparator(char c) { c 155 net/websockets/websocket_extension_parser.cc return strchr(separators, c) != NULL; c 36 net/websockets/websocket_extension_parser.h void Consume(char c); c 42 net/websockets/websocket_extension_parser.h bool Lookahead(char c); c 43 net/websockets/websocket_extension_parser.h bool ConsumeIfMatch(char c); c 46 net/websockets/websocket_extension_parser.h static bool IsControl(char c); c 47 net/websockets/websocket_extension_parser.h static bool IsSeparator(char c); c 47 ppapi/host/dispatch_host_message.h return (obj->*method)(context, arg.a, arg.b, arg.c); c 54 ppapi/host/dispatch_host_message.h return (obj->*method)(context, arg.a, arg.b, arg.c, arg.d); c 61 ppapi/host/dispatch_host_message.h return (obj->*method)(context, arg.a, arg.b, arg.c, arg.d, arg.e); c 73 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc char c = input_signature[i]; c 76 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc switch (c) { c 79 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc c)); c 103 ppapi/native_client/src/trusted/plugin/utility.cc int c = strval[pos]; c 104 ppapi/native_client/src/trusted/plugin/utility.cc if (0 == c) { c 107 ppapi/native_client/src/trusted/plugin/utility.cc if (NULL == strchr(kValidOtherChars, c)) { c 48 ppapi/proxy/dispatch_reply_message.h (obj->*method)(params, arg.a, arg.b, arg.c); c 55 ppapi/proxy/dispatch_reply_message.h (obj->*method)(params, arg.a, arg.b, arg.c, arg.d); c 62 ppapi/proxy/dispatch_reply_message.h (obj->*method)(params, arg.a, arg.b, arg.c, arg.d, arg.e); c 163 ppapi/proxy/enter_proxy.h const C& c) c 165 ppapi/proxy/enter_proxy.h factory.NewOptionalCallback(method, a, b, c)), c 161 ppapi/proxy/nacl_message_scanner.cc ScanParam(t1.c, results); c 167 ppapi/proxy/nacl_message_scanner.cc ScanParam(t1.c, results); c 131 ppapi/proxy/plugin_globals.h void set_command_line(const std::string& c) { command_line_ = c; } c 140 ppapi/proxy/plugin_resource.h int32_t SyncCall(Destination dest, const IPC::Message& msg, A* a, B* b, C* c); c 143 ppapi/proxy/plugin_resource.h Destination dest, const IPC::Message& msg, A* a, B* b, C* c, D* d); c 146 ppapi/proxy/plugin_resource.h Destination dest, const IPC::Message& msg, A* a, B* b, C* c, D* d, E* e); c 251 ppapi/proxy/plugin_resource.h Destination dest, const IPC::Message& msg, A* a, B* b, C* c) { c 256 ppapi/proxy/plugin_resource.h if (UnpackMessage<ReplyMsgClass>(reply, a, b, c)) c 263 ppapi/proxy/plugin_resource.h Destination dest, const IPC::Message& msg, A* a, B* b, C* c, D* d) { c 268 ppapi/proxy/plugin_resource.h if (UnpackMessage<ReplyMsgClass>(reply, a, b, c, d)) c 275 ppapi/proxy/plugin_resource.h Destination dest, const IPC::Message& msg, A* a, B* b, C* c, D* d, E* e) { c 280 ppapi/proxy/plugin_resource.h if (UnpackMessage<ReplyMsgClass>(reply, a, b, c, d, e)) c 89 ppapi/proxy/ppapi_message_utils.h bool UnpackMessage(const IPC::Message& msg, A* a, B* b, C* c) { c 97 ppapi/proxy/ppapi_message_utils.h IPC::ReadParam(&msg, &iter, c); c 101 ppapi/proxy/ppapi_message_utils.h bool UnpackMessage(const IPC::Message& msg, A* a, B* b, C* c, D* d) { c 109 ppapi/proxy/ppapi_message_utils.h IPC::ReadParam(&msg, &iter, c) && c 114 ppapi/proxy/ppapi_message_utils.h bool UnpackMessage(const IPC::Message& msg, A* a, B* b, C* c, D* d, E* e) { c 123 ppapi/proxy/ppapi_message_utils.h IPC::ReadParam(&msg, &iter, c) && c 37 ppapi/tests/extensions/background_keepalive/background.cc pp::CompletionCallback c = callback_factory_.NewCallback( c 39 ppapi/tests/extensions/background_keepalive/background.cc loop.PostWork(c, delay_milliseconds_); c 23 ppapi/tests/test_truetype_font.cc #define MAKE_TABLE_TAG(a, b, c, d) ((a) << 24) + ((b) << 16) + ((c) << 8) + (d) c 40 ppapi/tests/test_url_util.cc PP_URLComponents_Dev c; c 43 ppapi/tests/test_url_util.cc &c); c 48 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.scheme, 0, 4)); c 49 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.username, 7, 2)); c 50 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.password, 10, 2)); c 51 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.host, 13, 10)); c 52 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.port, 24, 4)); c 53 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.path, 28, 5)); c 54 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.query, 34, 5)); c 55 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.ref, 40, 3)); c 58 ppapi/tests/test_url_util.cc result = util_->Canonicalize("http://google.com/", &c); c 62 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.scheme, 0, 4)); c 63 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.username, 0, -1)); c 64 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.password, 0, -1)); c 65 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.host, 7, 10)); c 66 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.port, 0, -1)); c 67 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.path, 17, 1)); c 68 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.query, 0, -1)); c 69 ppapi/tests/test_url_util.cc ASSERT_TRUE(ComponentEquals(c.ref, 0, -1)); c 541 ppapi/utility/completion_callback_factory.h const C& c) { c 542 ppapi/utility/completion_callback_factory.h return NewCallbackHelper(new Dispatcher3<Method, A, B, C>(method, a, b, c)); c 570 ppapi/utility/completion_callback_factory.h const B& b, const C& c) { c 571 ppapi/utility/completion_callback_factory.h CompletionCallback cc = NewCallback(method, a, b, c); c 600 ppapi/utility/completion_callback_factory.h const C& c) { c 612 ppapi/utility/completion_callback_factory.h new DispatcherType(method, a, b, c)); c 623 ppapi/utility/completion_callback_factory.h const C& c) { c 636 ppapi/utility/completion_callback_factory.h new DispatcherType(method, a, b, c)); c 884 ppapi/utility/completion_callback_factory.h Dispatcher3(Method method, const A& a, const B& b, const C& c) c 888 ppapi/utility/completion_callback_factory.h c_(c) { c 919 ppapi/utility/completion_callback_factory.h DispatcherWithOutput3(Method method, const A& a, const B& b, const C& c) c 923 ppapi/utility/completion_callback_factory.h c_(c), c 30 printing/pdf_render_settings.h bool autorotate() const { return c; } c 248 remoting/base/util.cc char c = *in_p; c 249 remoting/base/util.cc if (c == '\n') { c 252 remoting/base/util.cc *out_p++ = c; c 266 remoting/base/util.cc char c = *in_p; c 267 remoting/base/util.cc if ((c == '\r') && (in_p + 1 < in_p_end) && (*(in_p + 1) == '\n')) { c 271 remoting/base/util.cc *out_p++ = c; c 13 remoting/host/setup/pin_validator.cc char c = pin[i]; c 14 remoting/host/setup/pin_validator.cc if (c < '0' || c > '9') c 444 remoting/protocol/channel_multiplexer.cc PendingChannel c = pending_channels_.front(); c 448 remoting/protocol/channel_multiplexer.cc socket = GetOrCreateChannel(c.name)->CreateSocket(); c 449 remoting/protocol/channel_multiplexer.cc c.callback.Run(socket.Pass()); c 486 sandbox/linux/seccomp-bpf/codegen.cc int c = PointerCompare(blocks.find(insn1.jt_ptr)->second, c 489 sandbox/linux/seccomp-bpf/codegen.cc if (c == 0) { c 490 sandbox/linux/seccomp-bpf/codegen.cc c = PointerCompare(blocks.find(insn1.jf_ptr)->second, c 493 sandbox/linux/seccomp-bpf/codegen.cc if (c == 0) { c 496 sandbox/linux/seccomp-bpf/codegen.cc return c; c 499 sandbox/linux/seccomp-bpf/codegen.cc return c; c 502 sandbox/linux/seccomp-bpf/codegen.cc int c = PointerCompare(blocks.find(insn1.jt_ptr)->second, c 505 sandbox/linux/seccomp-bpf/codegen.cc if (c == 0) { c 508 sandbox/linux/seccomp-bpf/codegen.cc return c; c 29 sandbox/linux/seccomp-bpf/instruction.h Instruction(uint16_t c, uint32_t parm, Instruction* n) c 30 sandbox/linux/seccomp-bpf/instruction.h : code(c), next(n), k(parm) {} c 33 sandbox/linux/seccomp-bpf/instruction.h Instruction(uint16_t c, uint32_t parm, Instruction* jt, Instruction* jf) c 34 sandbox/linux/seccomp-bpf/instruction.h : code(c), jt_ptr(jt), jf_ptr(jf), k(parm) {} c 615 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc char c = '\000'; c 616 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc BPF_ASSERT(read(fds[0], &c, 1) == 1); c 619 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc BPF_ASSERT(c == 0x55); c 100 sandbox/linux/services/scoped_process.cc char c = 0; c 101 sandbox/linux/services/scoped_process.cc int ret = HANDLE_EINTR(read(pipe_fds_[0], &c, 1)); c 106 sandbox/linux/services/scoped_process.cc CHECK_EQ(c, kSynchronisationChar[0]); c 87 sandbox/linux/services/scoped_process_unittest.cc char c; c 90 sandbox/linux/services/scoped_process_unittest.cc ASSERT_EQ(0, read(pipe_fds[0], &c, 1)); c 122 sandbox/linux/services/scoped_process_unittest.cc char c = 0; c 123 sandbox/linux/services/scoped_process_unittest.cc EXPECT_EQ(1, read(pipe_fds[0], &c, 1)); c 124 sandbox/linux/services/scoped_process_unittest.cc EXPECT_EQ('1', c); c 551 skia/ext/convolver.cc int c = 0; c 552 skia/ext/convolver.cc for (; c < centrepoint; ++c, target_byte += output_channel_count) { c 556 skia/ext/convolver.cc for (; i < centrepoint - c; ++i) // Padding part. c 566 skia/ext/convolver.cc for (; c < image_size.width() - centrepoint; c 567 skia/ext/convolver.cc ++c, target_byte += output_channel_count) { c 569 skia/ext/convolver.cc int pixel_byte_index = (c - centrepoint) * input_channel_count + c 580 skia/ext/convolver.cc for (; c < image_size.width(); ++c, target_byte += output_channel_count) { c 582 skia/ext/convolver.cc int overlap_taps = image_size.width() - c + centrepoint; c 583 skia/ext/convolver.cc int pixel_byte_index = (c - centrepoint) * input_channel_count + c 629 skia/ext/convolver.cc for (int c = 0; c < image_size.width(); ++c) { c 630 skia/ext/convolver.cc unsigned char* target_byte = output + c * output_channel_count + c 637 skia/ext/convolver.cc int pixel_byte_index = c * input_channel_count + input_channel_index; c 652 skia/ext/convolver.cc c * input_channel_count + input_channel_index; c 666 skia/ext/convolver.cc c * input_channel_count + input_channel_index; c 101 skia/ext/recursive_gaussian_convolution.cc int c = 1; c 103 skia/ext/recursive_gaussian_convolution.cc for (; c < row_width - 1; ++c, ++n, byte_index += source_pixel_stride) { c 124 skia/ext/recursive_gaussian_convolution.cc for (; c >= 0; output_index -= output_pixel_stride, --c, --n) { c 505 skia/ext/vector_platform_device_emf_win.cc uint16_t c = *reinterpret_cast<const uint16_t*>(text); c 506 skia/ext/vector_platform_device_emf_win.cc return SkUTF16_IsHighSurrogate(c) ? 4 : 2; c 75 sync/engine/directory_update_handler.cc WorkCallback c = base::Bind( c 80 sync/engine/directory_update_handler.cc worker_->DoWorkAndWaitUntilDone(c); c 196 sync/internal_api/public/util/immutable_unittest.cc C c(tokens, tokens + token_count); c 197 sync/internal_api/public/util/immutable_unittest.cc const int copy_count = c.begin()->GetCopyCount(); c 199 sync/internal_api/public/util/immutable_unittest.cc for (typename C::const_iterator it = c.begin(); it != c.end(); ++it) { c 205 sync/internal_api/public/util/immutable_unittest.cc ImmutableC immutable_c(&c); c 206 sync/internal_api/public/util/immutable_unittest.cc EXPECT_TRUE(c.empty()); c 209 sync/internal_api/public/util/immutable_unittest.cc for (typename C::const_iterator it = c.begin(); it != c.end(); ++it) { c 115 testing/gmock_mutant.h const Tuple0& c) { c 121 testing/gmock_mutant.h const Tuple0& c) { c 129 testing/gmock_mutant.h const Tuple1<C1>& c) { c 130 testing/gmock_mutant.h return (obj->*method)(c.a); c 135 testing/gmock_mutant.h const Tuple1<C1>& c) { c 136 testing/gmock_mutant.h return (*function)(c.a); c 143 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 144 testing/gmock_mutant.h return (obj->*method)(c.a, c.b); c 149 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 150 testing/gmock_mutant.h return (*function)(c.a, c.b); c 158 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 159 testing/gmock_mutant.h return (obj->*method)(c.a, c.b, c.c); c 164 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 165 testing/gmock_mutant.h return (*function)(c.a, c.b, c.c); c 173 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 174 testing/gmock_mutant.h return (obj->*method)(c.a, c.b, c.c, c.d); c 180 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 181 testing/gmock_mutant.h return (*function)(c.a, c.b, c.c, c.d); c 189 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 190 testing/gmock_mutant.h return (obj->*method)(c.a, c.b, c.c, c.d, c.e); c 196 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 197 testing/gmock_mutant.h return (*function)(c.a, c.b, c.c, c.d, c.e); c 205 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 206 testing/gmock_mutant.h return (obj->*method)(c.a, c.b, c.c, c.d, c.e, c.f); c 212 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 213 testing/gmock_mutant.h return (*function)(c.a, c.b, c.c, c.d, c.e, c.f); c 220 testing/gmock_mutant.h const Tuple0& c) { c 226 testing/gmock_mutant.h const Tuple0& c) { c 234 testing/gmock_mutant.h const Tuple1<C1>& c) { c 235 testing/gmock_mutant.h return (obj->*method)(p.a, c.a); c 240 testing/gmock_mutant.h const Tuple1<C1>& c) { c 241 testing/gmock_mutant.h return (*function)(p.a, c.a); c 249 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 250 testing/gmock_mutant.h return (obj->*method)(p.a, c.a, c.b); c 255 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 256 testing/gmock_mutant.h return (*function)(p.a, c.a, c.b); c 264 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 265 testing/gmock_mutant.h return (obj->*method)(p.a, c.a, c.b, c.c); c 271 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 272 testing/gmock_mutant.h return (*function)(p.a, c.a, c.b, c.c); c 280 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 281 testing/gmock_mutant.h return (obj->*method)(p.a, c.a, c.b, c.c, c.d); c 287 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 288 testing/gmock_mutant.h return (*function)(p.a, c.a, c.b, c.c, c.d); c 296 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 297 testing/gmock_mutant.h return (obj->*method)(p.a, c.a, c.b, c.c, c.d, c.e); c 303 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 304 testing/gmock_mutant.h return (*function)(p.a, c.a, c.b, c.c, c.d, c.e); c 312 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 313 testing/gmock_mutant.h return (obj->*method)(p.a, c.a, c.b, c.c, c.d, c.e, c.f); c 319 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 320 testing/gmock_mutant.h return (*function)(p.a, c.a, c.b, c.c, c.d, c.e, c.f); c 327 testing/gmock_mutant.h const Tuple0& c) { c 333 testing/gmock_mutant.h const Tuple0& c) { c 342 testing/gmock_mutant.h const Tuple1<C1>& c) { c 343 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a); c 348 testing/gmock_mutant.h const Tuple1<C1>& c) { c 349 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a); c 357 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 358 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a, c.b); c 364 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 365 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a, c.b); c 373 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 374 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a, c.b, c.c); c 380 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 381 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a, c.b, c.c); c 389 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 390 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a, c.b, c.c, c.d); c 396 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 397 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a, c.b, c.c, c.d); c 405 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 406 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a, c.b, c.c, c.d, c.e); c 412 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 413 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a, c.b, c.c, c.d, c.e); c 422 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 423 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, c.a, c.b, c.c, c.d, c.e, c.f); c 429 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 430 testing/gmock_mutant.h return (*function)(p.a, p.b, c.a, c.b, c.c, c.d, c.e, c.f); c 438 testing/gmock_mutant.h const Tuple0& c) { c 439 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c); c 444 testing/gmock_mutant.h const Tuple0& c) { c 445 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c); c 453 testing/gmock_mutant.h const Tuple1<C1>& c) { c 454 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a); c 460 testing/gmock_mutant.h const Tuple1<C1>& c) { c 461 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a); c 469 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 470 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a, c.b); c 476 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 477 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a, c.b); c 485 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 486 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a, c.b, c.c); c 492 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 493 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a, c.b, c.c); c 501 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 502 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a, c.b, c.c, c.d); c 508 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 509 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a, c.b, c.c, c.d); c 518 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 519 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a, c.b, c.c, c.d, c.e); c 525 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 526 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a, c.b, c.c, c.d, c.e); c 535 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 536 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, c.a, c.b, c.c, c.d, c.e, c.f); c 543 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 544 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, c.a, c.b, c.c, c.d, c.e, c.f); c 552 testing/gmock_mutant.h const Tuple0& c) { c 553 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d); c 559 testing/gmock_mutant.h const Tuple0& c) { c 560 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d); c 568 testing/gmock_mutant.h const Tuple1<C1>& c) { c 569 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a); c 575 testing/gmock_mutant.h const Tuple1<C1>& c) { c 576 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a); c 584 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 585 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a, c.b); c 591 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 592 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a, c.b); c 600 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 601 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a, c.b, c.c); c 607 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 608 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a, c.b, c.c); c 617 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 618 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d); c 624 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 625 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d); c 634 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 635 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d, c.e); c 642 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 643 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d, c.e); c 652 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 653 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d, c.e, c.f); c 660 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 661 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, c.a, c.b, c.c, c.d, c.e, c.f); c 669 testing/gmock_mutant.h const Tuple0& c) { c 670 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e); c 676 testing/gmock_mutant.h const Tuple0& c) { c 677 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e); c 685 testing/gmock_mutant.h const Tuple1<C1>& c) { c 686 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a); c 692 testing/gmock_mutant.h const Tuple1<C1>& c) { c 693 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a); c 701 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 702 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a, c.b); c 708 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 709 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a, c.b); c 718 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 719 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c); c 725 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 726 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c); c 735 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 736 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d); c 743 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 744 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d); c 753 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 754 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d, c.e); c 761 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 762 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d, c.e); c 771 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 772 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d, c.e, c.f); c 779 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 780 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, c.a, c.b, c.c, c.d, c.e, c.f); c 788 testing/gmock_mutant.h const Tuple0& c) { c 789 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f); c 795 testing/gmock_mutant.h const Tuple0& c) { c 796 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f); c 804 testing/gmock_mutant.h const Tuple1<C1>& c) { c 805 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a); c 811 testing/gmock_mutant.h const Tuple1<C1>& c) { c 812 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a); c 821 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 822 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b); c 828 testing/gmock_mutant.h const Tuple2<C1, C2>& c) { c 829 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b); c 838 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 839 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c); c 846 testing/gmock_mutant.h const Tuple3<C1, C2, C3>& c) { c 847 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c); c 856 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 857 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d); c 864 testing/gmock_mutant.h const Tuple4<C1, C2, C3, C4>& c) { c 865 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d); c 874 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 875 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e); c 882 testing/gmock_mutant.h const Tuple5<C1, C2, C3, C4, C5>& c) { c 883 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e); c 892 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 893 testing/gmock_mutant.h return (obj->*method)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e, c.f); c 900 testing/gmock_mutant.h const Tuple6<C1, C2, C3, C4, C5, C6>& c) { c 901 testing/gmock_mutant.h return (*function)(p.a, p.b, p.c, p.d, p.e, p.f, c.a, c.b, c.c, c.d, c.e, c.f); c 1001 testing/gmock_mutant.h inline R operator()(const Arg1& a, const Arg2& b, const Arg3& c) { c 1002 testing/gmock_mutant.h return impl_->RunWithParams(Params(a, b, c)); c 1006 testing/gmock_mutant.h inline R operator()(const Arg1& a, const Arg2& b, const Arg3& c, c 1008 testing/gmock_mutant.h return impl_->RunWithParams(Params(a, b, c, d)); c 102 third_party/bintrees/bintrees/cwalker.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 103 third_party/bintrees/bintrees/cwalker.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 106 third_party/bintrees/bintrees/cwalker.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 107 third_party/bintrees/bintrees/cwalker.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 102 third_party/bintrees/bintrees/qavltree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 103 third_party/bintrees/bintrees/qavltree.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 106 third_party/bintrees/bintrees/qavltree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 107 third_party/bintrees/bintrees/qavltree.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 102 third_party/bintrees/bintrees/qbintree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 103 third_party/bintrees/bintrees/qbintree.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 106 third_party/bintrees/bintrees/qbintree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 107 third_party/bintrees/bintrees/qbintree.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 102 third_party/bintrees/bintrees/qrbtree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 103 third_party/bintrees/bintrees/qrbtree.c PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 106 third_party/bintrees/bintrees/qrbtree.c #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ c 107 third_party/bintrees/bintrees/qrbtree.c PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) c 107 third_party/bspatch/mbspatch.cc int c = read(patchfd, wb, (r > SSIZE_MAX) ? SSIZE_MAX : r); c 108 third_party/bspatch/mbspatch.cc if (c < 0) { c 113 third_party/bspatch/mbspatch.cc r -= c; c 115 third_party/bspatch/mbspatch.cc if (c == 0 && r) { c 1192 third_party/cld/encodings/compact_lang_det/cldutil.h bool inline IsUTF8ContinueByte(char c) { c 1193 third_party/cld/encodings/compact_lang_det/cldutil.h return static_cast<signed char>(c) < -64;} c 1194 third_party/cld/encodings/compact_lang_det/cldutil.h bool inline IsUTF8HighByte(char c) { c 1195 third_party/cld/encodings/compact_lang_det/cldutil.h return static_cast<signed char>(c) < 0;} c 812 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc int c = src[0]; c 816 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc if (c < 0xc0) { c 819 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if ((c & 0xe0) == 0xc0) { c 821 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc c = (c << 8) | src[1]; c 823 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if ((c & 0xf0) == 0xe0) { c 825 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc c = (c << 16) | (src[1] << 8) | src[2]; c 829 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc c = (c << 24) | (src[1] << 16) | (src[2] << 8) | src[3]; c 835 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc tbl[local_hash] = c; // Update prediction c 836 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc p_count += (c == p); // Count good predictions c 838 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc local_hash = ((local_hash << 4) ^ c) & 0xfff; c 882 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc int c = src[0]; c 884 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc *dst++ = c; c 886 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc if (c == ' ') { c 906 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc if (c < 0xc0) { c 909 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if ((c & 0xe0) == 0xc0) { c 912 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc c = (c << 8) | src[1]; c 914 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if ((c & 0xf0) == 0xe0) { c 918 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc c = (c << 16) | (src[1] << 8) | src[2]; c 925 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc c = (c << 24) | (src[1] << 16) | (src[2] << 8) | src[3]; c 932 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc tbl[local_hash] = c; // Update prediction c 933 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc if (c == p) { c 937 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc local_hash = ((local_hash << 4) ^ c) & 0xfff; c 1329 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc char c = txt[i]; c 1330 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc if (c == '<') { c 1332 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if (c == '>') { c 1334 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if (c == '&') { c 1336 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if (c == '\'') { c 1338 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc } else if (c == '"') { c 1341 third_party/cld/encodings/compact_lang_det/compact_lang_det_impl.cc fprintf(f, "%c", c); c 188 third_party/cld/encodings/compact_lang_det/getonescriptspan.cc bool inline IsSpecial(char c) { c 189 third_party/cld/encodings/compact_lang_det/getonescriptspan.cc if ((c & 0xe0) == 0x20) { c 190 third_party/cld/encodings/compact_lang_det/getonescriptspan.cc return kSpecialSymbol[static_cast<uint8>(c)]; c 30 third_party/cld/encodings/compact_lang_det/getonescriptspan.h static inline bool IsContinuationByte(char c) { c 31 third_party/cld/encodings/compact_lang_det/getonescriptspan.h return static_cast<signed char>(c) < -64; c 34 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc unsigned char c = lsrc[0]; c 35 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc if (static_cast<signed char>(c) >= 0) { // one byte c 36 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 39 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc } else if (((c & 0xe0) == 0xc0) && (*srclen >= 2)) { // two bytes c 40 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 45 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc } else if (((c & 0xf0) == 0xe0) && (*srclen >= 3)) { // three bytes c 46 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 53 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc }else if (((c & 0xf8) == 0xf0) && (*srclen >= 4)) { // four bytes c 54 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 92 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc unsigned char c = lsrc[0]; c 93 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc if (static_cast<signed char>(c) >= 0) { // one byte c 94 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 97 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc } else if (((c & 0xe0) == 0xc0) && (*srclen >= 2)) { // two bytes c 98 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 103 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc } else if (((c & 0xf0) == 0xe0) && (*srclen >= 3)) { // three bytes c 104 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 111 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc }else if (((c & 0xf8) == 0xf0) && (*srclen >= 4)) { // four bytes c 112 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 153 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc uint8 c; c 186 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc c = *src; c 187 third_party/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc e = Tbl[c]; c 110 third_party/expat/files/lib/xmlparse.c #define CHAR_HASH(h, c) \ c 111 third_party/expat/files/lib/xmlparse.c (((h) * 0xF4243) ^ (unsigned short)(c)) c 113 third_party/expat/files/lib/xmlparse.c #define CHAR_HASH(h, c) \ c 114 third_party/expat/files/lib/xmlparse.c (((h) * 0xF4243) ^ (unsigned char)(c)) c 454 third_party/expat/files/lib/xmlparse.c #define poolAppendChar(pool, c) \ c 457 third_party/expat/files/lib/xmlparse.c : ((*((pool)->ptr)++ = c), 1)) c 1989 third_party/expat/files/lib/xmlparse.c #define V1(a,b,c) XML_L(#a)XML_L(".")XML_L(#b)XML_L(".")XML_L(#c) c 1990 third_party/expat/files/lib/xmlparse.c #define V2(a,b,c) XML_L("expat_")V1(a,b,c) c 2266 third_party/expat/files/lib/xmlparse.c XML_Char c = 0xA; c 2267 third_party/expat/files/lib/xmlparse.c characterDataHandler(handlerArg, &c, 1); c 2566 third_party/expat/files/lib/xmlparse.c XML_Char c = 0xA; c 2567 third_party/expat/files/lib/xmlparse.c characterDataHandler(handlerArg, &c, 1); c 2920 third_party/expat/files/lib/xmlparse.c const XML_Char c = b->uri[j]; c 2921 third_party/expat/files/lib/xmlparse.c if (!poolAppendChar(&tempPool, c)) c 2923 third_party/expat/files/lib/xmlparse.c uriHash = CHAR_HASH(uriHash, c); c 2928 third_party/expat/files/lib/xmlparse.c const XML_Char c = *s; c 2931 third_party/expat/files/lib/xmlparse.c uriHash = CHAR_HASH(uriHash, c); c 3238 third_party/expat/files/lib/xmlparse.c XML_Char c = 0xA; c 3239 third_party/expat/files/lib/xmlparse.c characterDataHandler(handlerArg, &c, 1); c 287 third_party/expat/files/lib/xmltok.c #define CHAR_MATCHES(enc, p, c) \ c 288 third_party/expat/files/lib/xmltok.c (AS_NORMAL_ENCODING(enc)->charMatches(enc, p, c)) c 290 third_party/expat/files/lib/xmltok.c sb_charMatches(const ENCODING *enc, const char *p, int c) c 292 third_party/expat/files/lib/xmltok.c return *p == c; c 296 third_party/expat/files/lib/xmltok.c #define CHAR_MATCHES(enc, p, c) (*(p) == c) c 434 third_party/expat/files/lib/xmltok.c unsigned char c; c 437 third_party/expat/files/lib/xmltok.c c = (unsigned char)**fromP; c 438 third_party/expat/files/lib/xmltok.c if (c & 0x80) { c 441 third_party/expat/files/lib/xmltok.c *(*toP)++ = (char)((c >> 6) | UTF8_cval2); c 442 third_party/expat/files/lib/xmltok.c *(*toP)++ = (char)((c & 0x3f) | 0x80); c 644 third_party/expat/files/lib/xmltok.c #define LITTLE2_CHAR_MATCHES(enc, p, c) ((p)[1] == 0 && (p)[0] == c) c 665 third_party/expat/files/lib/xmltok.c little2_charMatches(const ENCODING *enc, const char *p, int c) c 667 third_party/expat/files/lib/xmltok.c return LITTLE2_CHAR_MATCHES(enc, p, c); c 693 third_party/expat/files/lib/xmltok.c #define CHAR_MATCHES(enc, p, c) LITTLE2_CHAR_MATCHES(enc, p, c) c 785 third_party/expat/files/lib/xmltok.c #define BIG2_CHAR_MATCHES(enc, p, c) ((p)[0] == 0 && (p)[1] == c) c 806 third_party/expat/files/lib/xmltok.c big2_charMatches(const ENCODING *enc, const char *p, int c) c 808 third_party/expat/files/lib/xmltok.c return BIG2_CHAR_MATCHES(enc, p, c); c 834 third_party/expat/files/lib/xmltok.c #define CHAR_MATCHES(enc, p, c) BIG2_CHAR_MATCHES(enc, p, c) c 960 third_party/expat/files/lib/xmltok.c isSpace(int c) c 962 third_party/expat/files/lib/xmltok.c switch (c) { c 984 third_party/expat/files/lib/xmltok.c int c; c 1003 third_party/expat/files/lib/xmltok.c c = toAscii(enc, ptr, end); c 1004 third_party/expat/files/lib/xmltok.c if (c == -1) { c 1008 third_party/expat/files/lib/xmltok.c if (c == ASCII_EQUALS) { c 1012 third_party/expat/files/lib/xmltok.c if (isSpace(c)) { c 1016 third_party/expat/files/lib/xmltok.c } while (isSpace(c = toAscii(enc, ptr, end))); c 1017 third_party/expat/files/lib/xmltok.c if (c != ASCII_EQUALS) { c 1030 third_party/expat/files/lib/xmltok.c c = toAscii(enc, ptr, end); c 1031 third_party/expat/files/lib/xmltok.c while (isSpace(c)) { c 1033 third_party/expat/files/lib/xmltok.c c = toAscii(enc, ptr, end); c 1035 third_party/expat/files/lib/xmltok.c if (c != ASCII_QUOT && c != ASCII_APOS) { c 1039 third_party/expat/files/lib/xmltok.c open = (char)c; c 1043 third_party/expat/files/lib/xmltok.c c = toAscii(enc, ptr, end); c 1044 third_party/expat/files/lib/xmltok.c if (c == open) c 1046 third_party/expat/files/lib/xmltok.c if (!(ASCII_a <= c && c <= ASCII_z) c 1047 third_party/expat/files/lib/xmltok.c && !(ASCII_A <= c && c <= ASCII_Z) c 1048 third_party/expat/files/lib/xmltok.c && !(ASCII_0 <= c && c <= ASCII_9) c 1049 third_party/expat/files/lib/xmltok.c && c != ASCII_PERIOD c 1050 third_party/expat/files/lib/xmltok.c && c != ASCII_MINUS c 1051 third_party/expat/files/lib/xmltok.c && c != ASCII_UNDERSCORE) { c 1131 third_party/expat/files/lib/xmltok.c int c = toAscii(enc, val, end); c 1132 third_party/expat/files/lib/xmltok.c if (!(ASCII_a <= c && c <= ASCII_z) && !(ASCII_A <= c && c <= ASCII_Z)) { c 1193 third_party/expat/files/lib/xmltok.c XmlUtf8Encode(int c, char *buf) c 1202 third_party/expat/files/lib/xmltok.c if (c < 0) c 1204 third_party/expat/files/lib/xmltok.c if (c < min2) { c 1205 third_party/expat/files/lib/xmltok.c buf[0] = (char)(c | UTF8_cval1); c 1208 third_party/expat/files/lib/xmltok.c if (c < min3) { c 1209 third_party/expat/files/lib/xmltok.c buf[0] = (char)((c >> 6) | UTF8_cval2); c 1210 third_party/expat/files/lib/xmltok.c buf[1] = (char)((c & 0x3f) | 0x80); c 1213 third_party/expat/files/lib/xmltok.c if (c < min4) { c 1214 third_party/expat/files/lib/xmltok.c buf[0] = (char)((c >> 12) | UTF8_cval3); c 1215 third_party/expat/files/lib/xmltok.c buf[1] = (char)(((c >> 6) & 0x3f) | 0x80); c 1216 third_party/expat/files/lib/xmltok.c buf[2] = (char)((c & 0x3f) | 0x80); c 1219 third_party/expat/files/lib/xmltok.c if (c < 0x110000) { c 1220 third_party/expat/files/lib/xmltok.c buf[0] = (char)((c >> 18) | UTF8_cval4); c 1221 third_party/expat/files/lib/xmltok.c buf[1] = (char)(((c >> 12) & 0x3f) | 0x80); c 1222 third_party/expat/files/lib/xmltok.c buf[2] = (char)(((c >> 6) & 0x3f) | 0x80); c 1223 third_party/expat/files/lib/xmltok.c buf[3] = (char)((c & 0x3f) | 0x80); c 1267 third_party/expat/files/lib/xmltok.c int c = uenc->convert(uenc->userData, p); c 1268 third_party/expat/files/lib/xmltok.c if (c & ~0xFFFF) c 1270 third_party/expat/files/lib/xmltok.c return UCS2_GET_NAMING(namePages, c >> 8, c & 0xFF); c 1277 third_party/expat/files/lib/xmltok.c int c = uenc->convert(uenc->userData, p); c 1278 third_party/expat/files/lib/xmltok.c if (c & ~0xFFFF) c 1280 third_party/expat/files/lib/xmltok.c return UCS2_GET_NAMING(nmstrtPages, c >> 8, c & 0xFF); c 1287 third_party/expat/files/lib/xmltok.c int c = uenc->convert(uenc->userData, p); c 1288 third_party/expat/files/lib/xmltok.c return (c & ~0xFFFF) || checkCharRefNumber(c) < 0; c 1306 third_party/expat/files/lib/xmltok.c int c = uenc->convert(uenc->userData, *fromP); c 1307 third_party/expat/files/lib/xmltok.c n = XmlUtf8Encode(c, buf); c 1332 third_party/expat/files/lib/xmltok.c unsigned short c = uenc->utf16[(unsigned char)**fromP]; c 1333 third_party/expat/files/lib/xmltok.c if (c == 0) { c 1334 third_party/expat/files/lib/xmltok.c c = (unsigned short) c 1341 third_party/expat/files/lib/xmltok.c *(*toP)++ = c; c 1361 third_party/expat/files/lib/xmltok.c int c = table[i]; c 1362 third_party/expat/files/lib/xmltok.c if (c == -1) { c 1369 third_party/expat/files/lib/xmltok.c else if (c < 0) { c 1370 third_party/expat/files/lib/xmltok.c if (c < -4) c 1372 third_party/expat/files/lib/xmltok.c e->normal.type[i] = (unsigned char)(BT_LEAD2 - (c + 2)); c 1376 third_party/expat/files/lib/xmltok.c else if (c < 0x80) { c 1377 third_party/expat/files/lib/xmltok.c if (latin1_encoding.type[c] != BT_OTHER c 1378 third_party/expat/files/lib/xmltok.c && latin1_encoding.type[c] != BT_NONXML c 1379 third_party/expat/files/lib/xmltok.c && c != i) c 1381 third_party/expat/files/lib/xmltok.c e->normal.type[i] = latin1_encoding.type[c]; c 1383 third_party/expat/files/lib/xmltok.c e->utf8[i][1] = (char)c; c 1384 third_party/expat/files/lib/xmltok.c e->utf16[i] = (unsigned short)(c == 0 ? 0xFFFF : c); c 1386 third_party/expat/files/lib/xmltok.c else if (checkCharRefNumber(c) < 0) { c 1394 third_party/expat/files/lib/xmltok.c if (c > 0xFFFF) c 1396 third_party/expat/files/lib/xmltok.c if (UCS2_GET_NAMING(nmstrtPages, c >> 8, c & 0xff)) c 1398 third_party/expat/files/lib/xmltok.c else if (UCS2_GET_NAMING(namePages, c >> 8, c & 0xff)) c 1402 third_party/expat/files/lib/xmltok.c e->utf8[i][0] = (char)XmlUtf8Encode(c, e->utf8[i] + 1); c 1403 third_party/expat/files/lib/xmltok.c e->utf16[i] = (unsigned short)c; c 1533 third_party/expat/files/lib/xmltok_impl.c int c = BYTE_TO_ASCII(enc, ptr); c 1534 third_party/expat/files/lib/xmltok_impl.c switch (c) { c 1538 third_party/expat/files/lib/xmltok_impl.c result |= (c - ASCII_0); c 1543 third_party/expat/files/lib/xmltok_impl.c result += 10 + (c - ASCII_A); c 1548 third_party/expat/files/lib/xmltok_impl.c result += 10 + (c - ASCII_a); c 1557 third_party/expat/files/lib/xmltok_impl.c int c = BYTE_TO_ASCII(enc, ptr); c 1559 third_party/expat/files/lib/xmltok_impl.c result += (c - ASCII_0); c 48 third_party/harfbuzz-ng/src/hb-common.cc char *c = getenv ("HB_OPTIONS"); c 49 third_party/harfbuzz-ng/src/hb-common.cc u.opts.uniscribe_bug_compatible = c && strstr (c, "uniscribe-bug-compatible"); c 136 third_party/harfbuzz-ng/src/hb-common.cc char c = TOLOWER (str[0]); c 138 third_party/harfbuzz-ng/src/hb-common.cc if (c == direction_strings[i][0]) c 613 third_party/harfbuzz-ng/src/hb-coretext.cc hb_codepoint_t c = buffer->info[i].codepoint; c 615 third_party/harfbuzz-ng/src/hb-coretext.cc if (likely (c < 0x10000)) c 616 third_party/harfbuzz-ng/src/hb-coretext.cc pchars[chars_len++] = c; c 617 third_party/harfbuzz-ng/src/hb-coretext.cc else if (unlikely (c >= 0x110000)) c 620 third_party/harfbuzz-ng/src/hb-coretext.cc pchars[chars_len++] = 0xD800 + ((c - 0x10000) >> 10); c 621 third_party/harfbuzz-ng/src/hb-coretext.cc pchars[chars_len++] = 0xDC00 + ((c - 0x10000) & ((1 << 10) - 1)); c 644 third_party/harfbuzz-ng/src/hb-coretext.cc hb_codepoint_t c = buffer->info[i].codepoint; c 647 third_party/harfbuzz-ng/src/hb-coretext.cc if (c >= 0x10000 && c < 0x110000) c 312 third_party/harfbuzz-ng/src/hb-glib.cc hb_codepoint_t c = g_utf8_get_char (recomposed); c 313 third_party/harfbuzz-ng/src/hb-glib.cc if (c != ab && c != *a) { c 314 third_party/harfbuzz-ng/src/hb-glib.cc *a = c; c 349 third_party/harfbuzz-ng/src/hb-glib.cc gchar *utf8_decomposed, *c; c 359 third_party/harfbuzz-ng/src/hb-glib.cc for (i = 0, c = utf8_decomposed; i < utf8_decomposed_len; i++, c = g_utf8_next_char (c)) c 360 third_party/harfbuzz-ng/src/hb-glib.cc *decomposed++ = g_utf8_get_char (c); c 69 third_party/harfbuzz-ng/src/hb-gobject-structs.cc hb_feature_t *c = (hb_feature_t *) calloc (1, sizeof (hb_feature_t)); c 70 third_party/harfbuzz-ng/src/hb-gobject-structs.cc if (unlikely (!c)) return NULL; c 71 third_party/harfbuzz-ng/src/hb-gobject-structs.cc *c = *g; c 72 third_party/harfbuzz-ng/src/hb-gobject-structs.cc return c; c 79 third_party/harfbuzz-ng/src/hb-gobject-structs.cc hb_glyph_info_t *c = (hb_glyph_info_t *) calloc (1, sizeof (hb_glyph_info_t)); c 80 third_party/harfbuzz-ng/src/hb-gobject-structs.cc if (unlikely (!c)) return NULL; c 81 third_party/harfbuzz-ng/src/hb-gobject-structs.cc *c = *g; c 82 third_party/harfbuzz-ng/src/hb-gobject-structs.cc return c; c 89 third_party/harfbuzz-ng/src/hb-gobject-structs.cc hb_glyph_position_t *c = (hb_glyph_position_t *) calloc (1, sizeof (hb_glyph_position_t)); c 90 third_party/harfbuzz-ng/src/hb-gobject-structs.cc if (unlikely (!c)) return NULL; c 91 third_party/harfbuzz-ng/src/hb-gobject-structs.cc *c = *g; c 92 third_party/harfbuzz-ng/src/hb-gobject-structs.cc return c; c 99 third_party/harfbuzz-ng/src/hb-gobject-structs.cc hb_segment_properties_t *c = (hb_segment_properties_t *) calloc (1, sizeof (hb_segment_properties_t)); c 100 third_party/harfbuzz-ng/src/hb-gobject-structs.cc if (unlikely (!c)) return NULL; c 101 third_party/harfbuzz-ng/src/hb-gobject-structs.cc *c = *g; c 102 third_party/harfbuzz-ng/src/hb-gobject-structs.cc return c; c 114 third_party/harfbuzz-ng/src/hb-gobject-structs.cc hb_language_t *c = (hb_language_t *) calloc (1, sizeof (hb_language_t)); c 115 third_party/harfbuzz-ng/src/hb-gobject-structs.cc if (unlikely (!c)) return NULL; c 116 third_party/harfbuzz-ng/src/hb-gobject-structs.cc *c = *l; c 117 third_party/harfbuzz-ng/src/hb-gobject-structs.cc return c; c 317 third_party/harfbuzz-ng/src/hb-graphite2.cc hb_graphite2_cluster_t *c = clusters + ci + 1; c 318 third_party/harfbuzz-ng/src/hb-graphite2.cc c->base_char = clusters[ci].base_char + clusters[ci].num_chars; c 319 third_party/harfbuzz-ng/src/hb-graphite2.cc c->num_chars = before - c->base_char; c 320 third_party/harfbuzz-ng/src/hb-graphite2.cc c->base_glyph = ic; c 321 third_party/harfbuzz-ng/src/hb-graphite2.cc c->num_glyphs = 0; c 286 third_party/harfbuzz-ng/src/hb-icu.cc hb_codepoint_t c; c 287 third_party/harfbuzz-ng/src/hb-icu.cc U16_GET_UNSAFE (recomposed, 0, c); c 288 third_party/harfbuzz-ng/src/hb-icu.cc if (c != *a && c != ab) { c 289 third_party/harfbuzz-ng/src/hb-icu.cc *a = c; c 56 third_party/harfbuzz-ng/src/hb-open-file-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 58 third_party/harfbuzz-ng/src/hb-open-file-private.hh return TRACE_RETURN (c->check_struct (this)); c 105 third_party/harfbuzz-ng/src/hb-open-file-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 107 third_party/harfbuzz-ng/src/hb-open-file-private.hh return TRACE_RETURN (c->check_struct (this) && c->check_array (tables, TableRecord::static_size, numTables)); c 133 third_party/harfbuzz-ng/src/hb-open-file-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 135 third_party/harfbuzz-ng/src/hb-open-file-private.hh return TRACE_RETURN (table.sanitize (c, this)); c 172 third_party/harfbuzz-ng/src/hb-open-file-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 174 third_party/harfbuzz-ng/src/hb-open-file-private.hh if (unlikely (!u.header.version.sanitize (c))) return TRACE_RETURN (false); c 177 third_party/harfbuzz-ng/src/hb-open-file-private.hh case 1: return TRACE_RETURN (u.version1.sanitize (c)); c 234 third_party/harfbuzz-ng/src/hb-open-file-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 236 third_party/harfbuzz-ng/src/hb-open-file-private.hh if (unlikely (!u.tag.sanitize (c))) return TRACE_RETURN (false); c 241 third_party/harfbuzz-ng/src/hb-open-file-private.hh case TrueTypeTag: return TRACE_RETURN (u.fontFace.sanitize (c)); c 242 third_party/harfbuzz-ng/src/hb-open-file-private.hh case TTCTag: return TRACE_RETURN (u.ttcHeader.sanitize (c)); c 169 third_party/harfbuzz-ng/src/hb-open-type-private.hh (&c->debug_depth, c->get_name (), this, HB_FUNC, \ c 283 third_party/harfbuzz-ng/src/hb-open-type-private.hh hb_sanitize_context_t c[1] = {{0}}; c 288 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->init (blob); c 293 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->start_processing (); c 295 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->start)) { c 296 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->end_processing (); c 300 third_party/harfbuzz-ng/src/hb-open-type-private.hh Type *t = CastP<Type> (const_cast<char *> (c->start)); c 302 third_party/harfbuzz-ng/src/hb-open-type-private.hh sane = t->sanitize (c); c 304 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (c->edit_count) { c 305 third_party/harfbuzz-ng/src/hb-open-type-private.hh DEBUG_MSG_FUNC (SANITIZE, blob, "passed first round with %d edits; going for second round", c->edit_count); c 308 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->edit_count = 0; c 309 third_party/harfbuzz-ng/src/hb-open-type-private.hh sane = t->sanitize (c); c 310 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (c->edit_count) { c 311 third_party/harfbuzz-ng/src/hb-open-type-private.hh DEBUG_MSG_FUNC (SANITIZE, blob, "requested %d edits in second round; FAILLING", c->edit_count); c 316 third_party/harfbuzz-ng/src/hb-open-type-private.hh unsigned int edit_count = c->edit_count; c 317 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (edit_count && !c->writable) { c 318 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->start = hb_blob_get_data_writable (blob, NULL); c 319 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->end = c->start + hb_blob_get_length (blob); c 321 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (c->start) { c 322 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->writable = true; c 330 third_party/harfbuzz-ng/src/hb-open-type-private.hh c->end_processing (); c 361 third_party/harfbuzz-ng/src/hb-open-type-private.hh (&c->debug_depth, "SERIALIZE", c, HB_FUNC, \ c 565 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 567 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (likely (c->check_struct (this))); c 591 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 593 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (likely (c->check_struct (this))); c 671 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 673 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (c->check_struct (this)); c 699 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline Type& serialize (hb_serialize_context_t *c, void *base) c 701 third_party/harfbuzz-ng/src/hb-open-type-private.hh Type *t = c->start_embed<Type> (); c 706 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c, void *base) { c 708 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->check_struct (this))) return TRACE_RETURN (false); c 712 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (likely (obj.sanitize (c)) || neuter (c)); c 715 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c, void *base, T user_data) { c 717 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->check_struct (this))) return TRACE_RETURN (false); c 721 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (likely (obj.sanitize (c, user_data)) || neuter (c)); c 724 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool try_set (hb_sanitize_context_t *c, const OffsetType &v) { c 725 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (c->may_edit (this, this->static_size)) { c 732 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool neuter (hb_sanitize_context_t *c) { c 733 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (c->may_edit (this, this->static_size)) { c 783 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool serialize (hb_serialize_context_t *c, c 787 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 789 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->extend (*this))) return TRACE_RETURN (false); c 793 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool serialize (hb_serialize_context_t *c, c 798 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!serialize (c, items_len))) return TRACE_RETURN (false); c 805 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 807 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!sanitize_shallow (c))) return TRACE_RETURN (false); c 816 third_party/harfbuzz-ng/src/hb-open-type-private.hh (void) (false && array[0].sanitize (c)); c 820 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c, void *base) { c 822 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!sanitize_shallow (c))) return TRACE_RETURN (false); c 825 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!array[i].sanitize (c, base))) c 830 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c, void *base, T user_data) { c 832 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!sanitize_shallow (c))) return TRACE_RETURN (false); c 835 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!array[i].sanitize (c, base, user_data))) c 841 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize_shallow (hb_sanitize_context_t *c) { c 843 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (c->check_struct (this) && c->check_array (this, Type::static_size, len)); c 883 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 885 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (OffsetArrayOf<Type>::sanitize (c, this)); c 888 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c, T user_data) { c 890 third_party/harfbuzz-ng/src/hb-open-type-private.hh return TRACE_RETURN (OffsetArrayOf<Type>::sanitize (c, this, user_data)); c 908 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool serialize (hb_serialize_context_t *c, c 913 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 916 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!c->extend (*this))) return TRACE_RETURN (false); c 923 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize_shallow (hb_sanitize_context_t *c) { c 924 third_party/harfbuzz-ng/src/hb-open-type-private.hh return c->check_struct (this) c 925 third_party/harfbuzz-ng/src/hb-open-type-private.hh && c->check_array (this, Type::static_size, len); c 928 third_party/harfbuzz-ng/src/hb-open-type-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 930 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (unlikely (!sanitize_shallow (c))) return TRACE_RETURN (false); c 939 third_party/harfbuzz-ng/src/hb-open-type-private.hh (void) (false && array[0].sanitize (c)); c 963 third_party/harfbuzz-ng/src/hb-open-type-private.hh int c = this->array[mid].cmp (x); c 964 third_party/harfbuzz-ng/src/hb-open-type-private.hh if (c < 0) c 966 third_party/harfbuzz-ng/src/hb-open-type-private.hh else if (c > 0) c 54 third_party/harfbuzz-ng/src/hb-ot-head-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 56 third_party/harfbuzz-ng/src/hb-ot-head-table.hh return TRACE_RETURN (c->check_struct (this) && likely (version.major == 1)); c 47 third_party/harfbuzz-ng/src/hb-ot-hhea-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 49 third_party/harfbuzz-ng/src/hb-ot-hhea-table.hh return TRACE_RETURN (c->check_struct (this) && likely (version.major == 1)); c 55 third_party/harfbuzz-ng/src/hb-ot-hmtx-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 68 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c, void *base) { c 71 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this) && offset.sanitize (c, base, &closure)); c 123 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 125 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (RecordArrayOf<Type>::sanitize (c, this)); c 136 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 138 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this)); c 200 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c, c 203 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this) && featureIndex.sanitize (c)); c 239 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c, c 242 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (defaultLangSys.sanitize (c, this) && langSys.sanitize (c, this)); c 262 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 264 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->check_struct (this))) return TRACE_RETURN (false); c 373 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 377 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this)); c 406 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 408 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this) && c 409 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh characters.sanitize (c)); c 446 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c, hb_tag_t tag) { c 449 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (u.size.sanitize (c)); c 451 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (u.stylisticSet.sanitize (c)); c 453 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (u.characterVariants.sanitize (c)); c 487 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c, c 490 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!(c->check_struct (this) && lookupIndex.sanitize (c)))) c 505 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!featureParams.sanitize (c, this, closure ? closure->tag : HB_TAG_NONE))) c 522 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh featureParams.try_set (c, new_offset) && c 523 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh !featureParams.sanitize (c, this, closure ? closure->tag : HB_TAG_NONE)) c 579 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool serialize (hb_serialize_context_t *c, c 585 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 588 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!subTable.serialize (c, num_subtables))) return TRACE_RETURN (false); c 597 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 600 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (!(c->check_struct (this) && subTable.sanitize (c))) return TRACE_RETURN (false); c 604 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (!markFilteringSet.sanitize (c)) return TRACE_RETURN (false); c 639 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool serialize (hb_serialize_context_t *c, c 644 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 646 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->extend (glyphArray))) return TRACE_RETURN (false); c 653 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 655 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (glyphArray.sanitize (c)); c 672 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline void init (const struct CoverageFormat1 &c_) { c = &c_; i = 0; }; c 673 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool more (void) { return i < c->glyphArray.len; } c 675 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline uint16_t get_glyph (void) { return c->glyphArray[i]; } c 679 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh const struct CoverageFormat1 *c; c 707 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool serialize (hb_serialize_context_t *c, c 712 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 721 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->extend (rangeRecord))) return TRACE_RETURN (false); c 739 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 741 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (rangeRecord.sanitize (c)); c 770 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh c = &c_; c 773 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh j = c->rangeRecord.len ? c_.rangeRecord[0].start : 0; c 775 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool more (void) { return i < c->rangeRecord.len; } c 778 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (j == c->rangeRecord[i].end) { c 781 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh j = c->rangeRecord[i].start; c 790 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh const struct CoverageFormat2 *c; c 816 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool serialize (hb_serialize_context_t *c, c 821 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 828 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh case 1: return TRACE_RETURN (u.format1.serialize (c, glyphs, num_glyphs)); c 829 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh case 2: return TRACE_RETURN (u.format2.serialize (c, glyphs, num_glyphs)); c 834 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 836 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 838 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 839 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 945 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 947 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this) && classValue.sanitize (c)); c 1001 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1003 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (rangeRecord.sanitize (c)); c 1058 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1060 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1062 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1063 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 1150 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1152 third_party/harfbuzz-ng/src/hb-ot-layout-common-private.hh return TRACE_RETURN (c->check_struct (this) && c->check_range (this, this->get_size ())); c 74 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 76 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && attachPoint.sanitize (c, this)); c 104 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 106 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (c->check_struct (this)); c 130 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 132 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (c->check_struct (this)); c 153 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 155 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (c->check_struct (this) && deviceTable.sanitize (c, this)); c 181 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 183 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 185 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 186 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 187 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh case 3: return TRACE_RETURN (u.format3.sanitize (c)); c 222 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 224 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (carets.sanitize (c, this)); c 256 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 258 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && ligGlyph.sanitize (c, this)); c 278 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 280 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (coverage.sanitize (c, this)); c 302 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 304 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 306 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 367 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 369 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh return TRACE_RETURN (version.sanitize (c) && c 371 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh glyphClassDef.sanitize (c, this) && c 372 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh attachList.sanitize (c, this) && c 373 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh ligCaretList.sanitize (c, this) && c 374 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh markAttachClassDef.sanitize (c, this) && c 375 third_party/harfbuzz-ng/src/hb-ot-layout-gdef-table.hh (version.to_int () < 0x00010002 || markGlyphSetsDef[0].sanitize (c, this))); c 149 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize_value_devices (hb_sanitize_context_t *c, void *base, Value *values) { c 157 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if ((format & xPlaDevice) && !get_device (values++).sanitize (c, base)) return false; c 158 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if ((format & yPlaDevice) && !get_device (values++).sanitize (c, base)) return false; c 159 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if ((format & xAdvDevice) && !get_device (values++).sanitize (c, base)) return false; c 160 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if ((format & yAdvDevice) && !get_device (values++).sanitize (c, base)) return false; c 180 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize_value (hb_sanitize_context_t *c, void *base, Value *values) { c 182 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_range (values, get_size ()) && (!has_device () || sanitize_value_devices (c, base, values))); c 185 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize_values (hb_sanitize_context_t *c, void *base, Value *values, unsigned int count) { c 189 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!c->check_array (values, get_size (), count)) return TRACE_RETURN (false); c 194 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!sanitize_value_devices (c, base, values)) c 203 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize_values_stride_unsafe (hb_sanitize_context_t *c, void *base, Value *values, unsigned int count, unsigned int stride) { c 209 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!sanitize_value_devices (c, base, values)) c 228 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 230 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this)); c 257 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 259 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this)); c 285 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 287 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && xDeviceTable.sanitize (c, this) && yDeviceTable.sanitize (c, this)); c 320 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 322 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 324 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 325 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 326 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 3: return TRACE_RETURN (u.format3.sanitize (c)); c 352 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c, unsigned int cols) { c 354 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!c->check_struct (this)) return TRACE_RETURN (false); c 357 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!c->check_array (matrix, matrix[0].static_size, count)) return TRACE_RETURN (false); c 359 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!matrix[i].sanitize (c, this)) return TRACE_RETURN (false); c 377 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c, void *base) { c 379 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && markAnchor.sanitize (c, base)); c 393 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c, c 399 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 412 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh mark_anchor.get_anchor (c->font, buffer->cur().codepoint, &mark_x, &mark_y); c 413 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh glyph_anchor.get_anchor (c->font, buffer->info[glyph_pos].codepoint, &base_x, &base_y); c 424 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 426 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (ArrayOf<MarkRecord>::sanitize (c, this)); c 435 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 438 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+coverage).add_coverage (c->input); c 446 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 449 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 453 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormat.apply_value (c->font, c->direction, this, c 460 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 462 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && coverage.sanitize (c, this) && valueFormat.sanitize_value (c, this, values)); c 481 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 484 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+coverage).add_coverage (c->input); c 492 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 495 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 501 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormat.apply_value (c->font, c->direction, this, c 509 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 511 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && coverage.sanitize (c, this) && valueFormat.sanitize_values (c, this, values, valueCount)); c 531 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 535 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 536 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 2: return TRACE_RETURN (c->dispatch (u.format2)); c 537 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 541 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 543 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 545 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 546 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 578 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c, c 590 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh c->input->add (record->secondGlyph); c 595 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c, c 600 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 612 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormats[0].apply_value (c->font, c->direction, this, c 614 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormats[1].apply_value (c->font, c->direction, this, c 634 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c, const sanitize_closure_t *closure) { c 636 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!(c->check_struct (this) c 637 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh && c->check_array (array, USHORT::static_size * closure->stride, len))) return TRACE_RETURN (false); c 641 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (closure->valueFormats[0].sanitize_values_stride_unsafe (c, closure->base, &record->values[0], count, closure->stride) c 642 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh && closure->valueFormats[1].sanitize_values_stride_unsafe (c, closure->base, &record->values[closure->len1], count, closure->stride)); c 655 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 658 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+coverage).add_coverage (c->input); c 661 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+pairSet[i]).collect_glyphs (c, &valueFormat1); c 669 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 672 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 673 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, buffer->idx, 1); c 681 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN ((this+pairSet[index]).apply (c, &valueFormat1, skippy_iter.idx)); c 684 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 696 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && coverage.sanitize (c, this) && pairSet.sanitize (c, this, &closure)); c 719 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 727 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh klass1.add_class (c->input, i); c 732 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh klass2.add_class (c->input, i); c 740 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 743 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 744 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, buffer->idx, 1); c 761 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormat1.apply_value (c->font, c->direction, this, c 763 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormat2.apply_value (c->font, c->direction, this, c 773 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 775 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!(c->check_struct (this) c 776 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh && coverage.sanitize (c, this) c 777 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh && classDef1.sanitize (c, this) c 778 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh && classDef2.sanitize (c, this))) return TRACE_RETURN (false); c 785 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_array (values, record_size, count) && c 786 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormat1.sanitize_values_stride_unsafe (c, this, &values[0], count, stride) && c 787 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh valueFormat2.sanitize_values_stride_unsafe (c, this, &values[len1], count, stride)); c 823 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 827 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 828 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 2: return TRACE_RETURN (c->dispatch (u.format2)); c 829 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 833 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 835 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 837 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 838 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 856 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c, void *base) { c 858 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (entryAnchor.sanitize (c, base) && exitAnchor.sanitize (c, base)); c 876 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 879 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+coverage).add_coverage (c->input); c 887 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 890 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 895 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, buffer->idx, 1); c 910 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+this_record.exitAnchor).get_anchor (c->font, buffer->info[i].codepoint, &exit_x, &exit_y); c 911 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+next_record.entryAnchor).get_anchor (c->font, buffer->info[j].codepoint, &entry_x, &entry_y); c 917 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh switch (c->direction) { c 952 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (c->lookup_props & LookupFlag::RightToLeft) { c 954 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (likely (HB_DIRECTION_IS_HORIZONTAL (c->direction))) c 960 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (likely (HB_DIRECTION_IS_HORIZONTAL (c->direction))) c 970 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 972 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && entryExitRecord.sanitize (c, this)); c 990 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 994 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 995 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 999 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1001 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1003 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1023 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1026 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+markCoverage).add_coverage (c->input); c 1027 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+baseCoverage).add_coverage (c->input); c 1035 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 1038 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 1043 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_apply_context_t::skipping_backward_iterator_t skippy_iter (c, buffer->idx, 1); c 1058 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN ((this+markArray).apply (c, mark_index, base_index, this+baseArray, classCount, skippy_iter.idx)); c 1061 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1063 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && markCoverage.sanitize (c, this) && baseCoverage.sanitize (c, this) && c 1064 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh markArray.sanitize (c, this) && baseArray.sanitize (c, this, (unsigned int) classCount)); c 1089 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 1093 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 1094 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 1098 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1100 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1102 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1127 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1130 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+markCoverage).add_coverage (c->input); c 1131 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+ligatureCoverage).add_coverage (c->input); c 1139 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 1142 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 1147 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_apply_context_t::skipping_backward_iterator_t skippy_iter (c, buffer->idx, 1); c 1178 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN ((this+markArray).apply (c, mark_index, comp_index, lig_attach, classCount, j)); c 1181 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1183 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && markCoverage.sanitize (c, this) && ligatureCoverage.sanitize (c, this) && c 1184 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh markArray.sanitize (c, this) && ligatureArray.sanitize (c, this, (unsigned int) classCount)); c 1210 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 1214 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 1215 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 1219 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1221 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1223 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1243 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1246 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+mark1Coverage).add_coverage (c->input); c 1247 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh (this+mark2Coverage).add_coverage (c->input); c 1255 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply (hb_apply_context_t *c) const c 1258 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_buffer_t *buffer = c->buffer; c 1263 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_apply_context_t::skipping_backward_iterator_t skippy_iter (c, buffer->idx, 1); c 1264 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh skippy_iter.set_lookup_props (c->lookup_props & ~LookupFlag::IgnoreFlags); c 1295 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN ((this+mark1Array).apply (c, mark1_index, mark2_index, this+mark2Array, classCount, j)); c 1298 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1300 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->check_struct (this) && mark1Coverage.sanitize (c, this) && c 1301 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh mark2Coverage.sanitize (c, this) && mark1Array.sanitize (c, this) c 1302 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh && mark2Array.sanitize (c, this, (unsigned int) classCount)); c 1329 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 1333 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 1334 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 1338 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1340 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1342 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1388 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type) const c 1392 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Single: return TRACE_RETURN (u.single.dispatch (c)); c 1393 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Pair: return TRACE_RETURN (u.pair.dispatch (c)); c 1394 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Cursive: return TRACE_RETURN (u.cursive.dispatch (c)); c 1395 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case MarkBase: return TRACE_RETURN (u.markBase.dispatch (c)); c 1396 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case MarkLig: return TRACE_RETURN (u.markLig.dispatch (c)); c 1397 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case MarkMark: return TRACE_RETURN (u.markMark.dispatch (c)); c 1398 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Context: return TRACE_RETURN (u.context.dispatch (c)); c 1399 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case ChainContext: return TRACE_RETURN (u.chainContext.dispatch (c)); c 1400 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Extension: return TRACE_RETURN (u.extension.dispatch (c)); c 1401 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh default: return TRACE_RETURN (c->default_return_value ()); c 1405 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c, unsigned int lookup_type) { c 1407 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!u.header.sub_format.sanitize (c)) c 1410 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Single: return TRACE_RETURN (u.single.sanitize (c)); c 1411 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Pair: return TRACE_RETURN (u.pair.sanitize (c)); c 1412 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Cursive: return TRACE_RETURN (u.cursive.sanitize (c)); c 1413 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case MarkBase: return TRACE_RETURN (u.markBase.sanitize (c)); c 1414 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case MarkLig: return TRACE_RETURN (u.markLig.sanitize (c)); c 1415 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case MarkMark: return TRACE_RETURN (u.markMark.sanitize (c)); c 1416 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Context: return TRACE_RETURN (u.context.sanitize (c)); c 1417 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case ChainContext: return TRACE_RETURN (u.chainContext.sanitize (c)); c 1418 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh case Extension: return TRACE_RETURN (u.extension.sanitize (c)); c 1453 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline hb_collect_glyphs_context_t::return_t collect_glyphs (hb_collect_glyphs_context_t *c) const c 1456 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh c->set_recurse_func (NULL); c 1457 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (dispatch (c)); c 1463 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh hb_get_coverage_context_t c; c 1467 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh const Coverage *coverage = &get_subtable (i).dispatch (&c, get_type ()); c 1475 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool apply_once (hb_apply_context_t *c) const c 1478 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (!c->check_glyph_property (&c->buffer->cur(), c->lookup_props)) c 1480 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (dispatch (c)); c 1483 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh static bool apply_recurse_func (hb_apply_context_t *c, unsigned int lookup_index); c 1486 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh static inline typename context_t::return_t dispatch_recurse_func (context_t *c, unsigned int lookup_index); c 1489 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 1495 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh typename context_t::return_t r = get_subtable (i).dispatch (c, lookup_type); c 1496 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (c->stop_sublookup_iteration (r)) c 1499 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (c->default_return_value ()); c 1502 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1504 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (unlikely (!Lookup::sanitize (c))) return TRACE_RETURN (false); c 1506 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (list.sanitize (c, this, get_type ())); c 1526 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1528 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh if (unlikely (!GSUBGPOS::sanitize (c))) return TRACE_RETURN (false); c 1530 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return TRACE_RETURN (list.sanitize (c, this)); c 1611 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline typename context_t::return_t PosLookup::dispatch_recurse_func (context_t *c, unsigned int lookup_index) c 1613 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh const GPOS &gpos = *(hb_ot_layout_from_face (c->face)->gpos); c 1615 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh return l.dispatch (c); c 1618 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh inline bool PosLookup::apply_recurse_func (hb_apply_context_t *c, unsigned int lookup_index) c 1620 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh const GPOS &gpos = *(hb_ot_layout_from_face (c->face)->gpos); c 1622 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh unsigned int saved_lookup_props = c->lookup_props; c 1623 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh c->set_lookup (l); c 1624 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh bool ret = l.apply_once (c); c 1625 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh c->lookup_props = saved_lookup_props; c 40 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 46 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->glyphs->has (glyph_id)) c 47 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->glyphs->add ((glyph_id + deltaGlyphID) & 0xFFFF); c 51 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 57 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->input->add (glyph_id); c 58 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output->add ((glyph_id + deltaGlyphID) & 0xFFFF); c 67 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 70 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (c->len == 1 && (this+coverage).get_coverage (c->glyphs[0]) != NOT_COVERED); c 73 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 76 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_codepoint_t glyph_id = c->buffer->cur().codepoint; c 83 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->replace_glyph (glyph_id); c 88 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 94 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 95 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return TRACE_RETURN (false); c 100 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 102 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && deltaGlyphID.sanitize (c)); c 118 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 123 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->glyphs->has (iter.get_glyph ())) c 124 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->glyphs->add (substitute[iter.get_coverage ()]); c 128 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 133 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->input->add (iter.get_glyph ()); c 134 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output->add (substitute[iter.get_coverage ()]); c 143 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 146 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (c->len == 1 && (this+coverage).get_coverage (c->glyphs[0]) != NOT_COVERED); c 149 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 152 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_codepoint_t glyph_id = c->buffer->cur().codepoint; c 159 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->replace_glyph (glyph_id); c 164 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 170 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 171 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!substitute.serialize (c, substitutes, num_glyphs))) return TRACE_RETURN (false); c 172 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return TRACE_RETURN (false); c 176 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 178 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && substitute.sanitize (c)); c 195 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 201 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (u.format))) return TRACE_RETURN (false); c 216 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.serialize (c, glyphs, num_glyphs, delta)); c 217 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 2: return TRACE_RETURN (u.format2.serialize (c, glyphs, substitutes, num_glyphs)); c 223 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 227 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 228 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 2: return TRACE_RETURN (c->dispatch (u.format2)); c 229 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 233 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 235 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 237 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 238 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 254 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 259 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->glyphs->add (substitute[i]); c 262 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 267 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output->add (substitute[i]); c 270 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 275 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh unsigned int klass = _hb_glyph_info_is_ligature (&c->buffer->cur()) ? c 280 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->replace_glyph (substitute.array[0]); c 285 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh _hb_glyph_info_set_lig_props_for_component (&c->buffer->cur(), i); c 286 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output_glyph (substitute.array[i], klass); c 288 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->buffer->skip_glyph (); c 294 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 299 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 300 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!substitute.serialize (c, glyphs, num_glyphs))) return TRACE_RETURN (false); c 304 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 306 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (substitute.sanitize (c)); c 318 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 323 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->glyphs->has (iter.get_glyph ())) c 324 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+sequence[iter.get_coverage ()]).closure (c); c 328 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 331 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+coverage).add_coverage (c->input); c 334 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+sequence[i]).collect_glyphs (c); c 342 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 345 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (c->len == 1 && (this+coverage).get_coverage (c->glyphs[0]) != NOT_COVERED); c 348 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 352 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); c 355 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN ((this+sequence[index]).apply (c)); c 358 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 365 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 366 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!sequence.serialize (c, num_glyphs))) return TRACE_RETURN (false); c 368 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!sequence[i].serialize (c, this).serialize (c, c 372 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return TRACE_RETURN (false); c 376 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 378 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && sequence.sanitize (c, this)); c 395 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 402 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (u.format))) return TRACE_RETURN (false); c 406 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.serialize (c, glyphs, substitute_len_list, num_glyphs, substitute_glyphs_list)); c 412 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 416 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 417 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 421 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 423 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 425 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 443 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 448 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->glyphs->has (iter.get_glyph ())) { c 452 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->glyphs->add (alt_set[i]); c 457 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 462 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->input->add (iter.get_glyph ()); c 466 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output->add (alt_set[i]); c 475 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 478 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (c->len == 1 && (this+coverage).get_coverage (c->glyphs[0]) != NOT_COVERED); c 481 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 484 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_codepoint_t glyph_id = c->buffer->cur().codepoint; c 493 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_mask_t glyph_mask = c->buffer->cur().mask; c 494 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_mask_t lookup_mask = c->lookup_mask; c 504 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->replace_glyph (glyph_id); c 509 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 516 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 517 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!alternateSet.serialize (c, num_glyphs))) return TRACE_RETURN (false); c 519 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!alternateSet[i].serialize (c, this).serialize (c, c 523 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return TRACE_RETURN (false); c 527 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 529 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && alternateSet.sanitize (c, this)); c 546 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 553 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (u.format))) return TRACE_RETURN (false); c 557 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.serialize (c, glyphs, alternate_len_list, num_glyphs, alternate_glyphs_list)); c 563 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 567 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 568 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 572 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 574 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 576 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 591 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 596 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!c->glyphs->has (component[i])) c 598 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->glyphs->add (ligGlyph); c 601 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 606 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->input->add (component[i]); c 607 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output->add (ligGlyph); c 610 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 613 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->len != component.len) c 616 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh for (unsigned int i = 1; i < c->len; i++) c 617 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (likely (c->glyphs[i] != component[i])) c 623 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 635 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (likely (!match_input (c, count, c 645 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh ligate_input (c, c 656 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 662 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 664 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!component.serialize (c, components, num_components))) return TRACE_RETURN (false); c 669 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 671 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (ligGlyph.sanitize (c) && component.sanitize (c)); c 686 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 691 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+ligature[i]).closure (c); c 694 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 699 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+ligature[i]).collect_glyphs (c); c 702 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 709 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (lig.would_apply (c)) c 715 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 722 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (lig.apply (c)) return TRACE_RETURN (true); c 728 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 735 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 736 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!ligature.serialize (c, num_ligatures))) return TRACE_RETURN (false); c 738 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!ligature[i].serialize (c, this).serialize (c, c 747 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 749 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (ligature.sanitize (c, this)); c 762 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 767 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->glyphs->has (iter.get_glyph ())) c 768 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+ligatureSet[iter.get_coverage ()]).closure (c); c 772 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 777 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->input->add (iter.get_glyph ()); c 778 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+ligatureSet[iter.get_coverage ()]).collect_glyphs (c); c 787 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 790 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh unsigned int index = (this+coverage).get_coverage (c->glyphs[0]); c 794 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (lig_set.would_apply (c)); c 797 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 800 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_codepoint_t glyph_id = c->buffer->cur().codepoint; c 806 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (lig_set.apply (c)); c 809 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 818 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (*this))) return TRACE_RETURN (false); c 819 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!ligatureSet.serialize (c, num_first_glyphs))) return TRACE_RETURN (false); c 821 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!ligatureSet[i].serialize (c, this).serialize (c, c 827 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!coverage.serialize (c, this).serialize (c, first_glyphs, num_first_glyphs))) return TRACE_RETURN (false); c 831 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 833 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (coverage.sanitize (c, this) && ligatureSet.sanitize (c, this)); c 850 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize (hb_serialize_context_t *c, c 859 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->extend_min (u.format))) return TRACE_RETURN (false); c 863 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.serialize (c, first_glyphs, ligature_per_first_glyph_count_list, num_first_glyphs, c 870 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 874 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 875 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 879 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 881 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 883 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 910 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void closure (hb_closure_context_t *c) const c 919 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!(this+backtrack[i]).intersects (c->glyphs)) c 924 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!(this+lookahead[i]).intersects (c->glyphs)) c 930 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->glyphs->has (iter.get_glyph ())) c 931 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->glyphs->add (substitute[iter.get_coverage ()]); c 935 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 943 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+coverage).add_coverage (c->input); c 947 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+backtrack[i]).add_coverage (c->before); c 951 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh (this+lookahead[i]).add_coverage (c->after); c 956 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->output->add (substitute[i]); c 964 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c) const c 967 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (c->len == 1 && (this+coverage).get_coverage (c->glyphs[0]) != NOT_COVERED); c 970 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply (hb_apply_context_t *c) const c 973 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (c->nesting_level_left != MAX_NESTING_LEVEL)) c 976 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); c 982 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (match_backtrack (c, c 985 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh match_lookahead (c, c 990 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->replace_glyph_inplace (substitute[index]); c 1000 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1002 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!(coverage.sanitize (c, this) && backtrack.sanitize (c, this))) c 1005 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!lookahead.sanitize (c, this)) c 1008 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (substitute.sanitize (c)); c 1034 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 1038 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 1039 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh default:return TRACE_RETURN (c->default_return_value ()); c 1043 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1045 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1047 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1081 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type) const c 1085 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Single: return TRACE_RETURN (u.single.dispatch (c)); c 1086 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Multiple: return TRACE_RETURN (u.multiple.dispatch (c)); c 1087 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Alternate: return TRACE_RETURN (u.alternate.dispatch (c)); c 1088 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Ligature: return TRACE_RETURN (u.ligature.dispatch (c)); c 1089 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Context: return TRACE_RETURN (u.context.dispatch (c)); c 1090 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case ChainContext: return TRACE_RETURN (u.chainContext.dispatch (c)); c 1091 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Extension: return TRACE_RETURN (u.extension.dispatch (c)); c 1092 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case ReverseChainSingle: return TRACE_RETURN (u.reverseChainContextSingle.dispatch (c)); c 1093 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh default: return TRACE_RETURN (c->default_return_value ()); c 1097 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c, unsigned int lookup_type) { c 1099 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!u.header.sub_format.sanitize (c)) c 1102 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Single: return TRACE_RETURN (u.single.sanitize (c)); c 1103 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Multiple: return TRACE_RETURN (u.multiple.sanitize (c)); c 1104 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Alternate: return TRACE_RETURN (u.alternate.sanitize (c)); c 1105 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Ligature: return TRACE_RETURN (u.ligature.sanitize (c)); c 1106 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Context: return TRACE_RETURN (u.context.sanitize (c)); c 1107 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case ChainContext: return TRACE_RETURN (u.chainContext.sanitize (c)); c 1108 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case Extension: return TRACE_RETURN (u.extension.sanitize (c)); c 1109 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh case ReverseChainSingle: return TRACE_RETURN (u.reverseChainContextSingle.sanitize (c)); c 1149 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline hb_closure_context_t::return_t closure (hb_closure_context_t *c) const c 1152 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->set_recurse_func (dispatch_recurse_func<hb_closure_context_t>); c 1153 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (dispatch (c)); c 1156 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline hb_collect_glyphs_context_t::return_t collect_glyphs (hb_collect_glyphs_context_t *c) const c 1159 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->set_recurse_func (dispatch_recurse_func<hb_collect_glyphs_context_t>); c 1160 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (dispatch (c)); c 1166 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh hb_get_coverage_context_t c; c 1170 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh const Coverage *coverage = &get_subtable (i).dispatch (&c, get_type ()); c 1178 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool would_apply (hb_would_apply_context_t *c, const hb_set_digest_t *digest) const c 1181 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!c->len)) return TRACE_RETURN (false); c 1182 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!digest->may_have (c->glyphs[0])) return TRACE_RETURN (false); c 1183 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (dispatch (c)); c 1186 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool apply_once (hb_apply_context_t *c) const c 1189 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (!c->check_glyph_property (&c->buffer->cur(), c->lookup_props)) c 1191 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (dispatch (c)); c 1194 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh static bool apply_recurse_func (hb_apply_context_t *c, unsigned int lookup_index); c 1196 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline SubstLookupSubTable& serialize_subtable (hb_serialize_context_t *c, c 1198 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh { return CastR<OffsetArrayOf<SubstLookupSubTable> > (subTable)[i].serialize (c, this); } c 1200 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize_single (hb_serialize_context_t *c, c 1207 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!Lookup::serialize (c, SubstLookupSubTable::Single, lookup_props, 1))) return TRACE_RETURN (false); c 1208 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (serialize_subtable (c, 0).u.single.serialize (c, glyphs, substitutes, num_glyphs)); c 1211 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize_multiple (hb_serialize_context_t *c, c 1219 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!Lookup::serialize (c, SubstLookupSubTable::Multiple, lookup_props, 1))) return TRACE_RETURN (false); c 1220 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (serialize_subtable (c, 0).u.multiple.serialize (c, glyphs, substitute_len_list, num_glyphs, c 1224 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize_alternate (hb_serialize_context_t *c, c 1232 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!Lookup::serialize (c, SubstLookupSubTable::Alternate, lookup_props, 1))) return TRACE_RETURN (false); c 1233 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (serialize_subtable (c, 0).u.alternate.serialize (c, glyphs, alternate_len_list, num_glyphs, c 1237 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool serialize_ligature (hb_serialize_context_t *c, c 1247 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!Lookup::serialize (c, SubstLookupSubTable::Ligature, lookup_props, 1))) return TRACE_RETURN (false); c 1248 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (serialize_subtable (c, 0).u.ligature.serialize (c, first_glyphs, ligature_per_first_glyph_count_list, num_first_glyphs, c 1253 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh static inline typename context_t::return_t dispatch_recurse_func (context_t *c, unsigned int lookup_index); c 1256 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t dispatch (context_t *c) const c 1262 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh typename context_t::return_t r = get_subtable (i).dispatch (c, lookup_type); c 1263 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (c->stop_sublookup_iteration (r)) c 1266 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (c->default_return_value ()); c 1269 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) c 1272 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!Lookup::sanitize (c))) return TRACE_RETURN (false); c 1274 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!list.sanitize (c, this, get_type ()))) return TRACE_RETURN (false); c 1307 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1309 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh if (unlikely (!GSUBGPOS::sanitize (c))) return TRACE_RETURN (false); c 1311 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return TRACE_RETURN (list.sanitize (c, this)); c 1350 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline typename context_t::return_t SubstLookup::dispatch_recurse_func (context_t *c, unsigned int lookup_index) c 1352 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh const GSUB &gsub = *(hb_ot_layout_from_face (c->face)->gsub); c 1354 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh return l.dispatch (c); c 1357 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh inline bool SubstLookup::apply_recurse_func (hb_apply_context_t *c, unsigned int lookup_index) c 1359 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh const GSUB &gsub = *(hb_ot_layout_from_face (c->face)->gsub); c 1361 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh unsigned int saved_lookup_props = c->lookup_props; c 1362 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->set_lookup (l); c 1363 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh bool ret = l.apply_once (c); c 1364 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh c->lookup_props = saved_lookup_props; c 43 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (&c->debug_depth, c->get_name (), this, HB_FUNC, \ c 52 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (&c->debug_depth, c->get_name (), this, HB_FUNC, \ c 60 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh typedef return_t (*recurse_func_t) (hb_closure_context_t *c, unsigned int lookup_index); c 102 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (&c->debug_depth, c->get_name (), this, HB_FUNC, \ c 103 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh "%d glyphs", c->len); c 140 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (&c->debug_depth, c->get_name (), this, HB_FUNC, \ c 148 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh typedef return_t (*recurse_func_t) (hb_collect_glyphs_context_t *c, unsigned int lookup_index); c 239 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (&c->debug_depth, c->get_name (), this, HB_FUNC, \ c 240 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh "idx %d codepoint %u", c->buffer->idx, c->buffer->cur().codepoint); c 247 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh typedef return_t (*recurse_func_t) (hb_apply_context_t *c, unsigned int lookup_index); c 349 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh may_skip (const hb_apply_context_t *c, c 356 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!c->match_properties (info.codepoint, property, lookup_props)) c 385 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh c (c_), c 388 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh end (c->buffer->len) c 390 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_lookup_props (c->lookup_props); c 392 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_ignore_zwnj (context_match || c->table_index == 1); c 394 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_ignore_zwj (context_match || c->table_index == 1 || c->auto_zwj); c 396 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_mask (c->lookup_mask); c 397 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_syllable (start_index_ == c->buffer->idx ? c->buffer->cur().syllable () : 0); c 417 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh const hb_glyph_info_t &info = c->buffer->info[idx]; c 419 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher_t::may_skip_t skip = matcher.may_skip (c, info); c 441 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_apply_context_t *c; c 456 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh c (c_), c 460 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_lookup_props (c->lookup_props); c 462 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_ignore_zwnj (context_match || c->table_index == 1); c 464 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_ignore_zwj (context_match || c->table_index == 1 || c->auto_zwj); c 466 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_mask (c->lookup_mask); c 467 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher.set_syllable (start_index_ == c->buffer->idx ? c->buffer->cur().syllable () : 0); c 487 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh const hb_glyph_info_t &info = c->buffer->out_info[idx]; c 489 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh matcher_t::may_skip_t skip = matcher.may_skip (c, info); c 512 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_apply_context_t *c; c 642 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool intersects_array (hb_closure_context_t *c, c 649 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (likely (!intersects_func (c->glyphs, values[i], intersects_data))) c 669 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void collect_array (hb_collect_glyphs_context_t *c HB_UNUSED, c 696 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool would_match_input (hb_would_apply_context_t *c, c 702 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (count != c->len) c 706 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (likely (!match_func (c->glyphs[i], input[i - 1], match_data))) c 711 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool match_input (hb_apply_context_t *c, c 725 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_buffer_t *buffer = c->buffer; c 727 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, buffer->idx, count - 1); c 795 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void ligate_input (hb_apply_context_t *c, c 805 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_buffer_t *buffer = c->buffer; c 852 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh c->replace_glyph_with_ligature (lig_glyph, klass); c 887 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool match_backtrack (hb_apply_context_t *c, c 895 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_apply_context_t::skipping_backward_iterator_t skippy_iter (c, c->buffer->backtrack_len (), count, true); c 906 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool match_lookahead (hb_apply_context_t *c, c 915 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_apply_context_t::skipping_forward_iterator_t skippy_iter (c, c->buffer->idx + offset - 1, count, true); c 930 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 932 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (c->check_struct (this)); c 945 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void recurse_lookups (context_t *c, c 950 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh c->recurse (lookupRecord[i].lookupListIndex); c 953 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool apply_lookup (hb_apply_context_t *c, c 962 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh hb_buffer_t *buffer = c->buffer; c 986 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!c->recurse (lookupRecord[i].lookupListIndex)) c 1056 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void context_closure_lookup (hb_closure_context_t *c, c 1063 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (intersects_array (c, c 1066 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh recurse_lookups (c, c 1070 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c, c 1077 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh collect_array (c, c->input, c 1080 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh recurse_lookups (c, c 1084 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool context_would_apply_lookup (hb_would_apply_context_t *c, c 1091 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return would_match_input (c, c 1095 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool context_apply_lookup (hb_apply_context_t *c, c 1104 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return match_input (c, c 1108 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && apply_lookup (c, c 1116 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const c 1120 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh context_closure_lookup (c, c 1126 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const c 1130 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh context_collect_glyphs_lookup (c, c 1136 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const c 1140 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (context_would_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, lookup_context)); c 1143 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const c 1147 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (context_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, lookup_context)); c 1151 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1153 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return inputCount.sanitize (c) c 1154 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && lookupCount.sanitize (c) c 1155 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && c->check_range (input, c 1175 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const c 1180 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+rule[i]).closure (c, lookup_context); c 1183 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c, ContextCollectGlyphsLookupContext &lookup_context) const c 1188 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+rule[i]).collect_glyphs (c, lookup_context); c 1191 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c, ContextApplyLookupContext &lookup_context) const c 1197 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if ((this+rule[i]).would_apply (c, lookup_context)) c 1203 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const c 1209 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if ((this+rule[i]).apply (c, lookup_context)) c 1215 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1217 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule.sanitize (c, this)); c 1231 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c) const c 1244 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (cov.intersects_coverage (c->glyphs, i)) { c 1246 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh rule_set.closure (c, lookup_context); c 1250 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1253 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+coverage).add_coverage (c->input); c 1262 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+ruleSet[i]).collect_glyphs (c, lookup_context); c 1265 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c) const c 1269 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh const RuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])]; c 1274 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.would_apply (c, lookup_context)); c 1282 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c) const c 1285 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); c 1294 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.apply (c, lookup_context)); c 1297 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1299 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (coverage.sanitize (c, this) && ruleSet.sanitize (c, this)); c 1317 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c) const c 1320 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!(this+coverage).intersects (c->glyphs)) c 1332 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (class_def.intersects_class (c->glyphs, i)) { c 1334 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh rule_set.closure (c, lookup_context); c 1338 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1341 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+coverage).add_coverage (c->input); c 1351 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+ruleSet[i]).collect_glyphs (c, lookup_context); c 1354 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c) const c 1359 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = class_def.get_class (c->glyphs[0]); c 1365 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.would_apply (c, lookup_context)); c 1373 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c) const c 1376 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); c 1380 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh index = class_def.get_class (c->buffer->cur().codepoint); c 1386 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.apply (c, lookup_context)); c 1389 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1391 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (coverage.sanitize (c, this) && classDef.sanitize (c, this) && ruleSet.sanitize (c, this)); c 1412 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c) const c 1415 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!(this+coverage[0]).intersects (c->glyphs)) c 1423 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh context_closure_lookup (c, c 1429 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1432 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+coverage[0]).add_coverage (c->input); c 1440 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh context_collect_glyphs_lookup (c, c 1446 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c) const c 1455 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (context_would_apply_lookup (c, glyphCount, (const USHORT *) (coverage + 1), lookupCount, lookupRecord, lookup_context)); c 1463 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c) const c 1466 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = (this+coverage[0]).get_coverage (c->buffer->cur().codepoint); c 1474 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (context_apply_lookup (c, glyphCount, (const USHORT *) (coverage + 1), lookupCount, lookupRecord, lookup_context)); c 1477 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1479 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!c->check_struct (this)) return TRACE_RETURN (false); c 1481 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!c->check_array (coverage, coverage[0].static_size, count)) return TRACE_RETURN (false); c 1483 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!coverage[i].sanitize (c, this)) return TRACE_RETURN (false); c 1485 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount)); c 1505 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline typename context_t::return_t dispatch (context_t *c) const c 1509 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 1510 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 2: return TRACE_RETURN (c->dispatch (u.format2)); c 1511 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 3: return TRACE_RETURN (c->dispatch (u.format3)); c 1512 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh default:return TRACE_RETURN (c->default_return_value ()); c 1516 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1518 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 1520 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 1521 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 1522 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 3: return TRACE_RETURN (u.format3.sanitize (c)); c 1557 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void chain_context_closure_lookup (hb_closure_context_t *c, c 1568 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (intersects_array (c, c 1571 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && intersects_array (c, c 1574 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && intersects_array (c, c 1577 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh recurse_lookups (c, c 1581 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline void chain_context_collect_glyphs_lookup (hb_collect_glyphs_context_t *c, c 1592 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh collect_array (c, c->before, c 1595 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh collect_array (c, c->input, c 1598 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh collect_array (c, c->after, c 1601 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh recurse_lookups (c, c 1605 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool chain_context_would_apply_lookup (hb_would_apply_context_t *c, c 1616 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return (c->zero_context ? !backtrackCount && !lookaheadCount : true) c 1617 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && would_match_input (c, c 1622 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh static inline bool chain_context_apply_lookup (hb_apply_context_t *c, c 1635 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return match_input (c, c 1639 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && match_backtrack (c, c 1642 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && match_lookahead (c, c 1646 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh && apply_lookup (c, c 1654 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const c 1660 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh chain_context_closure_lookup (c, c 1668 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const c 1674 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh chain_context_collect_glyphs_lookup (c, c 1682 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const c 1688 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (chain_context_would_apply_lookup (c, c 1695 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const c 1701 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (chain_context_apply_lookup (c, c 1708 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1710 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!backtrack.sanitize (c)) return TRACE_RETURN (false); c 1712 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!input.sanitize (c)) return TRACE_RETURN (false); c 1714 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!lookahead.sanitize (c)) return TRACE_RETURN (false); c 1716 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (lookup.sanitize (c)); c 1739 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const c 1744 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+rule[i]).closure (c, lookup_context); c 1747 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c, ChainContextCollectGlyphsLookupContext &lookup_context) const c 1752 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+rule[i]).collect_glyphs (c, lookup_context); c 1755 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const c 1760 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if ((this+rule[i]).would_apply (c, lookup_context)) c 1766 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const c 1771 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if ((this+rule[i]).apply (c, lookup_context)) c 1777 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1779 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule.sanitize (c, this)); c 1792 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c) const c 1804 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (cov.intersects_coverage (c->glyphs, i)) { c 1806 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh rule_set.closure (c, lookup_context); c 1810 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1813 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+coverage).add_coverage (c->input); c 1822 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+ruleSet[i]).collect_glyphs (c, lookup_context); c 1825 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c) const c 1829 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh const ChainRuleSet &rule_set = this+ruleSet[(this+coverage).get_coverage (c->glyphs[0])]; c 1834 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.would_apply (c, lookup_context)); c 1842 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c) const c 1845 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); c 1853 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.apply (c, lookup_context)); c 1856 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1858 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (coverage.sanitize (c, this) && ruleSet.sanitize (c, this)); c 1875 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c) const c 1878 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!(this+coverage).intersects (c->glyphs)) c 1894 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (input_class_def.intersects_class (c->glyphs, i)) { c 1896 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh rule_set.closure (c, lookup_context); c 1900 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 1903 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+coverage).add_coverage (c->input); c 1918 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+ruleSet[i]).collect_glyphs (c, lookup_context); c 1921 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c) const c 1929 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = input_class_def.get_class (c->glyphs[0]); c 1937 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.would_apply (c, lookup_context)); c 1945 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c) const c 1948 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = (this+coverage).get_coverage (c->buffer->cur().codepoint); c 1955 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh index = input_class_def.get_class (c->buffer->cur().codepoint); c 1963 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (rule_set.apply (c, lookup_context)); c 1966 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 1968 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (coverage.sanitize (c, this) && backtrackClassDef.sanitize (c, this) && c 1969 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inputClassDef.sanitize (c, this) && lookaheadClassDef.sanitize (c, this) && c 1970 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh ruleSet.sanitize (c, this)); c 1999 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void closure (hb_closure_context_t *c) const c 2004 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!(this+input[0]).intersects (c->glyphs)) c 2013 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh chain_context_closure_lookup (c, c 2021 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline void collect_glyphs (hb_collect_glyphs_context_t *c) const c 2026 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh (this+input[0]).add_coverage (c->input); c 2034 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh chain_context_collect_glyphs_lookup (c, c 2042 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool would_apply (hb_would_apply_context_t *c) const c 2053 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (chain_context_would_apply_lookup (c, c 2066 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool apply (hb_apply_context_t *c) const c 2071 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh unsigned int index = (this+input[0]).get_coverage (c->buffer->cur().codepoint); c 2080 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (chain_context_apply_lookup (c, c 2087 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 2089 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!backtrack.sanitize (c, this)) return TRACE_RETURN (false); c 2091 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!input.sanitize (c, this)) return TRACE_RETURN (false); c 2093 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!lookahead.sanitize (c, this)) return TRACE_RETURN (false); c 2095 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (lookup.sanitize (c)); c 2122 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline typename context_t::return_t dispatch (context_t *c) const c 2126 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 1: return TRACE_RETURN (c->dispatch (u.format1)); c 2127 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 2: return TRACE_RETURN (c->dispatch (u.format2)); c 2128 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 3: return TRACE_RETURN (c->dispatch (u.format3)); c 2129 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh default:return TRACE_RETURN (c->default_return_value ()); c 2133 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 2135 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 2137 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 2138 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 2: return TRACE_RETURN (u.format2.sanitize (c)); c 2139 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 3: return TRACE_RETURN (u.format3.sanitize (c)); c 2159 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 2161 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (c->check_struct (this)); c 2202 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline typename context_t::return_t dispatch (context_t *c) const c 2204 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return get_subtable<typename T::LookupSubTable> ().dispatch (c, get_type ()); c 2207 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize_self (hb_sanitize_context_t *c) { c 2209 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!u.format.sanitize (c)) return TRACE_RETURN (false); c 2211 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh case 1: return TRACE_RETURN (u.format1.sanitize (c)); c 2216 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 2218 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh if (!sanitize_self (c)) return TRACE_RETURN (false); c 2221 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (StructAtOffset<typename T::LookupSubTable> (this, offset).sanitize (c, get_type ())); c 2272 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh inline bool sanitize (hb_sanitize_context_t *c) { c 2274 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh return TRACE_RETURN (version.sanitize (c) && likely (version.major == 1) && c 2275 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh scriptList.sanitize (c, this) && c 2276 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh featureList.sanitize (c, this) && c 2277 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh lookupList.sanitize (c, this)); c 57 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 59 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh return TRACE_RETURN (c->check_struct (this) && c 60 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh shrinkageEnableGSUB.sanitize (c, this) && c 61 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh shrinkageDisableGSUB.sanitize (c, this) && c 62 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh shrinkageEnableGPOS.sanitize (c, this) && c 63 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh shrinkageDisableGPOS.sanitize (c, this) && c 64 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh shrinkageJstfMax.sanitize (c, this) && c 65 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh extensionEnableGSUB.sanitize (c, this) && c 66 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh extensionDisableGSUB.sanitize (c, this) && c 67 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh extensionEnableGPOS.sanitize (c, this) && c 68 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh extensionDisableGPOS.sanitize (c, this) && c 69 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh extensionJstfMax.sanitize (c, this)); c 125 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh inline bool sanitize (hb_sanitize_context_t *c, c 128 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh return TRACE_RETURN (OffsetListOf<JstfPriority>::sanitize (c)); c 165 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh inline bool sanitize (hb_sanitize_context_t *c, c 168 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh return TRACE_RETURN (extenderGlyphs.sanitize (c, this) && c 169 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh defaultLangSys.sanitize (c, this) && c 170 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh langSys.sanitize (c, this)); c 209 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 211 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh return TRACE_RETURN (version.sanitize (c) && likely (version.major == 1) && c 212 third_party/harfbuzz-ng/src/hb-ot-layout-jstf-table.hh scriptList.sanitize (c, this)); c 85 third_party/harfbuzz-ng/src/hb-ot-layout-private.hh hb_ot_layout_substitute_lookup (OT::hb_apply_context_t *c, c 625 third_party/harfbuzz-ng/src/hb-ot-layout.cc OT::hb_collect_glyphs_context_t c (face, c 636 third_party/harfbuzz-ng/src/hb-ot-layout.cc l.collect_glyphs (&c); c 642 third_party/harfbuzz-ng/src/hb-ot-layout.cc l.collect_glyphs (&c); c 678 third_party/harfbuzz-ng/src/hb-ot-layout.cc OT::hb_would_apply_context_t c (face, glyphs, glyphs_length, zero_context); c 682 third_party/harfbuzz-ng/src/hb-ot-layout.cc return l.would_apply (&c, &hb_ot_layout_from_face (face)->gsub_accels[lookup_index].digest); c 702 third_party/harfbuzz-ng/src/hb-ot-layout.cc OT::hb_closure_context_t c (face, glyphs); c 706 third_party/harfbuzz-ng/src/hb-ot-layout.cc l.closure (&c); c 813 third_party/harfbuzz-ng/src/hb-ot-layout.cc static inline bool apply_once (OT::hb_apply_context_t *c, c 816 third_party/harfbuzz-ng/src/hb-ot-layout.cc if (!c->check_glyph_property (&c->buffer->cur(), c->lookup_props)) c 818 third_party/harfbuzz-ng/src/hb-ot-layout.cc return lookup.dispatch (c); c 823 third_party/harfbuzz-ng/src/hb-ot-layout.cc apply_string (OT::hb_apply_context_t *c, c 828 third_party/harfbuzz-ng/src/hb-ot-layout.cc hb_buffer_t *buffer = c->buffer; c 830 third_party/harfbuzz-ng/src/hb-ot-layout.cc if (unlikely (!buffer->len || !c->lookup_mask)) c 833 third_party/harfbuzz-ng/src/hb-ot-layout.cc c->set_lookup (lookup); c 845 third_party/harfbuzz-ng/src/hb-ot-layout.cc (buffer->cur().mask & c->lookup_mask) && c 846 third_party/harfbuzz-ng/src/hb-ot-layout.cc apply_once (c, lookup)) c 868 third_party/harfbuzz-ng/src/hb-ot-layout.cc (buffer->cur().mask & c->lookup_mask) && c 869 third_party/harfbuzz-ng/src/hb-ot-layout.cc apply_once (c, lookup)) c 889 third_party/harfbuzz-ng/src/hb-ot-layout.cc OT::hb_apply_context_t c (table_index, font, buffer); c 890 third_party/harfbuzz-ng/src/hb-ot-layout.cc c.set_recurse_func (Proxy::Lookup::apply_recurse_func); c 897 third_party/harfbuzz-ng/src/hb-ot-layout.cc c.set_lookup_mask (lookups[table_index][i].mask); c 898 third_party/harfbuzz-ng/src/hb-ot-layout.cc c.set_auto_zwj (lookups[table_index][i].auto_zwj); c 899 third_party/harfbuzz-ng/src/hb-ot-layout.cc apply_string<Proxy> (&c, c 925 third_party/harfbuzz-ng/src/hb-ot-layout.cc hb_ot_layout_substitute_lookup (OT::hb_apply_context_t *c, c 929 third_party/harfbuzz-ng/src/hb-ot-layout.cc apply_string<GSUBProxy> (c, lookup, accel); c 50 third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 52 third_party/harfbuzz-ng/src/hb-ot-maxp-table.hh return TRACE_RETURN (c->check_struct (this) && c 59 third_party/harfbuzz-ng/src/hb-ot-name-table.hh inline bool sanitize (hb_sanitize_context_t *c, void *base) { c 62 third_party/harfbuzz-ng/src/hb-ot-name-table.hh return TRACE_RETURN (c->check_struct (this) && c->check_range ((char *) base, (unsigned int) length + offset)); c 104 third_party/harfbuzz-ng/src/hb-ot-name-table.hh inline bool sanitize_records (hb_sanitize_context_t *c) { c 109 third_party/harfbuzz-ng/src/hb-ot-name-table.hh if (!nameRecord[i].sanitize (c, string_pool)) return TRACE_RETURN (false); c 113 third_party/harfbuzz-ng/src/hb-ot-name-table.hh inline bool sanitize (hb_sanitize_context_t *c) { c 115 third_party/harfbuzz-ng/src/hb-ot-name-table.hh return TRACE_RETURN (c->check_struct (this) && c 117 third_party/harfbuzz-ng/src/hb-ot-name-table.hh c->check_array (nameRecord, nameRecord[0].static_size, count) && c 118 third_party/harfbuzz-ng/src/hb-ot-name-table.hh sanitize_records (c)); c 92 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh OT::hb_serialize_context_t c (buf, sizeof (buf)); c 93 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh OT::SubstLookup *lookup = c.start_serialize<OT::SubstLookup> (); c 94 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh bool ret = lookup->serialize_single (&c, c 99 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh c.end_serialize (); c 102 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh return ret ? c.copy<OT::SubstLookup> () : NULL; c 168 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh OT::hb_serialize_context_t c (buf, sizeof (buf)); c 169 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh OT::SubstLookup *lookup = c.start_serialize<OT::SubstLookup> (); c 170 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh bool ret = lookup->serialize_ligature (&c, c 179 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh c.end_serialize (); c 182 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh return ret ? c.copy<OT::SubstLookup> () : NULL; c 249 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh OT::hb_apply_context_t c (0, font, buffer); c 252 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh c.set_lookup_mask (fallback_plan->mask_array[i]); c 253 third_party/harfbuzz-ng/src/hb-ot-shape-complex-arabic-fallback.hh hb_ot_layout_substitute_lookup (&c, c 31 third_party/harfbuzz-ng/src/hb-ot-shape-complex-hebrew.cc compose_hebrew (const hb_ot_shape_normalize_context_t *c, c 71 third_party/harfbuzz-ng/src/hb-ot-shape-complex-hebrew.cc bool found = c->unicode->compose (a, b, ab); c 73 third_party/harfbuzz-ng/src/hb-ot-shape-complex-hebrew.cc if (!found && !c->plan->has_mark) c 1694 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc decompose_indic (const hb_ot_shape_normalize_context_t *c, c 1760 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc const indic_shape_plan_t *indic_plan = (const indic_shape_plan_t *) c->plan->data; c 1765 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc (c->font->get_glyph (ab, 0, &glyph) && c 1766 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc indic_plan->pstf.would_substitute (&glyph, 1, c->font->face))) c 1775 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc return c->unicode->decompose (ab, a, b); c 1779 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc compose_indic (const hb_ot_shape_normalize_context_t *c, c 1785 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (c->unicode->general_category (a))) c 1791 third_party/harfbuzz-ng/src/hb-ot-shape-complex-indic.cc return c->unicode->compose (a, b, ab); c 119 third_party/harfbuzz-ng/src/hb-ot-shape-complex-private.hh bool (*decompose) (const hb_ot_shape_normalize_context_t *c, c 128 third_party/harfbuzz-ng/src/hb-ot-shape-complex-private.hh bool (*compose) (const hb_ot_shape_normalize_context_t *c, c 437 third_party/harfbuzz-ng/src/hb-ot-shape-fallback.cc OT::hb_apply_context_t c (1, font, buffer); c 438 third_party/harfbuzz-ng/src/hb-ot-shape-fallback.cc c.set_lookup_mask (plan->kern_mask); c 439 third_party/harfbuzz-ng/src/hb-ot-shape-fallback.cc c.set_lookup_props (OT::LookupFlag::IgnoreMarks); c 446 third_party/harfbuzz-ng/src/hb-ot-shape-fallback.cc OT::hb_apply_context_t::skipping_forward_iterator_t skippy_iter (&c, idx, 1); c 58 third_party/harfbuzz-ng/src/hb-ot-shape-normalize-private.hh bool (*decompose) (const hb_ot_shape_normalize_context_t *c, c 62 third_party/harfbuzz-ng/src/hb-ot-shape-normalize-private.hh bool (*compose) (const hb_ot_shape_normalize_context_t *c, c 86 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_unicode (const hb_ot_shape_normalize_context_t *c, c 91 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc return c->unicode->decompose (ab, a, b); c 95 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc compose_unicode (const hb_ot_shape_normalize_context_t *c, c 100 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc return c->unicode->compose (a, b, ab); c 132 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint_t ab) c 135 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc hb_buffer_t * const buffer = c->buffer; c 136 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc hb_font_t * const font = c->font; c 138 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc if (!c->decompose (c, ab, &a, &b) || c 154 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc if ((ret = decompose (c, shortest, a))) { c 176 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_compatibility (const hb_ot_shape_normalize_context_t *c, hb_codepoint_t u) c 182 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc len = c->buffer->unicode->decompose_compatibility (u, decomposed); c 187 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc if (!c->font->get_glyph (decomposed[i], 0, &glyphs[i])) c 191 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc output_char (c->buffer, decomposed[i], glyphs[i]); c 197 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shortest) c 199 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc hb_buffer_t * const buffer = c->buffer; c 203 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc if (shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph)) c 205 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc else if (decompose (c, shortest, buffer->cur().codepoint)) c 207 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc else if (!shortest && c->font->get_glyph (buffer->cur().codepoint, 0, &glyph)) c 209 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc else if (decompose_compatibility (c, buffer->cur().codepoint)) c 216 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc handle_variation_selector_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool short_circuit) c 219 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc hb_buffer_t * const buffer = c->buffer; c 220 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc hb_font_t * const font = c->font; c 254 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_multi_char_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool short_circuit) c 256 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc hb_buffer_t * const buffer = c->buffer; c 259 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc handle_variation_selector_cluster (c, end, short_circuit); c 264 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_current_character (c, short_circuit); c 268 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_cluster (const hb_ot_shape_normalize_context_t *c, unsigned int end, bool might_short_circuit, bool always_short_circuit) c 270 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc if (likely (c->buffer->idx + 1 == end)) c 271 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_current_character (c, might_short_circuit); c 273 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_multi_char_cluster (c, end, always_short_circuit); c 293 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc const hb_ot_shape_normalize_context_t c = { c 326 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc decompose_cluster (&c, end, might_short_circuit, always_short_circuit); c 384 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc c.compose (&c, c 291 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_mirror_chars (hb_ot_shape_context_t *c) c 293 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (HB_DIRECTION_IS_FORWARD (c->target_direction)) c 296 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_t *buffer = c->buffer; c 298 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_mask_t rtlm_mask = c->plan->rtlm_mask; c 312 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_setup_masks_fraction (hb_ot_shape_context_t *c) c 314 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (!c->plan->has_frac) c 317 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_t *buffer = c->buffer; c 337 third_party/harfbuzz-ng/src/hb-ot-shape.cc info[j].mask |= c->plan->numr_mask | c->plan->frac_mask; c 338 third_party/harfbuzz-ng/src/hb-ot-shape.cc info[i].mask |= c->plan->frac_mask; c 340 third_party/harfbuzz-ng/src/hb-ot-shape.cc info[j].mask |= c->plan->frac_mask | c->plan->dnom_mask; c 348 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_initialize_masks (hb_ot_shape_context_t *c) c 350 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_map_t *map = &c->plan->map; c 351 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_t *buffer = c->buffer; c 358 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_setup_masks (hb_ot_shape_context_t *c) c 360 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_map_t *map = &c->plan->map; c 361 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_t *buffer = c->buffer; c 363 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_setup_masks_fraction (c); c 365 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (c->plan->shaper->setup_masks) c 366 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->plan->shaper->setup_masks (c->plan, buffer, c->font); c 368 third_party/harfbuzz-ng/src/hb-ot-shape.cc for (unsigned int i = 0; i < c->num_user_features; i++) c 370 third_party/harfbuzz-ng/src/hb-ot-shape.cc const hb_feature_t *feature = &c->user_features[i]; c 389 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_synthesize_glyph_classes (hb_ot_shape_context_t *c) c 391 third_party/harfbuzz-ng/src/hb-ot-shape.cc unsigned int count = c->buffer->len; c 392 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_info_t *info = c->buffer->info; c 402 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_substitute_default (hb_ot_shape_context_t *c) c 404 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_t *buffer = c->buffer; c 406 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (c->plan->shaper->preprocess_text) c 407 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->plan->shaper->preprocess_text (c->plan, buffer, c->font); c 409 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_initialize_masks (c); c 411 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_mirror_chars (c); c 415 third_party/harfbuzz-ng/src/hb-ot-shape.cc _hb_ot_shape_normalize (c->plan, buffer, c->font); c 417 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_setup_masks (c); c 420 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (!hb_ot_layout_has_positioning (c->face)) c 421 third_party/harfbuzz-ng/src/hb-ot-shape.cc _hb_ot_shape_fallback_position_recategorize_marks (c->plan, c->font, buffer); c 429 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_substitute_complex (hb_ot_shape_context_t *c) c 431 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_t *buffer = c->buffer; c 433 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_layout_substitute_start (c->font, buffer); c 435 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (!hb_ot_layout_has_glyph_classes (c->face)) c 436 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_synthesize_glyph_classes (c); c 438 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->plan->substitute (c->font, buffer); c 440 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_layout_substitute_finish (c->font, buffer); c 446 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_substitute (hb_ot_shape_context_t *c) c 448 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_substitute_default (c); c 449 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_substitute_complex (c); c 479 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_position_default (hb_ot_shape_context_t *c) c 481 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_direction_t direction = c->buffer->props.direction; c 482 third_party/harfbuzz-ng/src/hb-ot-shape.cc unsigned int count = c->buffer->len; c 483 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_info_t *info = c->buffer->info; c 484 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_position_t *pos = c->buffer->pos; c 487 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->font->get_glyph_advance_for_direction (info[i].codepoint, c 491 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->font->subtract_glyph_origin_for_direction (info[i].codepoint, c 500 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_position_complex (hb_ot_shape_context_t *c) c 503 third_party/harfbuzz-ng/src/hb-ot-shape.cc unsigned int count = c->buffer->len; c 505 third_party/harfbuzz-ng/src/hb-ot-shape.cc switch (c->plan->shaper->zero_width_marks) c 508 third_party/harfbuzz-ng/src/hb-ot-shape.cc zero_mark_widths_by_gdef (c->buffer); c 524 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (hb_ot_layout_has_positioning (c->face)) c 526 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_info_t *info = c->buffer->info; c 527 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_position_t *pos = c->buffer->pos; c 532 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->font->add_glyph_origin_for_direction (info[i].codepoint, c 538 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->plan->position (c->font, c->buffer); c 541 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->font->subtract_glyph_origin_for_direction (info[i].codepoint, c 550 third_party/harfbuzz-ng/src/hb-ot-shape.cc switch (c->plan->shaper->zero_width_marks) c 553 third_party/harfbuzz-ng/src/hb-ot-shape.cc zero_mark_widths_by_unicode (c->buffer); c 557 third_party/harfbuzz-ng/src/hb-ot-shape.cc zero_mark_widths_by_gdef (c->buffer); c 571 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_position (hb_ot_shape_context_t *c) c 573 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_layout_position_start (c->font, c->buffer); c 575 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_position_default (c); c 577 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_bool_t fallback = !hb_ot_position_complex (c); c 579 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_layout_position_finish (c->font, c->buffer); c 581 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (fallback && c->plan->shaper->fallback_position) c 582 third_party/harfbuzz-ng/src/hb-ot-shape.cc _hb_ot_shape_fallback_position (c->plan, c->font, c->buffer); c 584 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (HB_DIRECTION_IS_BACKWARD (c->buffer->props.direction)) c 585 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_buffer_reverse (c->buffer); c 590 third_party/harfbuzz-ng/src/hb-ot-shape.cc _hb_ot_shape_fallback_kern (c->plan, c->font, c->buffer); c 597 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_hide_default_ignorables (hb_ot_shape_context_t *c) c 599 third_party/harfbuzz-ng/src/hb-ot-shape.cc if (c->buffer->flags & HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES) c 609 third_party/harfbuzz-ng/src/hb-ot-shape.cc unsigned int count = c->buffer->len; c 610 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_info_t *info = c->buffer->info; c 611 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_glyph_position_t *pos = c->buffer->pos; c 619 third_party/harfbuzz-ng/src/hb-ot-shape.cc space_status = c->font->get_glyph (' ', 0, &space) ? SPACE_AVAILABLE : SPACE_UNAVAILABLE; c 637 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->buffer->len = j; c 644 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_internal (hb_ot_shape_context_t *c) c 646 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->buffer->deallocate_var_all (); c 649 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->target_direction = c->buffer->props.direction; c 651 third_party/harfbuzz-ng/src/hb-ot-shape.cc _hb_buffer_allocate_unicode_vars (c->buffer); c 653 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->buffer->clear_output (); c 655 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_set_unicode_props (c->buffer); c 656 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_insert_dotted_circle (c->buffer, c->font); c 657 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_form_clusters (c->buffer); c 659 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ensure_native_direction (c->buffer); c 661 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_substitute (c); c 662 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_position (c); c 664 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_hide_default_ignorables (c); c 666 third_party/harfbuzz-ng/src/hb-ot-shape.cc _hb_buffer_deallocate_unicode_vars (c->buffer); c 668 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->buffer->props.direction = c->target_direction; c 670 third_party/harfbuzz-ng/src/hb-ot-shape.cc c->buffer->deallocate_var_all (); c 681 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_context_t c = {HB_SHAPER_DATA_GET (shape_plan), font, font->face, buffer, features, num_features}; c 682 third_party/harfbuzz-ng/src/hb-ot-shape.cc hb_ot_shape_internal (&c); c 538 third_party/harfbuzz-ng/src/hb-private.hh static inline bool ISALPHA (unsigned char c) c 539 third_party/harfbuzz-ng/src/hb-private.hh { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); } c 540 third_party/harfbuzz-ng/src/hb-private.hh static inline bool ISALNUM (unsigned char c) c 541 third_party/harfbuzz-ng/src/hb-private.hh { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9'); } c 542 third_party/harfbuzz-ng/src/hb-private.hh static inline bool ISSPACE (unsigned char c) c 543 third_party/harfbuzz-ng/src/hb-private.hh { return c == ' ' || c =='\f'|| c =='\n'|| c =='\r'|| c =='\t'|| c =='\v'; } c 544 third_party/harfbuzz-ng/src/hb-private.hh static inline unsigned char TOUPPER (unsigned char c) c 545 third_party/harfbuzz-ng/src/hb-private.hh { return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c; } c 546 third_party/harfbuzz-ng/src/hb-private.hh static inline unsigned char TOLOWER (unsigned char c) c 547 third_party/harfbuzz-ng/src/hb-private.hh { return (c >= 'A' && c <= 'Z') ? c - 'A' + 'a' : c; } c 40 third_party/harfbuzz-ng/src/hb-shape.cc char c; c 41 third_party/harfbuzz-ng/src/hb-shape.cc while (*pp < end && (c = **pp, ISSPACE (c))) c 46 third_party/harfbuzz-ng/src/hb-shape.cc parse_char (const char **pp, const char *end, char c) c 50 third_party/harfbuzz-ng/src/hb-shape.cc if (*pp == end || **pp != c) c 98 third_party/harfbuzz-ng/src/hb-shape.cc char c; c 102 third_party/harfbuzz-ng/src/hb-shape.cc #define ISALNUM(c) (('a' <= (c) && (c) <= 'z') || ('A' <= (c) && (c) <= 'Z') || ('0' <= (c) && (c) <= '9')) c 103 third_party/harfbuzz-ng/src/hb-shape.cc while (*pp < end && (c = **pp, ISALNUM(c))) c 750 third_party/harfbuzz-ng/src/hb-uniscribe.cc hb_codepoint_t c = buffer->info[i].codepoint; c 752 third_party/harfbuzz-ng/src/hb-uniscribe.cc if (likely (c < 0x10000)) c 753 third_party/harfbuzz-ng/src/hb-uniscribe.cc pchars[chars_len++] = c; c 754 third_party/harfbuzz-ng/src/hb-uniscribe.cc else if (unlikely (c >= 0x110000)) c 757 third_party/harfbuzz-ng/src/hb-uniscribe.cc pchars[chars_len++] = 0xD800 + ((c - 0x10000) >> 10); c 758 third_party/harfbuzz-ng/src/hb-uniscribe.cc pchars[chars_len++] = 0xDC00 + ((c - 0x10000) & ((1 << 10) - 1)); c 771 third_party/harfbuzz-ng/src/hb-uniscribe.cc hb_codepoint_t c = buffer->info[i].codepoint; c 774 third_party/harfbuzz-ng/src/hb-uniscribe.cc if (c >= 0x10000 && c < 0x110000) c 862 third_party/harfbuzz-ng/src/hb-uniscribe.cc int *c = range_char_counts.push (); c 863 third_party/harfbuzz-ng/src/hb-uniscribe.cc if (unlikely (!props || !c)) c 870 third_party/harfbuzz-ng/src/hb-uniscribe.cc *c = 1; c 47 third_party/harfbuzz-ng/src/hb-utf-private.hh hb_codepoint_t c = *text, mask; c 52 third_party/harfbuzz-ng/src/hb-utf-private.hh HB_UTF8_COMPUTE (c, mask, len); c 59 third_party/harfbuzz-ng/src/hb-utf-private.hh result = c & mask; c 84 third_party/harfbuzz-ng/src/hb-utf-private.hh hb_codepoint_t c = *text, mask; c 89 third_party/harfbuzz-ng/src/hb-utf-private.hh HB_UTF8_COMPUTE (c, mask, len); c 96 third_party/harfbuzz-ng/src/hb-utf-private.hh result = c & mask; c 122 third_party/harfbuzz-ng/src/hb-utf-private.hh hb_codepoint_t c = *text++; c 124 third_party/harfbuzz-ng/src/hb-utf-private.hh if (unlikely (hb_in_range<hb_codepoint_t> (c, 0xd800, 0xdbff))) c 131 third_party/harfbuzz-ng/src/hb-utf-private.hh *unicode = (c << 10) + l - ((0xd800 << 10) - 0x10000 + 0xdc00); c 136 third_party/harfbuzz-ng/src/hb-utf-private.hh *unicode = c; c 146 third_party/harfbuzz-ng/src/hb-utf-private.hh hb_codepoint_t c = *--text; c 148 third_party/harfbuzz-ng/src/hb-utf-private.hh if (unlikely (hb_in_range<hb_codepoint_t> (c, 0xdc00, 0xdfff))) c 155 third_party/harfbuzz-ng/src/hb-utf-private.hh *unicode = (h << 10) + c - ((0xd800 << 10) - 0x10000 + 0xdc00); c 160 third_party/harfbuzz-ng/src/hb-utf-private.hh *unicode = c; c 65 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4 ) c 67 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp return c == c1 || c == c2 || c == c3 || c == c4; c 71 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4, Reader::Char c5 ) c 73 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp return c == c1 || c == c2 || c == c3 || c == c4 || c == c5; c 278 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = getNextChar(); c 280 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp switch ( c ) c 353 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = *current_; c 354 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == ' ' || c == '\t' || c == '\r' || c == '\n' ) c 381 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = getNextChar(); c 383 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == '*' ) c 385 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp else if ( c == '/' ) c 395 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c != '*' || !containsNewLine( commentBegin, current_ ) ) c 430 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = getNextChar(); c 431 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == '*' && *current_ == '/' ) c 443 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = getNextChar(); c 444 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == '\r' || c == '\n' ) c 466 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = 0; c 469 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp c = getNextChar(); c 470 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == '\\' ) c 472 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp else if ( c == '"' ) c 475 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp return c == '"'; c 606 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = *current++; c 607 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c < '0' || c > '9' ) c 609 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Value::UInt digit(c - '0'); c 694 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = *current++; c 695 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == '"' ) c 697 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp else if ( c == '\\' ) c 726 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp decoded += c; c 773 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = *current++; c 775 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c >= '0' && c <= '9' ) c 776 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp unicode += c - '0'; c 777 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp else if ( c >= 'a' && c <= 'f' ) c 778 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp unicode += c - 'a' + 10; c 779 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp else if ( c >= 'A' && c <= 'F' ) c 780 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp unicode += c - 'A' + 10; c 855 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp Char c = *current++; c 856 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp if ( c == '\r' ) c 863 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp else if ( c == '\n' ) c 36 third_party/libaddressinput/chromium/cpp/src/rule.cc bool ParseToken(char c, AddressField* field) { c 38 third_party/libaddressinput/chromium/cpp/src/rule.cc switch (c) { c 72 third_party/libaddressinput/chromium/cpp/src/util/md5.cc register uint32 a, b, c, d; c 76 third_party/libaddressinput/chromium/cpp/src/util/md5.cc c = buf[2]; c 79 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7); c 80 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12); c 81 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17); c 82 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22); c 83 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7); c 84 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12); c 85 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17); c 86 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22); c 87 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7); c 88 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12); c 89 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17); c 90 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22); c 91 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7); c 92 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12); c 93 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17); c 94 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22); c 96 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5); c 97 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9); c 98 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14); c 99 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20); c 100 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5); c 101 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9); c 102 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14); c 103 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20); c 104 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5); c 105 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9); c 106 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14); c 107 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20); c 108 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5); c 109 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9); c 110 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14); c 111 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20); c 113 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4); c 114 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11); c 115 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16); c 116 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23); c 117 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4); c 118 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11); c 119 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16); c 120 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23); c 121 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4); c 122 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11); c 123 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16); c 124 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23); c 125 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4); c 126 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11); c 127 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16); c 128 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23); c 130 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); c 131 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); c 132 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); c 133 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); c 134 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); c 135 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); c 136 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); c 137 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); c 138 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6); c 139 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10); c 140 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15); c 141 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21); c 142 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6); c 143 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10); c 144 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15); c 145 third_party/libaddressinput/chromium/cpp/src/util/md5.cc MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21); c 149 third_party/libaddressinput/chromium/cpp/src/util/md5.cc buf[2] += c; c 65 third_party/libaddressinput/chromium/cpp/src/util/string_util.cc size_t c = str.size(); c 66 third_party/libaddressinput/chromium/cpp/src/util/string_util.cc for (size_t i = 0; i <= c; ++i) { c 67 third_party/libaddressinput/chromium/cpp/src/util/string_util.cc if (i == c || str[i] == s) { c 71 third_party/libaddressinput/chromium/cpp/src/util/string_util.cc if (i != c || !r->empty() || !tmp.empty()) { c 52 third_party/libaddressinput/chromium/cpp/src/util/string_util.h void SplitString(const std::string& str, char c, std::vector<std::string>* r); c 363 third_party/libevent/evdns.c inet_aton(const char *c, struct in_addr *addr) c 366 third_party/libevent/evdns.c if (strcmp(c, "255.255.255.255") == 0) { c 369 third_party/libevent/evdns.c r = inet_addr(c); c 382 third_party/libevent/evdns.c #define ISSPACE(c) isspace((int)(unsigned char)(c)) c 383 third_party/libevent/evdns.c #define ISDIGIT(c) isdigit((int)(unsigned char)(c)) c 3132 third_party/libevent/evdns.c main(int c, char **v) { c 3135 third_party/libevent/evdns.c if (c<2) { c 3141 third_party/libevent/evdns.c while (idx < c && v[idx][0] == '-') { c 3170 third_party/libevent/evdns.c for (; idx < c; ++idx) { c 2072 third_party/libevent/http.c char c; c 2076 third_party/libevent/http.c c = uri[i]; c 2077 third_party/libevent/http.c if (c == '?') { c 2079 third_party/libevent/http.c } else if (c == '+' && in_query) { c 2080 third_party/libevent/http.c c = ' '; c 2081 third_party/libevent/http.c } else if (c == '%' && isxdigit((unsigned char)uri[i+1]) && c 2084 third_party/libevent/http.c c = (char)strtol(tmp, NULL, 16); c 2087 third_party/libevent/http.c ret[j++] = c; c 127 third_party/libevent/test/bench.c int i, c; c 134 third_party/libevent/test/bench.c while ((c = getopt(argc, argv, "n:a:w:")) != -1) { c 135 third_party/libevent/test/bench.c switch (c) { c 146 third_party/libevent/test/bench.c fprintf(stderr, "Illegal argument \"%c\"\n", c); c 322 third_party/libjpeg/jchuff.c int c = (int) ((put_buffer >> 16) & 0xFF); c 324 third_party/libjpeg/jchuff.c emit_byte(state, c, return FALSE); c 325 third_party/libjpeg/jchuff.c if (c == 0xFF) { /* need to stuff a zero byte? */ c 251 third_party/libjpeg/jcphuff.c int c = (int) ((put_buffer >> 16) & 0xFF); c 253 third_party/libjpeg/jcphuff.c emit_byte(entropy, c); c 254 third_party/libjpeg/jcphuff.c if (c == 0xFF) { /* need to stuff a zero byte? */ c 308 third_party/libjpeg/jdhuff.c register int c; c 318 third_party/libjpeg/jdhuff.c c = GETJOCTET(*next_input_byte++); c 321 third_party/libjpeg/jdhuff.c if (c == 0xFF) { c 335 third_party/libjpeg/jdhuff.c c = GETJOCTET(*next_input_byte++); c 336 third_party/libjpeg/jdhuff.c } while (c == 0xFF); c 338 third_party/libjpeg/jdhuff.c if (c == 0) { c 340 third_party/libjpeg/jdhuff.c c = 0xFF; c 350 third_party/libjpeg/jdhuff.c cinfo->unread_marker = c; c 357 third_party/libjpeg/jdhuff.c get_buffer = (get_buffer << 8) | c; c 241 third_party/libjpeg/jdmarker.c int c, ci; c 283 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 284 third_party/libjpeg/jdmarker.c compptr->h_samp_factor = (c >> 4) & 15; c 285 third_party/libjpeg/jdmarker.c compptr->v_samp_factor = (c ) & 15; c 305 third_party/libjpeg/jdmarker.c int i, ci, n, c, cc; c 327 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 340 third_party/libjpeg/jdmarker.c compptr->dc_tbl_no = (c >> 4) & 15; c 341 third_party/libjpeg/jdmarker.c compptr->ac_tbl_no = (c ) & 15; c 354 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 355 third_party/libjpeg/jdmarker.c cinfo->Ss = c; c 356 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 357 third_party/libjpeg/jdmarker.c cinfo->Se = c; c 358 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 359 third_party/libjpeg/jdmarker.c cinfo->Ah = (c >> 4) & 15; c 360 third_party/libjpeg/jdmarker.c cinfo->Al = (c ) & 15; c 882 third_party/libjpeg/jdmarker.c int c; c 886 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 892 third_party/libjpeg/jdmarker.c while (c != 0xFF) { c 895 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 903 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 904 third_party/libjpeg/jdmarker.c } while (c == 0xFF); c 905 third_party/libjpeg/jdmarker.c if (c != 0) c 915 third_party/libjpeg/jdmarker.c WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c); c 919 third_party/libjpeg/jdmarker.c cinfo->unread_marker = c; c 935 third_party/libjpeg/jdmarker.c int c, c2; c 938 third_party/libjpeg/jdmarker.c INPUT_BYTE(cinfo, c, return FALSE); c 940 third_party/libjpeg/jdmarker.c if (c != 0xFF || c2 != (int) M_SOI) c 941 third_party/libjpeg/jdmarker.c ERREXIT2(cinfo, JERR_NO_SOI, c, c2); c 791 third_party/liblouis/overrides/liblouis/compileTranslationTable.c stringHash (const widechar * c) c 794 third_party/liblouis/overrides/liblouis/compileTranslationTable.c unsigned long int makeHash = (((unsigned long int) c[0] << 8) + c 795 third_party/liblouis/overrides/liblouis/compileTranslationTable.c (unsigned long int) c[1]) % HASHNUM; c 800 third_party/liblouis/overrides/liblouis/compileTranslationTable.c charHash (widechar c) c 802 third_party/liblouis/overrides/liblouis/compileTranslationTable.c unsigned long int makeHash = (unsigned long int) c % HASHNUM; c 807 third_party/liblouis/overrides/liblouis/compileTranslationTable.c compile_findCharOrDots (widechar c, int m) c 815 third_party/liblouis/overrides/liblouis/compileTranslationTable.c unsigned long int makeHash = (unsigned long int) c % HASHNUM; c 823 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if (character->realchar == c) c 836 third_party/liblouis/overrides/liblouis/compileTranslationTable.c definedCharOrDots (FileInfo * nested, widechar c, int m) c 839 third_party/liblouis/overrides/liblouis/compileTranslationTable.c TranslationTableCharacter *charOrDots = compile_findCharOrDots (c, m); c 847 third_party/liblouis/overrides/liblouis/compileTranslationTable.c showString (&c, 1)); c 854 third_party/liblouis/overrides/liblouis/compileTranslationTable.c unknownDots (c)); c 860 third_party/liblouis/overrides/liblouis/compileTranslationTable.c addCharOrDots (FileInfo * nested, widechar c, int m) c 870 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if ((character = compile_findCharOrDots (c, m))) c 876 third_party/liblouis/overrides/liblouis/compileTranslationTable.c character->realchar = c; c 877 third_party/liblouis/overrides/liblouis/compileTranslationTable.c makeHash = (unsigned long int) c % HASHNUM; c 901 third_party/liblouis/overrides/liblouis/compileTranslationTable.c getCharOrDots (widechar c, int m) c 905 third_party/liblouis/overrides/liblouis/compileTranslationTable.c unsigned long int makeHash = (unsigned long int) c % HASHNUM; c 913 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if (cdPtr->lookFor == c) c 921 third_party/liblouis/overrides/liblouis/compileTranslationTable.c getDotsForChar (widechar c) c 923 third_party/liblouis/overrides/liblouis/compileTranslationTable.c CharOrDots *cdPtr = getCharOrDots (c, 0); c 939 third_party/liblouis/overrides/liblouis/compileTranslationTable.c putCharAndDots (FileInfo * nested, widechar c, widechar d) c 946 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if (!(cdPtr = getCharOrDots (c, 0))) c 952 third_party/liblouis/overrides/liblouis/compileTranslationTable.c cdPtr->lookFor = c; c 954 third_party/liblouis/overrides/liblouis/compileTranslationTable.c makeHash = (unsigned long int) c % HASHNUM; c 973 third_party/liblouis/overrides/liblouis/compileTranslationTable.c cdPtr->found = c; c 866 third_party/libpng/png.c int a, b, c, d; c 871 third_party/libpng/png.c c = (v2 >> 16) & 0xffff; c 875 third_party/libpng/png.c x = a * d + c * b; /* AD + CB */ c 881 third_party/libpng/png.c hi += a * c; /* AC */ c 153 third_party/libpng/pngerror.c #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97)) c 169 third_party/libpng/pngerror.c int c = png_ptr->chunk_name[iin++]; c 170 third_party/libpng/pngerror.c if (isnonalpha(c)) c 173 third_party/libpng/pngerror.c buffer[iout++] = png_digit[(c & 0xf0) >> 4]; c 174 third_party/libpng/pngerror.c buffer[iout++] = png_digit[c & 0x0f]; c 179 third_party/libpng/pngerror.c buffer[iout++] = (png_byte)c; c 1697 third_party/libpng/pngrtran.c int c; c 1716 third_party/libpng/pngrtran.c for (c = 0; c < channels; c++) c 1718 third_party/libpng/pngrtran.c if (shift[c] <= 0) c 1719 third_party/libpng/pngrtran.c shift[c] = 0; c 3635 third_party/libpng/pngrtran.c int c = *sp & 0x0c; c 3641 third_party/libpng/pngrtran.c ((((int)gamma_table[(c<<4)|(c<<2)|c|(c>>2)])>>4) & 0x0c)| c 2489 third_party/libpng/pngrutil.c #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97)) c 3021 third_party/libpng/pngrutil.c int a, b, c, pa, pb, pc, p; c 3025 third_party/libpng/pngrutil.c c = *cp++; c 3027 third_party/libpng/pngrutil.c p = b - c; c 3028 third_party/libpng/pngrutil.c pc = a - c; c 3049 third_party/libpng/pngrutil.c p = (pa <= pb && pa <= pc) ? a : (pb <= pc) ? b : c; c 300 third_party/libpng/pngwtran.c int c = (int)(i%channels); c 304 third_party/libpng/pngwtran.c for (j = shift_start[c]; j > -shift_dec[c]; j -= shift_dec[c]) c 321 third_party/libpng/pngwtran.c int c = (int)(i%channels); c 327 third_party/libpng/pngwtran.c for (j = shift_start[c]; j > -shift_dec[c]; j -= shift_dec[c]) c 2599 third_party/libpng/pngwutil.c int a, b, c, pa, pb, pc, p; c 2602 third_party/libpng/pngwutil.c c = *cp++; c 2605 third_party/libpng/pngwutil.c p = b - c; c 2606 third_party/libpng/pngwutil.c pc = a - c; c 2618 third_party/libpng/pngwutil.c p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c; c 2673 third_party/libpng/pngwutil.c int a, b, c, pa, pb, pc, p; c 2676 third_party/libpng/pngwutil.c c = *cp++; c 2680 third_party/libpng/pngwutil.c p = b - c; c 2681 third_party/libpng/pngwutil.c pc = a - c; c 2691 third_party/libpng/pngwutil.c p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c; c 2693 third_party/libpng/pngwutil.c p = a + b - c; c 2696 third_party/libpng/pngwutil.c pc = abs(p - c); c 2702 third_party/libpng/pngwutil.c p = c; c 535 third_party/libusb/src/libusb/os/windows_usb.c int c; c 542 third_party/libusb/src/libusb/os/windows_usb.c while ((c = *sz++) != 0) c 543 third_party/libusb/src/libusb/os/windows_usb.c r = ((r << 5) + r) + c; c 49 third_party/libusb/src/libusb/os/windows_usb.h #define _beginthreadex(a, b, c, d, e, f) CreateThread(a, b, (LPTHREAD_START_ROUTINE)c, d, e, f) c 477 third_party/libwebp/dec/tree.c int t, b, c, p; c 480 third_party/libwebp/dec/tree.c for (c = 0; c < NUM_CTX; ++c) { c 482 third_party/libwebp/dec/tree.c const int v = VP8GetBit(br, CoeffsUpdateProba[t][b][c][p]) ? c 483 third_party/libwebp/dec/tree.c VP8GetValue(br, 8) : CoeffsProba0[t][b][c][p]; c 484 third_party/libwebp/dec/tree.c proba->bands_[t][b].probas_[c][p] = v; c 757 third_party/libwebp/demux/demux.c Chunk* c; c 766 third_party/libwebp/demux/demux.c for (c = dmux->chunks_; c != NULL;) { c 767 third_party/libwebp/demux/demux.c Chunk* const cur_chunk = c; c 768 third_party/libwebp/demux/demux.c c = c->next_; c 927 third_party/libwebp/demux/demux.c const Chunk* c; c 929 third_party/libwebp/demux/demux.c for (c = dmux->chunks_; c != NULL; c = c->next_) { c 930 third_party/libwebp/demux/demux.c const uint8_t* const header = mem_buf + c->data_.offset_; c 939 third_party/libwebp/demux/demux.c const Chunk* c; c 941 third_party/libwebp/demux/demux.c for (c = dmux->chunks_; c != NULL; c = c->next_) { c 942 third_party/libwebp/demux/demux.c const uint8_t* const header = mem_buf + c->data_.offset_; c 946 third_party/libwebp/demux/demux.c return c; c 60 third_party/libwebp/dsp/dec.c #define STORE2(y, dc, d, c) do { \ c 63 third_party/libwebp/dsp/dec.c STORE(1, y, DC + (c)); \ c 64 third_party/libwebp/dsp/dec.c STORE(2, y, DC - (c)); \ c 79 third_party/libwebp/dsp/dec.c const int c = MUL(in[4], kC2) - MUL(in[12], kC1); // [-3783, 3783] c 82 third_party/libwebp/dsp/dec.c tmp[1] = b + c; // [-7878, 7878] c 83 third_party/libwebp/dsp/dec.c tmp[2] = b - c; // [-7878, 7878] c 100 third_party/libwebp/dsp/dec.c const int c = MUL(tmp[4], kC2) - MUL(tmp[12], kC1); c 103 third_party/libwebp/dsp/dec.c STORE(1, 0, b + c); c 104 third_party/libwebp/dsp/dec.c STORE(2, 0, b - c); c 270 third_party/libwebp/dsp/dec.c #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) c 28 third_party/libwebp/dsp/dec_neon.c #define FLIP_SIGN_BIT4(a, b, c, d, s) \ c 30 third_party/libwebp/dsp/dec_neon.c FLIP_SIGN_BIT2(c, d, s) \ c 90 third_party/libwebp/dsp/dec_sse2.c const __m128i c = _mm_add_epi16(c3, c4); c 100 third_party/libwebp/dsp/dec_sse2.c const __m128i tmp1 = _mm_add_epi16(b, c); c 101 third_party/libwebp/dsp/dec_sse2.c const __m128i tmp2 = _mm_sub_epi16(b, c); c 148 third_party/libwebp/dsp/dec_sse2.c const __m128i c = _mm_add_epi16(c3, c4); c 158 third_party/libwebp/dsp/dec_sse2.c const __m128i tmp1 = _mm_add_epi16(b, c); c 159 third_party/libwebp/dsp/dec_sse2.c const __m128i tmp2 = _mm_sub_epi16(b, c); c 322 third_party/libwebp/dsp/dec_sse2.c #define FLIP_SIGN_BIT4(a, b, c, d) { \ c 324 third_party/libwebp/dsp/dec_sse2.c FLIP_SIGN_BIT2(c, d); \ c 100 third_party/libwebp/dsp/enc.c const int c = MUL(in[4], kC2) - MUL(in[12], kC1); c 103 third_party/libwebp/dsp/enc.c tmp[1] = b + c; c 104 third_party/libwebp/dsp/enc.c tmp[2] = b - c; c 115 third_party/libwebp/dsp/enc.c const int c = MUL(tmp[4], kC2) - MUL(tmp[12], kC1); c 118 third_party/libwebp/dsp/enc.c STORE(1, i, b + c); c 119 third_party/libwebp/dsp/enc.c STORE(2, i, b - c); c 343 third_party/libwebp/dsp/enc.c #define AVG3(a, b, c) (((a) + 2 * (b) + (c) + 2) >> 2) c 164 third_party/libwebp/dsp/enc_sse2.c const __m128i c = _mm_add_epi16(c3, c4); c 174 third_party/libwebp/dsp/enc_sse2.c const __m128i tmp1 = _mm_add_epi16(b, c); c 175 third_party/libwebp/dsp/enc_sse2.c const __m128i tmp2 = _mm_sub_epi16(b, c); c 222 third_party/libwebp/dsp/enc_sse2.c const __m128i c = _mm_add_epi16(c3, c4); c 232 third_party/libwebp/dsp/enc_sse2.c const __m128i tmp1 = _mm_add_epi16(b, c); c 233 third_party/libwebp/dsp/enc_sse2.c const __m128i tmp2 = _mm_sub_epi16(b, c); c 395 third_party/libwebp/dsp/lossless.c static WEBP_INLINE int AddSubtractComponentFull(int a, int b, int c) { c 396 third_party/libwebp/dsp/lossless.c return Clip255(a + b - c); c 426 third_party/libwebp/dsp/lossless.c static WEBP_INLINE int Sub3(int a, int b, int c) { c 427 third_party/libwebp/dsp/lossless.c const int pb = b - c; c 428 third_party/libwebp/dsp/lossless.c const int pa = a - c; c 432 third_party/libwebp/dsp/lossless.c static WEBP_INLINE uint32_t Select(uint32_t a, uint32_t b, uint32_t c) { c 434 third_party/libwebp/dsp/lossless.c Sub3((a >> 24) , (b >> 24) , (c >> 24) ) + c 435 third_party/libwebp/dsp/lossless.c Sub3((a >> 16) & 0xff, (b >> 16) & 0xff, (c >> 16) & 0xff) + c 436 third_party/libwebp/dsp/lossless.c Sub3((a >> 8) & 0xff, (b >> 8) & 0xff, (c >> 8) & 0xff) + c 437 third_party/libwebp/dsp/lossless.c Sub3((a ) & 0xff, (b ) & 0xff, (c ) & 0xff); c 1429 third_party/libwebp/dsp/lossless.c static WEBP_INLINE uint32_t SelectSSE2(uint32_t a, uint32_t b, uint32_t c) { c 1434 third_party/libwebp/dsp/lossless.c const __m128i C0 = _mm_cvtsi32_si128(c); c 33 third_party/libwebp/dsp/upsampling_neon.c uint8x8_t c = vld1_u8(r2); \ c 38 third_party/libwebp/dsp/upsampling_neon.c uint16x8_t cl = vshll_n_u8(c, 1); \ c 46 third_party/libwebp/dsp/upsampling_neon.c sl = vaddw_u8(sl, c); \ c 60 third_party/libwebp/dsp/upsampling_neon.c c = vrhadd_u8(c, diag2); \ c 65 third_party/libwebp/dsp/upsampling_neon.c const uint8x8x2_t c_d = {{ c, d }}; \ c 65 third_party/libwebp/dsp/upsampling_sse2.c const __m128i c = _mm_loadu_si128((__m128i*)&(r2)[0]); \ c 69 third_party/libwebp/dsp/upsampling_sse2.c const __m128i t = _mm_avg_epu8(b, c); /* t = (b + c + 1) / 2 */ \ c 73 third_party/libwebp/dsp/upsampling_sse2.c const __m128i bc = _mm_xor_si128(b, c); /* bc = b^c */ \ c 87 third_party/libwebp/dsp/upsampling_sse2.c PACK_AND_STORE(c, d, diag2, diag1, out + 2 * 32); /* store bottom */ \ c 237 third_party/libwebp/enc/frame.c int t, b, c, p; c 240 third_party/libwebp/enc/frame.c for (c = 0; c < NUM_CTX; ++c) { c 242 third_party/libwebp/enc/frame.c const proba_t stats = proba->stats_[t][b][c][p]; c 245 third_party/libwebp/enc/frame.c const int update_proba = VP8CoeffsUpdateProba[t][b][c][p]; c 246 third_party/libwebp/enc/frame.c const int old_p = VP8CoeffsProba0[t][b][c][p]; c 256 third_party/libwebp/enc/frame.c proba->coeffs_[t][b][c][p] = new_p; c 260 third_party/libwebp/enc/frame.c proba->coeffs_[t][b][c][p] = old_p; c 448 third_party/libwebp/enc/frame.c const int c = res->coeffs[n++]; c 449 third_party/libwebp/enc/frame.c const int sign = c < 0; c 450 third_party/libwebp/enc/frame.c int v = sign ? -c : c; c 1229 third_party/libwebp/enc/picture.c int c; c 1244 third_party/libwebp/enc/picture.c for (c = 0; c <= 4; ++c) { c 1246 third_party/libwebp/enc/picture.c const double v = VP8SSIMGet(&stats[c]); c 1247 third_party/libwebp/enc/picture.c result[c] = (float)((v < 1.) ? -10.0 * log10(1. - v) c 1250 third_party/libwebp/enc/picture.c const double v = VP8SSIMGetSquaredError(&stats[c]); c 1251 third_party/libwebp/enc/picture.c result[c] = GetPSNR(v); c 1254 third_party/libwebp/enc/picture.c if (c < 4) VP8SSIMAddStats(&stats[c], &stats[4]); c 289 third_party/libwebp/enc/quant.c static double QualityToCompression(double c) { c 290 third_party/libwebp/enc/quant.c const double linear_c = (c < 0.75) ? c * (2. / 3.) : 2. * c - 1.; c 301 third_party/libwebp/enc/quant.c static double QualityToJPEGCompression(double c, double alpha) { c 316 third_party/libwebp/enc/quant.c const double v = pow(c, expn); c 373 third_party/libwebp/enc/quant.c const double c = pow(c_base, expn); c 374 third_party/libwebp/enc/quant.c const int q = (int)(127. * (1. - c)); c 111 third_party/libwebp/enc/token.c const int c = coeffs[n++]; c 112 third_party/libwebp/enc/token.c const int sign = c < 0; c 113 third_party/libwebp/enc/token.c int v = sign ? -c : c; c 486 third_party/libwebp/enc/tree.c int t, b, c, p; c 489 third_party/libwebp/enc/tree.c for (c = 0; c < NUM_CTX; ++c) { c 491 third_party/libwebp/enc/tree.c const uint8_t p0 = probas->coeffs_[t][b][c][p]; c 492 third_party/libwebp/enc/tree.c const int update = (p0 != VP8CoeffsProba0[t][b][c][p]); c 493 third_party/libwebp/enc/tree.c if (VP8PutBit(bw, update, VP8CoeffsUpdateProba[t][b][c][p])) { c 645 third_party/libwebp/enc/vp8l.c const uint32_t c = argb[i]; c 646 third_party/libwebp/enc/vp8l.c ++histo->red_[(c >> 16) & 0xff]; c 647 third_party/libwebp/enc/vp8l.c ++histo->blue_[(c >> 0) & 0xff]; c 653 third_party/libwebp/enc/vp8l.c const uint32_t c = argb[i]; c 654 third_party/libwebp/enc/vp8l.c const int green = (c >> 8) & 0xff; c 655 third_party/libwebp/enc/vp8l.c ++histo->red_[((c >> 16) - green) & 0xff]; c 656 third_party/libwebp/enc/vp8l.c ++histo->blue_[((c >> 0) - green) & 0xff]; c 139 third_party/libwebp/utils/filters.c static WEBP_INLINE int GradientPredictor(uint8_t a, uint8_t b, uint8_t c) { c 140 third_party/libwebp/utils/filters.c const int g = a + b - c; c 18 third_party/libwebp/webp/format_constants.h #define MKFOURCC(a, b, c, d) ((uint32_t)(a) | (b) << 8 | (c) << 16 | (d) << 24) c 433 third_party/libxml/src/HTMLparser.c unsigned char c; c 436 third_party/libxml/src/HTMLparser.c c = *cur; c 437 third_party/libxml/src/HTMLparser.c if (c & 0x80) { c 444 third_party/libxml/src/HTMLparser.c if ((c & 0xe0) == 0xe0) { c 452 third_party/libxml/src/HTMLparser.c if ((c & 0xf0) == 0xf0) { c 457 third_party/libxml/src/HTMLparser.c if (((c & 0xf8) != 0xf0) || c 1953 third_party/libxml/src/HTMLparser.c unsigned int c, d; c 1969 third_party/libxml/src/HTMLparser.c if (d < 0x80) { c= d; trailing= 0; } c 1975 third_party/libxml/src/HTMLparser.c } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; } c 1976 third_party/libxml/src/HTMLparser.c else if (d < 0xF0) { c= d & 0x0F; trailing= 2; } c 1977 third_party/libxml/src/HTMLparser.c else if (d < 0xF8) { c= d & 0x07; trailing= 3; } c 1992 third_party/libxml/src/HTMLparser.c c <<= 6; c 1993 third_party/libxml/src/HTMLparser.c c |= d & 0x3F; c 1997 third_party/libxml/src/HTMLparser.c if (c < 0x80) { c 2000 third_party/libxml/src/HTMLparser.c *out++ = c; c 2011 third_party/libxml/src/HTMLparser.c ent = htmlEntityValueLookup(c); c 2013 third_party/libxml/src/HTMLparser.c snprintf(nbuf, sizeof(nbuf), "#%u", c); c 2057 third_party/libxml/src/HTMLparser.c unsigned int c, d; c 2066 third_party/libxml/src/HTMLparser.c if (d < 0x80) { c= d; trailing= 0; } c 2072 third_party/libxml/src/HTMLparser.c } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; } c 2073 third_party/libxml/src/HTMLparser.c else if (d < 0xF0) { c= d & 0x0F; trailing= 2; } c 2074 third_party/libxml/src/HTMLparser.c else if (d < 0xF8) { c= d & 0x07; trailing= 3; } c 2091 third_party/libxml/src/HTMLparser.c c <<= 6; c 2092 third_party/libxml/src/HTMLparser.c c |= d & 0x3F; c 2096 third_party/libxml/src/HTMLparser.c if ((c < 0x80) && (c != (unsigned int) quoteChar) && c 2097 third_party/libxml/src/HTMLparser.c (c != '&') && (c != '<') && (c != '>')) { c 2100 third_party/libxml/src/HTMLparser.c *out++ = c; c 2110 third_party/libxml/src/HTMLparser.c ent = htmlEntityValueLookup(c); c 2112 third_party/libxml/src/HTMLparser.c snprintf(nbuf, sizeof(nbuf), "#%u", c); c 2449 third_party/libxml/src/HTMLparser.c int c; c 2456 third_party/libxml/src/HTMLparser.c c = CUR_CHAR(l); c 2457 third_party/libxml/src/HTMLparser.c if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */ c 2458 third_party/libxml/src/HTMLparser.c (!IS_LETTER(c) && (c != '_') && c 2459 third_party/libxml/src/HTMLparser.c (c != ':'))) { c 2463 third_party/libxml/src/HTMLparser.c while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */ c 2464 third_party/libxml/src/HTMLparser.c ((IS_LETTER(c)) || (IS_DIGIT(c)) || c 2465 third_party/libxml/src/HTMLparser.c (c == '.') || (c == '-') || c 2466 third_party/libxml/src/HTMLparser.c (c == '_') || (c == ':') || c 2467 third_party/libxml/src/HTMLparser.c (IS_COMBINING(c)) || c 2468 third_party/libxml/src/HTMLparser.c (IS_EXTENDER(c)))) { c 2475 third_party/libxml/src/HTMLparser.c c = CUR_CHAR(l); c 2520 third_party/libxml/src/HTMLparser.c unsigned int c; c 2523 third_party/libxml/src/HTMLparser.c c = htmlParseCharRef(ctxt); c 2524 third_party/libxml/src/HTMLparser.c if (c < 0x80) c 2525 third_party/libxml/src/HTMLparser.c { *out++ = c; bits= -6; } c 2526 third_party/libxml/src/HTMLparser.c else if (c < 0x800) c 2527 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 2528 third_party/libxml/src/HTMLparser.c else if (c < 0x10000) c 2529 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 2531 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 18) & 0x07) | 0xF0; bits= 12; } c 2534 third_party/libxml/src/HTMLparser.c *out++ = ((c >> bits) & 0x3F) | 0x80; c 2566 third_party/libxml/src/HTMLparser.c unsigned int c; c 2575 third_party/libxml/src/HTMLparser.c c = ent->value; c 2576 third_party/libxml/src/HTMLparser.c if (c < 0x80) c 2577 third_party/libxml/src/HTMLparser.c { *out++ = c; bits= -6; } c 2578 third_party/libxml/src/HTMLparser.c else if (c < 0x800) c 2579 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 2580 third_party/libxml/src/HTMLparser.c else if (c < 0x10000) c 2581 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 2583 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 18) & 0x07) | 0xF0; bits= 12; } c 2586 third_party/libxml/src/HTMLparser.c *out++ = ((c >> bits) & 0x3F) | 0x80; c 2591 third_party/libxml/src/HTMLparser.c unsigned int c; c 2600 third_party/libxml/src/HTMLparser.c c = CUR_CHAR(l); c 2601 third_party/libxml/src/HTMLparser.c if (c < 0x80) c 2602 third_party/libxml/src/HTMLparser.c { *out++ = c; bits= -6; } c 2603 third_party/libxml/src/HTMLparser.c else if (c < 0x800) c 2604 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 2605 third_party/libxml/src/HTMLparser.c else if (c < 0x10000) c 2606 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 2608 third_party/libxml/src/HTMLparser.c { *out++ =((c >> 18) & 0x07) | 0xF0; bits= 12; } c 2611 third_party/libxml/src/HTMLparser.c *out++ = ((c >> bits) & 0x3F) | 0x80; c 3912 third_party/libxml/src/HTMLparser.c unsigned int c; c 3915 third_party/libxml/src/HTMLparser.c c = htmlParseCharRef(ctxt); c 3916 third_party/libxml/src/HTMLparser.c if (c == 0) c 3919 third_party/libxml/src/HTMLparser.c if (c < 0x80) { out[i++]= c; bits= -6; } c 3920 third_party/libxml/src/HTMLparser.c else if (c < 0x800) { out[i++]=((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 3921 third_party/libxml/src/HTMLparser.c else if (c < 0x10000) { out[i++]=((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 3922 third_party/libxml/src/HTMLparser.c else { out[i++]=((c >> 18) & 0x07) | 0xF0; bits= 12; } c 3925 third_party/libxml/src/HTMLparser.c out[i++]= ((c >> bits) & 0x3F) | 0x80; c 3948 third_party/libxml/src/HTMLparser.c unsigned int c; c 3951 third_party/libxml/src/HTMLparser.c c = ent->value; c 3952 third_party/libxml/src/HTMLparser.c if (c < 0x80) c 3953 third_party/libxml/src/HTMLparser.c { out[i++]= c; bits= -6; } c 3954 third_party/libxml/src/HTMLparser.c else if (c < 0x800) c 3955 third_party/libxml/src/HTMLparser.c { out[i++]=((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 3956 third_party/libxml/src/HTMLparser.c else if (c < 0x10000) c 3957 third_party/libxml/src/HTMLparser.c { out[i++]=((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 3959 third_party/libxml/src/HTMLparser.c { out[i++]=((c >> 18) & 0x07) | 0xF0; bits= 12; } c 3962 third_party/libxml/src/HTMLparser.c out[i++]= ((c >> bits) & 0x3F) | 0x80; c 2249 third_party/libxml/src/catalog.c int c; c 2256 third_party/libxml/src/catalog.c c = *cur; c 2257 third_party/libxml/src/catalog.c if ((!IS_LETTER(c) && (c != '_') && (c != ':'))) { c 2261 third_party/libxml/src/catalog.c while (((IS_LETTER(c)) || (IS_DIGIT(c)) || c 2262 third_party/libxml/src/catalog.c (c == '.') || (c == '-') || c 2263 third_party/libxml/src/catalog.c (c == '_') || (c == ':'))) { c 2264 third_party/libxml/src/catalog.c buf[len++] = c; c 2266 third_party/libxml/src/catalog.c c = *cur; c 176 third_party/libxml/src/encoding.c unsigned int c; c 180 third_party/libxml/src/encoding.c c= *in++; c 184 third_party/libxml/src/encoding.c if (c < 0x80) { c 185 third_party/libxml/src/encoding.c *out++ = c; c 223 third_party/libxml/src/encoding.c unsigned int c, d; c 239 third_party/libxml/src/encoding.c if (d < 0x80) { c= d; trailing= 0; } c 245 third_party/libxml/src/encoding.c } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; } c 246 third_party/libxml/src/encoding.c else if (d < 0xF0) { c= d & 0x0F; trailing= 2; } c 247 third_party/libxml/src/encoding.c else if (d < 0xF8) { c= d & 0x07; trailing= 3; } c 262 third_party/libxml/src/encoding.c c <<= 6; c 263 third_party/libxml/src/encoding.c c |= d & 0x3F; c 267 third_party/libxml/src/encoding.c if (c < 0x80) { c 270 third_party/libxml/src/encoding.c *out++ = c; c 396 third_party/libxml/src/encoding.c unsigned int c, d; c 412 third_party/libxml/src/encoding.c if (d < 0x80) { c= d; trailing= 0; } c 418 third_party/libxml/src/encoding.c } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; } c 419 third_party/libxml/src/encoding.c else if (d < 0xF0) { c= d & 0x0F; trailing= 2; } c 420 third_party/libxml/src/encoding.c else if (d < 0xF8) { c= d & 0x07; trailing= 3; } c 440 third_party/libxml/src/encoding.c c <<= 6; c 441 third_party/libxml/src/encoding.c c |= d & 0x3F; c 445 third_party/libxml/src/encoding.c if (c <= 0xFF) { c 448 third_party/libxml/src/encoding.c *out++ = c; c 489 third_party/libxml/src/encoding.c unsigned int c, d, inlen; c 499 third_party/libxml/src/encoding.c c= *in++; c 502 third_party/libxml/src/encoding.c c = *tmp++; c 503 third_party/libxml/src/encoding.c c = c | (((unsigned int)*tmp) << 8); c 506 third_party/libxml/src/encoding.c if ((c & 0xFC00) == 0xD800) { /* surrogates */ c 519 third_party/libxml/src/encoding.c c &= 0x03FF; c 520 third_party/libxml/src/encoding.c c <<= 10; c 521 third_party/libxml/src/encoding.c c |= d & 0x03FF; c 522 third_party/libxml/src/encoding.c c += 0x10000; c 534 third_party/libxml/src/encoding.c if (c < 0x80) { *out++= c; bits= -6; } c 535 third_party/libxml/src/encoding.c else if (c < 0x800) { *out++= ((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 536 third_party/libxml/src/encoding.c else if (c < 0x10000) { *out++= ((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 537 third_party/libxml/src/encoding.c else { *out++= ((c >> 18) & 0x07) | 0xF0; bits= 12; } c 542 third_party/libxml/src/encoding.c *out++= ((c >> bits) & 0x3F) | 0x80; c 575 third_party/libxml/src/encoding.c unsigned int c, d; c 591 third_party/libxml/src/encoding.c if (d < 0x80) { c= d; trailing= 0; } c 597 third_party/libxml/src/encoding.c } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; } c 598 third_party/libxml/src/encoding.c else if (d < 0xF0) { c= d & 0x0F; trailing= 2; } c 599 third_party/libxml/src/encoding.c else if (d < 0xF8) { c= d & 0x07; trailing= 3; } c 614 third_party/libxml/src/encoding.c c <<= 6; c 615 third_party/libxml/src/encoding.c c |= d & 0x3F; c 619 third_party/libxml/src/encoding.c if (c < 0x10000) { c 623 third_party/libxml/src/encoding.c *out++ = c; c 626 third_party/libxml/src/encoding.c *tmp = c ; c 627 third_party/libxml/src/encoding.c *(tmp + 1) = c >> 8 ; c 631 third_party/libxml/src/encoding.c else if (c < 0x110000) { c 634 third_party/libxml/src/encoding.c c -= 0x10000; c 636 third_party/libxml/src/encoding.c *out++ = 0xD800 | (c >> 10); c 637 third_party/libxml/src/encoding.c *out++ = 0xDC00 | (c & 0x03FF); c 639 third_party/libxml/src/encoding.c tmp1 = 0xD800 | (c >> 10); c 645 third_party/libxml/src/encoding.c tmp2 = 0xDC00 | (c & 0x03FF); c 727 third_party/libxml/src/encoding.c unsigned int c, d, inlen; c 738 third_party/libxml/src/encoding.c c = *tmp++; c 739 third_party/libxml/src/encoding.c c = c << 8; c 740 third_party/libxml/src/encoding.c c = c | (unsigned int) *tmp; c 743 third_party/libxml/src/encoding.c c= *in++; c 745 third_party/libxml/src/encoding.c if ((c & 0xFC00) == 0xD800) { /* surrogates */ c 761 third_party/libxml/src/encoding.c c &= 0x03FF; c 762 third_party/libxml/src/encoding.c c <<= 10; c 763 third_party/libxml/src/encoding.c c |= d & 0x03FF; c 764 third_party/libxml/src/encoding.c c += 0x10000; c 776 third_party/libxml/src/encoding.c if (c < 0x80) { *out++= c; bits= -6; } c 777 third_party/libxml/src/encoding.c else if (c < 0x800) { *out++= ((c >> 6) & 0x1F) | 0xC0; bits= 0; } c 778 third_party/libxml/src/encoding.c else if (c < 0x10000) { *out++= ((c >> 12) & 0x0F) | 0xE0; bits= 6; } c 779 third_party/libxml/src/encoding.c else { *out++= ((c >> 18) & 0x07) | 0xF0; bits= 12; } c 784 third_party/libxml/src/encoding.c *out++= ((c >> bits) & 0x3F) | 0x80; c 817 third_party/libxml/src/encoding.c unsigned int c, d; c 833 third_party/libxml/src/encoding.c if (d < 0x80) { c= d; trailing= 0; } c 839 third_party/libxml/src/encoding.c } else if (d < 0xE0) { c= d & 0x1F; trailing= 1; } c 840 third_party/libxml/src/encoding.c else if (d < 0xF0) { c= d & 0x0F; trailing= 2; } c 841 third_party/libxml/src/encoding.c else if (d < 0xF8) { c= d & 0x07; trailing= 3; } c 855 third_party/libxml/src/encoding.c c <<= 6; c 856 third_party/libxml/src/encoding.c c |= d & 0x3F; c 860 third_party/libxml/src/encoding.c if (c < 0x10000) { c 864 third_party/libxml/src/encoding.c *tmp = c >> 8; c 865 third_party/libxml/src/encoding.c *(tmp + 1) = c; c 868 third_party/libxml/src/encoding.c *out++ = c; c 871 third_party/libxml/src/encoding.c else if (c < 0x110000) { c 873 third_party/libxml/src/encoding.c c -= 0x10000; c 875 third_party/libxml/src/encoding.c tmp1 = 0xD800 | (c >> 10); c 881 third_party/libxml/src/encoding.c tmp2 = 0xDC00 | (c & 0x03FF); c 887 third_party/libxml/src/encoding.c *out++ = 0xD800 | (c >> 10); c 888 third_party/libxml/src/encoding.c *out++ = 0xDC00 | (c & 0x03FF); c 2549 third_party/libxml/src/encoding.c unsigned char c; c 2556 third_party/libxml/src/encoding.c c = *in++; c 2557 third_party/libxml/src/encoding.c if ((c & 0xC0) != 0x80) { c 2563 third_party/libxml/src/encoding.c c = c & 0x3F; c 2565 third_party/libxml/src/encoding.c d = xlattable [48 + c + xlattable [d] * 64]; c 2642 third_party/libxml/src/encoding.c unsigned int c; c 2650 third_party/libxml/src/encoding.c c = *in; c 2652 third_party/libxml/src/encoding.c if (c >= 0x80) { c 2653 third_party/libxml/src/encoding.c c = unicodetable [c - 0x80]; c 2654 third_party/libxml/src/encoding.c if (c == 0) { c 2660 third_party/libxml/src/encoding.c if (c < 0x800) { c 2661 third_party/libxml/src/encoding.c *out++ = ((c >> 6) & 0x1F) | 0xC0; c 2662 third_party/libxml/src/encoding.c *out++ = (c & 0x3F) | 0x80; c 2664 third_party/libxml/src/encoding.c *out++ = ((c >> 12) & 0x0F) | 0xE0; c 2665 third_party/libxml/src/encoding.c *out++ = ((c >> 6) & 0x3F) | 0x80; c 2666 third_party/libxml/src/encoding.c *out++ = (c & 0x3F) | 0x80; c 2669 third_party/libxml/src/encoding.c c = *in; c 2672 third_party/libxml/src/encoding.c while (c < 0x80 && in < instop) { c 2673 third_party/libxml/src/encoding.c *out++ = c; c 2675 third_party/libxml/src/encoding.c c = *in; c 2678 third_party/libxml/src/encoding.c if (in < inend && out < outend && c < 0x80) { c 2679 third_party/libxml/src/encoding.c *out++ = c; c 64 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsBaseChar_ch(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \ c 65 third_party/libxml/src/include/libxml/chvalid.h ((0x61 <= (c)) && ((c) <= 0x7a)) || \ c 66 third_party/libxml/src/include/libxml/chvalid.h ((0xc0 <= (c)) && ((c) <= 0xd6)) || \ c 67 third_party/libxml/src/include/libxml/chvalid.h ((0xd8 <= (c)) && ((c) <= 0xf6)) || \ c 68 third_party/libxml/src/include/libxml/chvalid.h (0xf8 <= (c))) c 76 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsBaseCharQ(c) (((c) < 0x100) ? \ c 77 third_party/libxml/src/include/libxml/chvalid.h xmlIsBaseChar_ch((c)) : \ c 78 third_party/libxml/src/include/libxml/chvalid.h xmlCharInRange((c), &xmlIsBaseCharGroup)) c 88 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsBlank_ch(c) (((c) == 0x20) || \ c 89 third_party/libxml/src/include/libxml/chvalid.h ((0x9 <= (c)) && ((c) <= 0xa)) || \ c 90 third_party/libxml/src/include/libxml/chvalid.h ((c) == 0xd)) c 98 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsBlankQ(c) (((c) < 0x100) ? \ c 99 third_party/libxml/src/include/libxml/chvalid.h xmlIsBlank_ch((c)) : 0) c 108 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsChar_ch(c) (((0x9 <= (c)) && ((c) <= 0xa)) || \ c 109 third_party/libxml/src/include/libxml/chvalid.h ((c) == 0xd) || \ c 110 third_party/libxml/src/include/libxml/chvalid.h (0x20 <= (c))) c 118 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsCharQ(c) (((c) < 0x100) ? \ c 119 third_party/libxml/src/include/libxml/chvalid.h xmlIsChar_ch((c)) :\ c 120 third_party/libxml/src/include/libxml/chvalid.h (((0x100 <= (c)) && ((c) <= 0xd7ff)) || \ c 121 third_party/libxml/src/include/libxml/chvalid.h ((0xe000 <= (c)) && ((c) <= 0xfffd)) || \ c 122 third_party/libxml/src/include/libxml/chvalid.h ((0x10000 <= (c)) && ((c) <= 0x10ffff)))) c 132 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsCombiningQ(c) (((c) < 0x100) ? \ c 134 third_party/libxml/src/include/libxml/chvalid.h xmlCharInRange((c), &xmlIsCombiningGroup)) c 144 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsDigit_ch(c) (((0x30 <= (c)) && ((c) <= 0x39))) c 152 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsDigitQ(c) (((c) < 0x100) ? \ c 153 third_party/libxml/src/include/libxml/chvalid.h xmlIsDigit_ch((c)) : \ c 154 third_party/libxml/src/include/libxml/chvalid.h xmlCharInRange((c), &xmlIsDigitGroup)) c 164 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsExtender_ch(c) (((c) == 0xb7)) c 172 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsExtenderQ(c) (((c) < 0x100) ? \ c 173 third_party/libxml/src/include/libxml/chvalid.h xmlIsExtender_ch((c)) : \ c 174 third_party/libxml/src/include/libxml/chvalid.h xmlCharInRange((c), &xmlIsExtenderGroup)) c 184 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsIdeographicQ(c) (((c) < 0x100) ? \ c 186 third_party/libxml/src/include/libxml/chvalid.h (((0x4e00 <= (c)) && ((c) <= 0x9fa5)) || \ c 187 third_party/libxml/src/include/libxml/chvalid.h ((c) == 0x3007) || \ c 188 third_party/libxml/src/include/libxml/chvalid.h ((0x3021 <= (c)) && ((c) <= 0x3029)))) c 199 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)]) c 207 third_party/libxml/src/include/libxml/chvalid.h #define xmlIsPubidCharQ(c) (((c) < 0x100) ? \ c 208 third_party/libxml/src/include/libxml/chvalid.h xmlIsPubidChar_ch((c)) : 0) c 72 third_party/libxml/src/include/libxml/parserInternals.h #define IS_BYTE_CHAR(c) xmlIsChar_ch(c) c 84 third_party/libxml/src/include/libxml/parserInternals.h #define IS_CHAR(c) xmlIsCharQ(c) c 92 third_party/libxml/src/include/libxml/parserInternals.h #define IS_CHAR_CH(c) xmlIsChar_ch(c) c 102 third_party/libxml/src/include/libxml/parserInternals.h #define IS_BLANK(c) xmlIsBlankQ(c) c 110 third_party/libxml/src/include/libxml/parserInternals.h #define IS_BLANK_CH(c) xmlIsBlank_ch(c) c 120 third_party/libxml/src/include/libxml/parserInternals.h #define IS_BASECHAR(c) xmlIsBaseCharQ(c) c 130 third_party/libxml/src/include/libxml/parserInternals.h #define IS_DIGIT(c) xmlIsDigitQ(c) c 138 third_party/libxml/src/include/libxml/parserInternals.h #define IS_DIGIT_CH(c) xmlIsDigit_ch(c) c 148 third_party/libxml/src/include/libxml/parserInternals.h #define IS_COMBINING(c) xmlIsCombiningQ(c) c 156 third_party/libxml/src/include/libxml/parserInternals.h #define IS_COMBINING_CH(c) 0 c 169 third_party/libxml/src/include/libxml/parserInternals.h #define IS_EXTENDER(c) xmlIsExtenderQ(c) c 177 third_party/libxml/src/include/libxml/parserInternals.h #define IS_EXTENDER_CH(c) xmlIsExtender_ch(c) c 188 third_party/libxml/src/include/libxml/parserInternals.h #define IS_IDEOGRAPHIC(c) xmlIsIdeographicQ(c) c 199 third_party/libxml/src/include/libxml/parserInternals.h #define IS_LETTER(c) (IS_BASECHAR(c) || IS_IDEOGRAPHIC(c)) c 208 third_party/libxml/src/include/libxml/parserInternals.h #define IS_LETTER_CH(c) xmlIsBaseChar_ch(c) c 217 third_party/libxml/src/include/libxml/parserInternals.h #define IS_ASCII_LETTER(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \ c 218 third_party/libxml/src/include/libxml/parserInternals.h ((0x61 <= (c)) && ((c) <= 0x7a))) c 227 third_party/libxml/src/include/libxml/parserInternals.h #define IS_ASCII_DIGIT(c) ((0x30 <= (c)) && ((c) <= 0x39)) c 238 third_party/libxml/src/include/libxml/parserInternals.h #define IS_PUBIDCHAR(c) xmlIsPubidCharQ(c) c 246 third_party/libxml/src/include/libxml/parserInternals.h #define IS_PUBIDCHAR_CH(c) xmlIsPubidChar_ch(c) c 286 third_party/libxml/src/include/libxml/parserInternals.h XMLPUBFUN int XMLCALL xmlIsLetter (int c); c 100 third_party/libxml/src/include/win32config.h #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) c 2511 third_party/libxml/src/parser.c int c,l; c 2537 third_party/libxml/src/parser.c c = CUR_SCHAR(str, l); c 2539 third_party/libxml/src/parser.c c = 0; c 2540 third_party/libxml/src/parser.c while ((c != 0) && (c != end) && /* non input consuming loop */ c 2541 third_party/libxml/src/parser.c (c != end2) && (c != end3)) { c 2543 third_party/libxml/src/parser.c if (c == 0) break; c 2544 third_party/libxml/src/parser.c if ((c == '&') && (str[1] == '#')) { c 2552 third_party/libxml/src/parser.c } else if ((c == '&') && (what & XML_SUBSTITUTE_REF)) { c 2606 third_party/libxml/src/parser.c } else if (c == '%' && (what & XML_SUBSTITUTE_PEREF)) { c 2639 third_party/libxml/src/parser.c COPY_BUF(l,buffer,nbchars,c); c 2646 third_party/libxml/src/parser.c c = CUR_SCHAR(str, l); c 2648 third_party/libxml/src/parser.c c = 0; c 2796 third_party/libxml/src/parser.c int c; c 2814 third_party/libxml/src/parser.c c = *cur++; c 2815 third_party/libxml/src/parser.c while ((c != 0) && (c != ':') && (len < max)) { /* tested bigname.xml */ c 2816 third_party/libxml/src/parser.c buf[len++] = c; c 2817 third_party/libxml/src/parser.c c = *cur++; c 2832 third_party/libxml/src/parser.c while ((c != 0) && (c != ':')) { /* tested bigname.xml */ c 2846 third_party/libxml/src/parser.c buffer[len++] = c; c 2847 third_party/libxml/src/parser.c c = *cur++; c 2852 third_party/libxml/src/parser.c if ((c == ':') && (*cur == 0)) { c 2868 third_party/libxml/src/parser.c if (c == ':') { c 2869 third_party/libxml/src/parser.c c = *cur; c 2871 third_party/libxml/src/parser.c if (c == 0) { c 2880 third_party/libxml/src/parser.c if (!(((c >= 0x61) && (c <= 0x7A)) || c 2881 third_party/libxml/src/parser.c ((c >= 0x41) && (c <= 0x5A)) || c 2882 third_party/libxml/src/parser.c (c == '_') || (c == ':'))) { c 2894 third_party/libxml/src/parser.c while ((c != 0) && (len < max)) { /* tested bigname2.xml */ c 2895 third_party/libxml/src/parser.c buf[len++] = c; c 2896 third_party/libxml/src/parser.c c = *cur++; c 2911 third_party/libxml/src/parser.c while (c != 0) { /* tested bigname2.xml */ c 2925 third_party/libxml/src/parser.c buffer[len++] = c; c 2926 third_party/libxml/src/parser.c c = *cur++; c 2973 third_party/libxml/src/parser.c xmlIsNameStartChar(xmlParserCtxtPtr ctxt, int c) { c 2979 third_party/libxml/src/parser.c if ((c != ' ') && (c != '>') && (c != '/') && /* accelerators */ c 2980 third_party/libxml/src/parser.c (((c >= 'a') && (c <= 'z')) || c 2981 third_party/libxml/src/parser.c ((c >= 'A') && (c <= 'Z')) || c 2982 third_party/libxml/src/parser.c (c == '_') || (c == ':') || c 2983 third_party/libxml/src/parser.c ((c >= 0xC0) && (c <= 0xD6)) || c 2984 third_party/libxml/src/parser.c ((c >= 0xD8) && (c <= 0xF6)) || c 2985 third_party/libxml/src/parser.c ((c >= 0xF8) && (c <= 0x2FF)) || c 2986 third_party/libxml/src/parser.c ((c >= 0x370) && (c <= 0x37D)) || c 2987 third_party/libxml/src/parser.c ((c >= 0x37F) && (c <= 0x1FFF)) || c 2988 third_party/libxml/src/parser.c ((c >= 0x200C) && (c <= 0x200D)) || c 2989 third_party/libxml/src/parser.c ((c >= 0x2070) && (c <= 0x218F)) || c 2990 third_party/libxml/src/parser.c ((c >= 0x2C00) && (c <= 0x2FEF)) || c 2991 third_party/libxml/src/parser.c ((c >= 0x3001) && (c <= 0xD7FF)) || c 2992 third_party/libxml/src/parser.c ((c >= 0xF900) && (c <= 0xFDCF)) || c 2993 third_party/libxml/src/parser.c ((c >= 0xFDF0) && (c <= 0xFFFD)) || c 2994 third_party/libxml/src/parser.c ((c >= 0x10000) && (c <= 0xEFFFF)))) c 2997 third_party/libxml/src/parser.c if (IS_LETTER(c) || (c == '_') || (c == ':')) c 3004 third_party/libxml/src/parser.c xmlIsNameChar(xmlParserCtxtPtr ctxt, int c) { c 3010 third_party/libxml/src/parser.c if ((c != ' ') && (c != '>') && (c != '/') && /* accelerators */ c 3011 third_party/libxml/src/parser.c (((c >= 'a') && (c <= 'z')) || c 3012 third_party/libxml/src/parser.c ((c >= 'A') && (c <= 'Z')) || c 3013 third_party/libxml/src/parser.c ((c >= '0') && (c <= '9')) || /* !start */ c 3014 third_party/libxml/src/parser.c (c == '_') || (c == ':') || c 3015 third_party/libxml/src/parser.c (c == '-') || (c == '.') || (c == 0xB7) || /* !start */ c 3016 third_party/libxml/src/parser.c ((c >= 0xC0) && (c <= 0xD6)) || c 3017 third_party/libxml/src/parser.c ((c >= 0xD8) && (c <= 0xF6)) || c 3018 third_party/libxml/src/parser.c ((c >= 0xF8) && (c <= 0x2FF)) || c 3019 third_party/libxml/src/parser.c ((c >= 0x300) && (c <= 0x36F)) || /* !start */ c 3020 third_party/libxml/src/parser.c ((c >= 0x370) && (c <= 0x37D)) || c 3021 third_party/libxml/src/parser.c ((c >= 0x37F) && (c <= 0x1FFF)) || c 3022 third_party/libxml/src/parser.c ((c >= 0x200C) && (c <= 0x200D)) || c 3023 third_party/libxml/src/parser.c ((c >= 0x203F) && (c <= 0x2040)) || /* !start */ c 3024 third_party/libxml/src/parser.c ((c >= 0x2070) && (c <= 0x218F)) || c 3025 third_party/libxml/src/parser.c ((c >= 0x2C00) && (c <= 0x2FEF)) || c 3026 third_party/libxml/src/parser.c ((c >= 0x3001) && (c <= 0xD7FF)) || c 3027 third_party/libxml/src/parser.c ((c >= 0xF900) && (c <= 0xFDCF)) || c 3028 third_party/libxml/src/parser.c ((c >= 0xFDF0) && (c <= 0xFFFD)) || c 3029 third_party/libxml/src/parser.c ((c >= 0x10000) && (c <= 0xEFFFF)))) c 3032 third_party/libxml/src/parser.c if ((IS_LETTER(c)) || (IS_DIGIT(c)) || c 3033 third_party/libxml/src/parser.c (c == '.') || (c == '-') || c 3034 third_party/libxml/src/parser.c (c == '_') || (c == ':') || c 3035 third_party/libxml/src/parser.c (IS_COMBINING(c)) || c 3036 third_party/libxml/src/parser.c (IS_EXTENDER(c))) c 3048 third_party/libxml/src/parser.c int c; c 3061 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3067 third_party/libxml/src/parser.c if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */ c 3068 third_party/libxml/src/parser.c (!(((c >= 'a') && (c <= 'z')) || c 3069 third_party/libxml/src/parser.c ((c >= 'A') && (c <= 'Z')) || c 3070 third_party/libxml/src/parser.c (c == '_') || (c == ':') || c 3071 third_party/libxml/src/parser.c ((c >= 0xC0) && (c <= 0xD6)) || c 3072 third_party/libxml/src/parser.c ((c >= 0xD8) && (c <= 0xF6)) || c 3073 third_party/libxml/src/parser.c ((c >= 0xF8) && (c <= 0x2FF)) || c 3074 third_party/libxml/src/parser.c ((c >= 0x370) && (c <= 0x37D)) || c 3075 third_party/libxml/src/parser.c ((c >= 0x37F) && (c <= 0x1FFF)) || c 3076 third_party/libxml/src/parser.c ((c >= 0x200C) && (c <= 0x200D)) || c 3077 third_party/libxml/src/parser.c ((c >= 0x2070) && (c <= 0x218F)) || c 3078 third_party/libxml/src/parser.c ((c >= 0x2C00) && (c <= 0x2FEF)) || c 3079 third_party/libxml/src/parser.c ((c >= 0x3001) && (c <= 0xD7FF)) || c 3080 third_party/libxml/src/parser.c ((c >= 0xF900) && (c <= 0xFDCF)) || c 3081 third_party/libxml/src/parser.c ((c >= 0xFDF0) && (c <= 0xFFFD)) || c 3082 third_party/libxml/src/parser.c ((c >= 0x10000) && (c <= 0xEFFFF))))) { c 3087 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3088 third_party/libxml/src/parser.c while ((c != ' ') && (c != '>') && (c != '/') && /* accelerators */ c 3089 third_party/libxml/src/parser.c (((c >= 'a') && (c <= 'z')) || c 3090 third_party/libxml/src/parser.c ((c >= 'A') && (c <= 'Z')) || c 3091 third_party/libxml/src/parser.c ((c >= '0') && (c <= '9')) || /* !start */ c 3092 third_party/libxml/src/parser.c (c == '_') || (c == ':') || c 3093 third_party/libxml/src/parser.c (c == '-') || (c == '.') || (c == 0xB7) || /* !start */ c 3094 third_party/libxml/src/parser.c ((c >= 0xC0) && (c <= 0xD6)) || c 3095 third_party/libxml/src/parser.c ((c >= 0xD8) && (c <= 0xF6)) || c 3096 third_party/libxml/src/parser.c ((c >= 0xF8) && (c <= 0x2FF)) || c 3097 third_party/libxml/src/parser.c ((c >= 0x300) && (c <= 0x36F)) || /* !start */ c 3098 third_party/libxml/src/parser.c ((c >= 0x370) && (c <= 0x37D)) || c 3099 third_party/libxml/src/parser.c ((c >= 0x37F) && (c <= 0x1FFF)) || c 3100 third_party/libxml/src/parser.c ((c >= 0x200C) && (c <= 0x200D)) || c 3101 third_party/libxml/src/parser.c ((c >= 0x203F) && (c <= 0x2040)) || /* !start */ c 3102 third_party/libxml/src/parser.c ((c >= 0x2070) && (c <= 0x218F)) || c 3103 third_party/libxml/src/parser.c ((c >= 0x2C00) && (c <= 0x2FEF)) || c 3104 third_party/libxml/src/parser.c ((c >= 0x3001) && (c <= 0xD7FF)) || c 3105 third_party/libxml/src/parser.c ((c >= 0xF900) && (c <= 0xFDCF)) || c 3106 third_party/libxml/src/parser.c ((c >= 0xFDF0) && (c <= 0xFFFD)) || c 3107 third_party/libxml/src/parser.c ((c >= 0x10000) && (c <= 0xEFFFF)) c 3117 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3120 third_party/libxml/src/parser.c if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */ c 3121 third_party/libxml/src/parser.c (!IS_LETTER(c) && (c != '_') && c 3122 third_party/libxml/src/parser.c (c != ':'))) { c 3127 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3129 third_party/libxml/src/parser.c while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */ c 3130 third_party/libxml/src/parser.c ((IS_LETTER(c)) || (IS_DIGIT(c)) || c 3131 third_party/libxml/src/parser.c (c == '.') || (c == '-') || c 3132 third_party/libxml/src/parser.c (c == '_') || (c == ':') || c 3133 third_party/libxml/src/parser.c (IS_COMBINING(c)) || c 3134 third_party/libxml/src/parser.c (IS_EXTENDER(c)))) { c 3143 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3211 third_party/libxml/src/parser.c int c; c 3222 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3223 third_party/libxml/src/parser.c if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */ c 3224 third_party/libxml/src/parser.c (!xmlIsNameStartChar(ctxt, c) || (c == ':'))) { c 3228 third_party/libxml/src/parser.c while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */ c 3229 third_party/libxml/src/parser.c (xmlIsNameChar(ctxt, c) && (c != ':'))) { c 3238 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3361 third_party/libxml/src/parser.c int c; c 3367 third_party/libxml/src/parser.c c = CUR_SCHAR(cur, l); c 3368 third_party/libxml/src/parser.c if (!xmlIsNameStartChar(ctxt, c)) { c 3372 third_party/libxml/src/parser.c COPY_BUF(l,buf,len,c); c 3374 third_party/libxml/src/parser.c c = CUR_SCHAR(cur, l); c 3375 third_party/libxml/src/parser.c while (xmlIsNameChar(ctxt, c)) { c 3376 third_party/libxml/src/parser.c COPY_BUF(l,buf,len,c); c 3378 third_party/libxml/src/parser.c c = CUR_SCHAR(cur, l); c 3393 third_party/libxml/src/parser.c while (xmlIsNameChar(ctxt, c)) { c 3406 third_party/libxml/src/parser.c COPY_BUF(l,buffer,len,c); c 3408 third_party/libxml/src/parser.c c = CUR_SCHAR(cur, l); c 3436 third_party/libxml/src/parser.c int c; c 3446 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3448 third_party/libxml/src/parser.c while (xmlIsNameChar(ctxt, c)) { c 3453 third_party/libxml/src/parser.c COPY_BUF(l,buf,len,c); c 3455 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3470 third_party/libxml/src/parser.c while (xmlIsNameChar(ctxt, c)) { c 3492 third_party/libxml/src/parser.c COPY_BUF(l,buffer,len,c); c 3494 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3523 third_party/libxml/src/parser.c int c, l; c 3553 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3563 third_party/libxml/src/parser.c while (((IS_CHAR(c)) && ((c != stop) || /* checked */ c 3577 third_party/libxml/src/parser.c COPY_BUF(l,buf,len,c); c 3586 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3587 third_party/libxml/src/parser.c if (c == 0) { c 3589 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3631 third_party/libxml/src/parser.c if (c != stop) { c 3672 third_party/libxml/src/parser.c int c, l, in_space = 0; c 3699 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3701 third_party/libxml/src/parser.c (IS_CHAR(c)) && (c != '<')) && c 3703 third_party/libxml/src/parser.c if (c == 0) break; c 3704 third_party/libxml/src/parser.c if (c == '&') { c 3815 third_party/libxml/src/parser.c if ((c == 0x20) || (c == 0xD) || (c == 0xA) || (c == 0x9)) { c 3827 third_party/libxml/src/parser.c COPY_BUF(l,buf,len,c); c 3835 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 3847 third_party/libxml/src/parser.c if ((c != 0) && (!IS_CHAR(c))) { c 7690 third_party/libxml/src/parser.c int l, c; c 7731 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 7733 third_party/libxml/src/parser.c (IS_CHAR(c))) { c 7744 third_party/libxml/src/parser.c c = CUR_CHAR(l); c 7749 third_party/libxml/src/parser.c } else if (!IS_CHAR(c)) { c 7752 third_party/libxml/src/parser.c c); c 10639 third_party/libxml/src/parser.c unsigned char c; c 10646 third_party/libxml/src/parser.c c = utf[ix]; c 10647 third_party/libxml/src/parser.c if ((c & 0x80) == 0x00) { /* 1-byte code, starts with 10 */ c 10648 third_party/libxml/src/parser.c if (c >= 0x20) c 10650 third_party/libxml/src/parser.c else if ((c == 0xA) || (c == 0xD) || (c == 0x9)) c 10654 third_party/libxml/src/parser.c } else if ((c & 0xe0) == 0xc0) {/* 2-byte code, starts with 110 */ c 10663 third_party/libxml/src/parser.c } else if ((c & 0xf0) == 0xe0) {/* 3-byte code, starts with 1110 */ c 10674 third_party/libxml/src/parser.c } else if ((c & 0xf8) == 0xf0) {/* 4-byte code, starts with 11110 */ c 222 third_party/libxml/src/parserInternals.c xmlIsLetter(int c) { c 223 third_party/libxml/src/parserInternals.c return(IS_BASECHAR(c) || IS_IDEOGRAPHIC(c)); c 467 third_party/libxml/src/parserInternals.c unsigned char c; c 493 third_party/libxml/src/parserInternals.c c = *cur; c 494 third_party/libxml/src/parserInternals.c if (c & 0x80) { c 495 third_party/libxml/src/parserInternals.c if (c == 0xC0) c 503 third_party/libxml/src/parserInternals.c if ((c & 0xe0) == 0xe0) { c 512 third_party/libxml/src/parserInternals.c if ((c & 0xf0) == 0xf0) { c 517 third_party/libxml/src/parserInternals.c if (((c & 0xf8) != 0xf0) || c 642 third_party/libxml/src/parserInternals.c unsigned char c; c 645 third_party/libxml/src/parserInternals.c c = *cur; c 646 third_party/libxml/src/parserInternals.c if (c & 0x80) { c 647 third_party/libxml/src/parserInternals.c if (((c & 0x40) == 0) || (c == 0xC0)) c 655 third_party/libxml/src/parserInternals.c if ((c & 0xe0) == 0xe0) { c 662 third_party/libxml/src/parserInternals.c if ((c & 0xf0) == 0xf0) { c 667 third_party/libxml/src/parserInternals.c if (((c & 0xf8) != 0xf0) || c 795 third_party/libxml/src/parserInternals.c unsigned char c; c 798 third_party/libxml/src/parserInternals.c c = *cur; c 799 third_party/libxml/src/parserInternals.c if (c & 0x80) { c 802 third_party/libxml/src/parserInternals.c if ((c & 0xe0) == 0xe0) { c 806 third_party/libxml/src/parserInternals.c if ((c & 0xf0) == 0xf0) { c 807 third_party/libxml/src/parserInternals.c if (((c & 0xf8) != 0xf0) || ((cur[3] & 0xc0) != 0x80)) c 42 third_party/libxml/src/pattern.c #define ERROR(a, b, c, d) c 43 third_party/libxml/src/pattern.c #define ERROR5(a, b, c, d, e) c 72 third_party/libxml/src/pattern.c #define XML_STREAM_XS_IDC(c) ((c)->flags & \ c 75 third_party/libxml/src/pattern.c #define XML_STREAM_XS_IDC_SEL(c) ((c)->flags & XML_PATTERN_XSSEL) c 77 third_party/libxml/src/pattern.c #define XML_STREAM_XS_IDC_FIELD(c) ((c)->flags & XML_PATTERN_XSFIELD) c 79 third_party/libxml/src/pattern.c #define XML_PAT_COPY_NSNAME(c, r, nsname) \ c 80 third_party/libxml/src/pattern.c if ((c)->comp->dict) \ c 81 third_party/libxml/src/pattern.c r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \ c 84 third_party/libxml/src/pattern.c #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r); c 2017 third_party/libxml/src/relaxng.c #define VALID_ERR3(a, b, c) xmlRelaxNGAddValidError(ctxt, a, b, c, 0); c 2019 third_party/libxml/src/relaxng.c #define VALID_ERR3P(a, b, c) xmlRelaxNGAddValidError(ctxt, a, b, c, 1); c 1334 third_party/libxml/src/schematron.c xmlChar c; c 1337 third_party/libxml/src/schematron.c c = ret[len - 1]; c 1338 third_party/libxml/src/schematron.c if ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) { c 1339 third_party/libxml/src/schematron.c while ((c == ' ') || (c == '\n') || c 1340 third_party/libxml/src/schematron.c (c == '\r') || (c == '\t')) { c 1344 third_party/libxml/src/schematron.c c = ret[len - 1]; c 16099 third_party/libxml/src/testapi.c int c; /* an unicode character (int) */ c 16104 third_party/libxml/src/testapi.c c = gen_int(n_c, 0); c 16106 third_party/libxml/src/testapi.c ret_val = xmlIsLetter(c); c 16109 third_party/libxml/src/testapi.c des_int(n_c, c, 0); c 366 third_party/libxml/src/tree.c int c,l; c 396 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 398 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 400 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 403 third_party/libxml/src/tree.c if ((!IS_LETTER(c)) && (c != '_')) c 406 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 407 third_party/libxml/src/tree.c while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || c 408 third_party/libxml/src/tree.c (c == '-') || (c == '_') || IS_COMBINING(c) || c 409 third_party/libxml/src/tree.c IS_EXTENDER(c)) { c 411 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 414 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 416 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 419 third_party/libxml/src/tree.c if (c != 0) c 440 third_party/libxml/src/tree.c int c,l; c 483 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 485 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 487 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 490 third_party/libxml/src/tree.c if ((!IS_LETTER(c)) && (c != '_')) c 493 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 494 third_party/libxml/src/tree.c while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || c 495 third_party/libxml/src/tree.c (c == '-') || (c == '_') || IS_COMBINING(c) || c 496 third_party/libxml/src/tree.c IS_EXTENDER(c)) { c 498 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 500 third_party/libxml/src/tree.c if (c == ':') { c 502 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 503 third_party/libxml/src/tree.c if ((!IS_LETTER(c)) && (c != '_')) c 506 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 507 third_party/libxml/src/tree.c while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || c 508 third_party/libxml/src/tree.c (c == '-') || (c == '_') || IS_COMBINING(c) || c 509 third_party/libxml/src/tree.c IS_EXTENDER(c)) { c 511 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 515 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 517 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 520 third_party/libxml/src/tree.c if (c != 0) c 538 third_party/libxml/src/tree.c int c,l; c 567 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 569 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 571 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 574 third_party/libxml/src/tree.c if ((!IS_LETTER(c)) && (c != '_') && (c != ':')) c 577 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 578 third_party/libxml/src/tree.c while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || c 579 third_party/libxml/src/tree.c (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)) { c 581 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 584 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 586 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 589 third_party/libxml/src/tree.c if (c != 0) c 607 third_party/libxml/src/tree.c int c,l; c 638 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 640 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 642 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 645 third_party/libxml/src/tree.c if (!(IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || c 646 third_party/libxml/src/tree.c (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c))) c 649 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 650 third_party/libxml/src/tree.c while (IS_LETTER(c) || IS_DIGIT(c) || (c == '.') || (c == ':') || c 651 third_party/libxml/src/tree.c (c == '-') || (c == '_') || IS_COMBINING(c) || IS_EXTENDER(c)) { c 653 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 656 third_party/libxml/src/tree.c while (IS_BLANK(c)) { c 658 third_party/libxml/src/tree.c c = CUR_SCHAR(cur, l); c 661 third_party/libxml/src/tree.c if (c != 0) c 1087 third_party/libxml/src/tree.c xmlNodePtr next, c = cur->children; c 1093 third_party/libxml/src/tree.c while (c != NULL) { c 1094 third_party/libxml/src/tree.c next = c->next; c 1095 third_party/libxml/src/tree.c if ((c->type != XML_NOTATION_NODE) && c 1096 third_party/libxml/src/tree.c (c->type != XML_ELEMENT_DECL) && c 1097 third_party/libxml/src/tree.c (c->type != XML_ATTRIBUTE_DECL) && c 1098 third_party/libxml/src/tree.c (c->type != XML_ENTITY_DECL)) { c 1099 third_party/libxml/src/tree.c xmlUnlinkNode(c); c 1100 third_party/libxml/src/tree.c xmlFreeNode(c); c 1102 third_party/libxml/src/tree.c c = next; c 1660 third_party/libxml/src/uri.c static int is_hex(char c) { c 1661 third_party/libxml/src/uri.c if (((c >= '0') && (c <= '9')) || c 1662 third_party/libxml/src/uri.c ((c >= 'a') && (c <= 'f')) || c 1663 third_party/libxml/src/uri.c ((c >= 'A') && (c <= 'F'))) c 2495 third_party/libxml/src/uri.c unsigned char c; c 2509 third_party/libxml/src/uri.c c = path[j]; c 2510 third_party/libxml/src/uri.c if (!(((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z')))) c 623 third_party/libxml/src/valid.c #define DEBUG_VALID_STATE(n,c) xmlValidStateDebug(ctxt); c 628 third_party/libxml/src/valid.c #define DEBUG_VALID_STATE(n,c) c 3412 third_party/libxml/src/valid.c xmlIsDocNameStartChar(xmlDocPtr doc, int c) { c 3418 third_party/libxml/src/valid.c if (((c >= 'a') && (c <= 'z')) || c 3419 third_party/libxml/src/valid.c ((c >= 'A') && (c <= 'Z')) || c 3420 third_party/libxml/src/valid.c (c == '_') || (c == ':') || c 3421 third_party/libxml/src/valid.c ((c >= 0xC0) && (c <= 0xD6)) || c 3422 third_party/libxml/src/valid.c ((c >= 0xD8) && (c <= 0xF6)) || c 3423 third_party/libxml/src/valid.c ((c >= 0xF8) && (c <= 0x2FF)) || c 3424 third_party/libxml/src/valid.c ((c >= 0x370) && (c <= 0x37D)) || c 3425 third_party/libxml/src/valid.c ((c >= 0x37F) && (c <= 0x1FFF)) || c 3426 third_party/libxml/src/valid.c ((c >= 0x200C) && (c <= 0x200D)) || c 3427 third_party/libxml/src/valid.c ((c >= 0x2070) && (c <= 0x218F)) || c 3428 third_party/libxml/src/valid.c ((c >= 0x2C00) && (c <= 0x2FEF)) || c 3429 third_party/libxml/src/valid.c ((c >= 0x3001) && (c <= 0xD7FF)) || c 3430 third_party/libxml/src/valid.c ((c >= 0xF900) && (c <= 0xFDCF)) || c 3431 third_party/libxml/src/valid.c ((c >= 0xFDF0) && (c <= 0xFFFD)) || c 3432 third_party/libxml/src/valid.c ((c >= 0x10000) && (c <= 0xEFFFF))) c 3435 third_party/libxml/src/valid.c if (IS_LETTER(c) || (c == '_') || (c == ':')) c 3442 third_party/libxml/src/valid.c xmlIsDocNameChar(xmlDocPtr doc, int c) { c 3448 third_party/libxml/src/valid.c if (((c >= 'a') && (c <= 'z')) || c 3449 third_party/libxml/src/valid.c ((c >= 'A') && (c <= 'Z')) || c 3450 third_party/libxml/src/valid.c ((c >= '0') && (c <= '9')) || /* !start */ c 3451 third_party/libxml/src/valid.c (c == '_') || (c == ':') || c 3452 third_party/libxml/src/valid.c (c == '-') || (c == '.') || (c == 0xB7) || /* !start */ c 3453 third_party/libxml/src/valid.c ((c >= 0xC0) && (c <= 0xD6)) || c 3454 third_party/libxml/src/valid.c ((c >= 0xD8) && (c <= 0xF6)) || c 3455 third_party/libxml/src/valid.c ((c >= 0xF8) && (c <= 0x2FF)) || c 3456 third_party/libxml/src/valid.c ((c >= 0x300) && (c <= 0x36F)) || /* !start */ c 3457 third_party/libxml/src/valid.c ((c >= 0x370) && (c <= 0x37D)) || c 3458 third_party/libxml/src/valid.c ((c >= 0x37F) && (c <= 0x1FFF)) || c 3459 third_party/libxml/src/valid.c ((c >= 0x200C) && (c <= 0x200D)) || c 3460 third_party/libxml/src/valid.c ((c >= 0x203F) && (c <= 0x2040)) || /* !start */ c 3461 third_party/libxml/src/valid.c ((c >= 0x2070) && (c <= 0x218F)) || c 3462 third_party/libxml/src/valid.c ((c >= 0x2C00) && (c <= 0x2FEF)) || c 3463 third_party/libxml/src/valid.c ((c >= 0x3001) && (c <= 0xD7FF)) || c 3464 third_party/libxml/src/valid.c ((c >= 0xF900) && (c <= 0xFDCF)) || c 3465 third_party/libxml/src/valid.c ((c >= 0xFDF0) && (c <= 0xFFFD)) || c 3466 third_party/libxml/src/valid.c ((c >= 0x10000) && (c <= 0xEFFFF))) c 3469 third_party/libxml/src/valid.c if ((IS_LETTER(c)) || (IS_DIGIT(c)) || c 3470 third_party/libxml/src/valid.c (c == '.') || (c == '-') || c 3471 third_party/libxml/src/valid.c (c == '_') || (c == ':') || c 3472 third_party/libxml/src/valid.c (IS_COMBINING(c)) || c 3473 third_party/libxml/src/valid.c (IS_EXTENDER(c))) c 7844 third_party/libxml/src/xmlregexp.c #define IS_BLANK(c) ((c == ' ') || (c == '\n') || (c == '\r') || (c == '\t')) c 8017 third_party/libxml/src/xmlregexp.c xmlExpNodePtr c; c 8032 third_party/libxml/src/xmlregexp.c c = expr->exp_left; c 8033 third_party/libxml/src/xmlregexp.c if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) c 8034 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 1); c 8036 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 0); c 8038 third_party/libxml/src/xmlregexp.c c = expr->exp_right; c 8039 third_party/libxml/src/xmlregexp.c if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) c 8040 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 1); c 8042 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 0); c 8045 third_party/libxml/src/xmlregexp.c c = expr->exp_left; c 8046 third_party/libxml/src/xmlregexp.c if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) c 8047 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 1); c 8049 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 0); c 8051 third_party/libxml/src/xmlregexp.c c = expr->exp_right; c 8052 third_party/libxml/src/xmlregexp.c if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) c 8053 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 1); c 8055 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 0); c 8060 third_party/libxml/src/xmlregexp.c c = expr->exp_left; c 8061 third_party/libxml/src/xmlregexp.c if ((c->type == XML_EXP_SEQ) || (c->type == XML_EXP_OR)) c 8062 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 1); c 8064 third_party/libxml/src/xmlregexp.c xmlExpDumpInt(buf, c, 0); c 5007 third_party/libxml/src/xmlschemas.c #define WXS_COMP_NAME(c, t) ((t) (c))->name c 5008 third_party/libxml/src/xmlschemas.c #define WXS_COMP_TNS(c, t) ((t) (c))->targetNamespace c 20411 third_party/libxml/src/xmlschemas.c #define WXS_REDEFINED_TYPE(c) \ c 20414 third_party/libxml/src/xmlschemas.c #define WXS_REDEFINED_MODEL_GROUP_DEF(c) \ c 20417 third_party/libxml/src/xmlschemas.c #define WXS_REDEFINED_ATTR_GROUP(c) \ c 20681 third_party/libxml/src/xmlschemas.c #define WXS_GET_GLOBAL_HASH(c, slot) { \ c 20682 third_party/libxml/src/xmlschemas.c if (WXS_IS_BUCKET_IMPMAIN((c)->type)) \ c 20683 third_party/libxml/src/xmlschemas.c table = &(WXS_IMPBUCKET((c))->schema->slot); \ c 20685 third_party/libxml/src/xmlschemas.c table = &(WXS_INCBUCKET((c))->ownerImport->schema->slot); } c 51 third_party/libxml/src/xmlschemastypes.c #define IS_WSP_REPLACE_CH(c) ((((c) == 0x9) || ((c) == 0xa)) || \ c 52 third_party/libxml/src/xmlschemastypes.c ((c) == 0xd)) c 54 third_party/libxml/src/xmlschemastypes.c #define IS_WSP_SPACE_CH(c) ((c) == 0x20) c 56 third_party/libxml/src/xmlschemastypes.c #define IS_WSP_BLANK_CH(c) IS_BLANK_CH(c) c 1108 third_party/libxml/src/xmlschemastypes.c #define IS_TZO_CHAR(c) \ c 1109 third_party/libxml/src/xmlschemastypes.c ((c == 0) || (c == 'Z') || (c == '+') || (c == '-')) c 703 third_party/libxml/src/xmlstring.c unsigned int c; c 712 third_party/libxml/src/xmlstring.c c = utf[0]; c 713 third_party/libxml/src/xmlstring.c if (c & 0x80) { c 718 third_party/libxml/src/xmlstring.c if ((c & 0xe0) == 0xe0) { c 723 third_party/libxml/src/xmlstring.c if ((c & 0xf0) == 0xf0) { c 726 third_party/libxml/src/xmlstring.c if ((c & 0xf8) != 0xf0 || (utf[3] & 0xc0) != 0x80) c 730 third_party/libxml/src/xmlstring.c c = (utf[0] & 0x7) << 18; c 731 third_party/libxml/src/xmlstring.c c |= (utf[1] & 0x3f) << 12; c 732 third_party/libxml/src/xmlstring.c c |= (utf[2] & 0x3f) << 6; c 733 third_party/libxml/src/xmlstring.c c |= utf[3] & 0x3f; c 737 third_party/libxml/src/xmlstring.c c = (utf[0] & 0xf) << 12; c 738 third_party/libxml/src/xmlstring.c c |= (utf[1] & 0x3f) << 6; c 739 third_party/libxml/src/xmlstring.c c |= utf[2] & 0x3f; c 744 third_party/libxml/src/xmlstring.c c = (utf[0] & 0x1f) << 6; c 745 third_party/libxml/src/xmlstring.c c |= utf[1] & 0x3f; c 751 third_party/libxml/src/xmlstring.c return(c); c 776 third_party/libxml/src/xmlstring.c unsigned char c; c 788 third_party/libxml/src/xmlstring.c for (ix = 0; (c = utf[ix]);) { /* string is 0-terminated */ c 789 third_party/libxml/src/xmlstring.c if ((c & 0x80) == 0x00) { /* 1-byte code, starts with 10 */ c 791 third_party/libxml/src/xmlstring.c } else if ((c & 0xe0) == 0xc0) {/* 2-byte code, starts with 110 */ c 795 third_party/libxml/src/xmlstring.c } else if ((c & 0xf0) == 0xe0) {/* 3-byte code, starts with 1110 */ c 800 third_party/libxml/src/xmlstring.c } else if ((c & 0xf8) == 0xf0) {/* 4-byte code, starts with 11110 */ c 1564 third_party/libxml/src/xmlwriter.c int c; c 1569 third_party/libxml/src/xmlwriter.c c = data[i]; c 1570 third_party/libxml/src/xmlwriter.c igroup[n] = (unsigned char) c; c 817 third_party/libxml/src/xpath.c #define XP_HAS_CACHE(c) ((c != NULL) && ((c)->cache != NULL)) c 9652 third_party/libxml/src/xpath.c unsigned char c; c 9671 third_party/libxml/src/xpath.c c = *cur; c 9672 third_party/libxml/src/xpath.c if (c & 0x80) { c 9675 third_party/libxml/src/xpath.c if ((c & 0xe0) == 0xe0) { c 9679 third_party/libxml/src/xpath.c if ((c & 0xf0) == 0xf0) { c 9680 third_party/libxml/src/xpath.c if (((c & 0xf8) != 0xf0) || c 9853 third_party/libxml/src/xpath.c int c; c 9858 third_party/libxml/src/xpath.c c = CUR_CHAR(l); c 9859 third_party/libxml/src/xpath.c if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */ c 9860 third_party/libxml/src/xpath.c (c == '[') || (c == ']') || (c == '@') || /* accelerators */ c 9861 third_party/libxml/src/xpath.c (c == '*') || /* accelerators */ c 9862 third_party/libxml/src/xpath.c (!IS_LETTER(c) && (c != '_') && c 9863 third_party/libxml/src/xpath.c ((qualified) && (c != ':')))) { c 9867 third_party/libxml/src/xpath.c while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */ c 9868 third_party/libxml/src/xpath.c ((IS_LETTER(c)) || (IS_DIGIT(c)) || c 9869 third_party/libxml/src/xpath.c (c == '.') || (c == '-') || c 9870 third_party/libxml/src/xpath.c (c == '_') || ((qualified) && (c == ':')) || c 9871 third_party/libxml/src/xpath.c (IS_COMBINING(c)) || c 9872 third_party/libxml/src/xpath.c (IS_EXTENDER(c)))) { c 9873 third_party/libxml/src/xpath.c COPY_BUF(l,buf,len,c); c 9875 third_party/libxml/src/xpath.c c = CUR_CHAR(l); c 9889 third_party/libxml/src/xpath.c while ((IS_LETTER(c)) || (IS_DIGIT(c)) || /* test bigname.xml */ c 9890 third_party/libxml/src/xpath.c (c == '.') || (c == '-') || c 9891 third_party/libxml/src/xpath.c (c == '_') || ((qualified) && (c == ':')) || c 9892 third_party/libxml/src/xpath.c (IS_COMBINING(c)) || c 9893 third_party/libxml/src/xpath.c (IS_EXTENDER(c))) { c 9902 third_party/libxml/src/xpath.c COPY_BUF(l,buffer,len,c); c 9904 third_party/libxml/src/xpath.c c = CUR_CHAR(l); c 10431 third_party/libxml/src/xpath.c int c; c 10437 third_party/libxml/src/xpath.c c = CUR_CHAR(l); c 10438 third_party/libxml/src/xpath.c if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */ c 10439 third_party/libxml/src/xpath.c (!IS_LETTER(c) && (c != '_') && c 10440 third_party/libxml/src/xpath.c (c != ':'))) { c 10444 third_party/libxml/src/xpath.c while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */ c 10445 third_party/libxml/src/xpath.c ((IS_LETTER(c)) || (IS_DIGIT(c)) || c 10446 third_party/libxml/src/xpath.c (c == '.') || (c == '-') || c 10447 third_party/libxml/src/xpath.c (c == '_') || (c == ':') || c 10448 third_party/libxml/src/xpath.c (IS_COMBINING(c)) || c 10449 third_party/libxml/src/xpath.c (IS_EXTENDER(c)))) { c 10452 third_party/libxml/src/xpath.c c = CUR_CHAR(l); c 100 third_party/libxml/win32/config.h #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) c 135 third_party/libxslt/libexslt/date.c #define IS_TZO_CHAR(c) \ c 136 third_party/libxslt/libexslt/date.c ((c == 0) || (c == 'Z') || (c == '+') || (c == '-')) c 72 third_party/libxslt/libxslt/attributes.c #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ c 73 third_party/libxslt/libxslt/attributes.c ((c) == 0x0D)) c 48 third_party/libxslt/libxslt/variables.c #define XSLT_TCTXT_VARIABLE(c) ((xsltStackElemPtr) (c)->contextVariable) c 84 third_party/libxslt/libxslt/win32config.h #define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a) c 107 third_party/libxslt/libxslt/xslt.c #define IS_BLANK(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \ c 108 third_party/libxslt/libxslt/xslt.c ((c) == 0x0D)) c 29 third_party/libxslt/libxslt/xsltlocale.c #define ISALPHA(c) ((c & 0xc0) == 0x40 && (unsigned)((c & 0x1f) - 1) < 26) c 30 third_party/libxslt/libxslt/xsltlocale.c #define TOUPPER(c) (c & ~0x20) c 31 third_party/libxslt/libxslt/xsltlocale.c #define TOLOWER(c) (c | 0x20) c 195 third_party/libxslt/libxslt/xsltlocale.c xmlChar c; c 199 third_party/libxslt/libxslt/xsltlocale.c c = localeName[1]; c 204 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a' || c == 'm') region = "ET"; c 205 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'f') region = "ZA"; c 206 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n') region = "ES"; c 207 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "AE"; c 208 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'z') region = "AZ"; c 211 third_party/libxslt/libxslt/xsltlocale.c if (c == 'e') region = "BY"; c 212 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'g') region = "BG"; c 213 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n') region = "BD"; c 214 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "FR"; c 215 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "BA"; c 218 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "ES"; c 219 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "CZ"; c 220 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'y') region = "GB"; c 223 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "DK"; c 224 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'e') region = "DE"; c 227 third_party/libxslt/libxslt/xsltlocale.c if (c == 'l') region = "GR"; c 228 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n' || c == 'o') region = "US"; c 229 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's' || c == 'u') region = "ES"; c 230 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "EE"; c 233 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "IR"; c 234 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'i') region = "FI"; c 235 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'o') region = "FO"; c 236 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "FR"; c 239 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "IE"; c 240 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l') region = "ES"; c 241 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'v') region = "GB"; c 244 third_party/libxslt/libxslt/xsltlocale.c if (c == 'e') region = "IL"; c 245 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'i') region = "IN"; c 246 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "HT"; c 247 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'u') region = "HU"; c 250 third_party/libxslt/libxslt/xsltlocale.c if (c == 'd') region = "ID"; c 251 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "IS"; c 252 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "IT"; c 253 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'w') region = "IL"; c 256 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "JP"; c 259 third_party/libxslt/libxslt/xsltlocale.c if (c == 'l') region = "GL"; c 260 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'o') region = "KR"; c 261 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'w') region = "GB"; c 264 third_party/libxslt/libxslt/xsltlocale.c if (c == 't') region = "LT"; c 265 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'v') region = "LV"; c 268 third_party/libxslt/libxslt/xsltlocale.c if (c == 'k') region = "MK"; c 269 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l' || c == 'r') region = "IN"; c 270 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n') region = "MN"; c 271 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "MY"; c 272 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "MT"; c 275 third_party/libxslt/libxslt/xsltlocale.c if (c == 'b' || c == 'n' || c == 'o') region = "NO"; c 276 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'e') region = "NP"; c 277 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l') region = "NL"; c 280 third_party/libxslt/libxslt/xsltlocale.c if (c == 'm') region = "ET"; c 283 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "IN"; c 284 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l') region = "PL"; c 285 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "PT"; c 288 third_party/libxslt/libxslt/xsltlocale.c if (c == 'o') region = "RO"; c 289 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'u') region = "RU"; c 292 third_party/libxslt/libxslt/xsltlocale.c switch (c) { c 304 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a' || c == 'e') region = "IN"; c 305 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'h') region = "TH"; c 306 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'i') region = "ER"; c 307 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "TR"; c 308 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "RU"; c 311 third_party/libxslt/libxslt/xsltlocale.c if (c == 'k') region = "UA"; c 312 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "PK"; c 315 third_party/libxslt/libxslt/xsltlocale.c if (c == 'i') region = "VN"; c 318 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "BE"; c 321 third_party/libxslt/libxslt/xsltlocale.c if (c == 'h') region = "ZA"; c 324 third_party/libxslt/libxslt/xsltlocale.c if (c == 'h') region = "CN"; c 325 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'u') region = "ZA"; c 247 third_party/libxslt/libxslt/xsltutils.c unsigned int c; c 256 third_party/libxslt/libxslt/xsltutils.c c = utf[0]; c 257 third_party/libxslt/libxslt/xsltutils.c if (c & 0x80) { c 262 third_party/libxslt/libxslt/xsltutils.c if ((c & 0xe0) == 0xe0) { c 267 third_party/libxslt/libxslt/xsltutils.c if ((c & 0xf0) == 0xf0) { c 270 third_party/libxslt/libxslt/xsltutils.c if ((c & 0xf8) != 0xf0 || (utf[3] & 0xc0) != 0x80) c 274 third_party/libxslt/libxslt/xsltutils.c c = (utf[0] & 0x7) << 18; c 275 third_party/libxslt/libxslt/xsltutils.c c |= (utf[1] & 0x3f) << 12; c 276 third_party/libxslt/libxslt/xsltutils.c c |= (utf[2] & 0x3f) << 6; c 277 third_party/libxslt/libxslt/xsltutils.c c |= utf[3] & 0x3f; c 281 third_party/libxslt/libxslt/xsltutils.c c = (utf[0] & 0xf) << 12; c 282 third_party/libxslt/libxslt/xsltutils.c c |= (utf[1] & 0x3f) << 6; c 283 third_party/libxslt/libxslt/xsltutils.c c |= utf[2] & 0x3f; c 288 third_party/libxslt/libxslt/xsltutils.c c = (utf[0] & 0x1f) << 6; c 289 third_party/libxslt/libxslt/xsltutils.c c |= utf[1] & 0x3f; c 295 third_party/libxslt/libxslt/xsltutils.c return(c); c 258 third_party/lzma_sdk/7zDec.c static Bool IS_SUPPORTED_CODER(const CSzCoderInfo *c) c 261 third_party/lzma_sdk/7zDec.c c->NumInStreams == 1 && c 262 third_party/lzma_sdk/7zDec.c c->NumOutStreams == 1 && c 263 third_party/lzma_sdk/7zDec.c c->MethodID <= (UInt32)0xFFFFFFFF && c 264 third_party/lzma_sdk/7zDec.c IS_MAIN_METHOD((UInt32)c->MethodID); c 267 third_party/lzma_sdk/7zDec.c #define IS_BCJ2(c) ((c)->MethodID == k_BCJ2 && (c)->NumInStreams == 4 && (c)->NumOutStreams == 1) c 283 third_party/lzma_sdk/7zDec.c CSzCoderInfo *c = &f->Coders[1]; c 284 third_party/lzma_sdk/7zDec.c if (c->MethodID > (UInt32)0xFFFFFFFF || c 285 third_party/lzma_sdk/7zDec.c c->NumInStreams != 1 || c 286 third_party/lzma_sdk/7zDec.c c->NumOutStreams != 1 || c 293 third_party/lzma_sdk/7zDec.c switch ((UInt32)c->MethodID) c 52 third_party/lzma_sdk/CpuArch.c static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d) c 71 third_party/lzma_sdk/CpuArch.c *c = c2; c 84 third_party/lzma_sdk/CpuArch.c "=c" (*c) , c 96 third_party/lzma_sdk/CpuArch.c "=c" (*c) , c 110 third_party/lzma_sdk/CpuArch.c *c = CPUInfo[2]; c 120 third_party/lzma_sdk/CpuArch.c MyCPUID(1, &p->ver, &p->b, &p->c, &p->d); c 184 third_party/lzma_sdk/CpuArch.c return (p.c >> 25) & 1; c 131 third_party/lzma_sdk/CpuArch.h UInt32 c; c 109 third_party/lzma_sdk/LzmaEnc.c int c = 2, slotFast; c 117 third_party/lzma_sdk/LzmaEnc.c for (j = 0; j < k; j++, c++) c 118 third_party/lzma_sdk/LzmaEnc.c g_FastPos[c] = (Byte)slotFast; c 164 third_party/mach_override/libudis86/decode.c ud_lookup_mnemonic(enum ud_mnemonic_code c) c 166 third_party/mach_override/libudis86/decode.c if (c < UD_MAX_MNEMONIC_CODE) { c 167 third_party/mach_override/libudis86/decode.c return ud_mnemonics_str[c]; c 83 third_party/mach_override/libudis86/extern.h extern const char* ud_lookup_mnemonic(enum ud_mnemonic_code c); c 146 third_party/mach_override/libudis86/input.c int c = -1; c 151 third_party/mach_override/libudis86/input.c c = u->inp_cache[ ++u->inp_curr ]; c 153 third_party/mach_override/libudis86/input.c } else if (u->inp_end || (c = u->inp_hook(u)) == -1) { c 165 third_party/mach_override/libudis86/input.c u->inp_cache[u->inp_fill] = c; c 168 third_party/mach_override/libudis86/input.c u->inp_sess[u->inp_ctr++] = c; c 170 third_party/mach_override/libudis86/input.c return (uint8_t) c; c 49 third_party/npapi/npspy/extern/java/jmc.h jint a, b, c, d; c 125 third_party/npapi/npspy/extern/java/jni.h jchar c; c 423 third_party/npapi/npspy/extern/java/jri.h void* (*NewObjectV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 424 third_party/npapi/npspy/extern/java/jri.h void* (*NewObjectA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 427 third_party/npapi/npspy/extern/java/jri.h jint (*GetMethodID)(JRIEnv* env, jint op, struct java_lang_Class* a, const char* b, const char* c); c 429 third_party/npapi/npspy/extern/java/jri.h void* (*CallMethodV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 430 third_party/npapi/npspy/extern/java/jri.h void* (*CallMethodA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 432 third_party/npapi/npspy/extern/java/jri.h jbool (*CallMethodBooleanV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 433 third_party/npapi/npspy/extern/java/jri.h jbool (*CallMethodBooleanA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 435 third_party/npapi/npspy/extern/java/jri.h jbyte (*CallMethodByteV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 436 third_party/npapi/npspy/extern/java/jri.h jbyte (*CallMethodByteA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 438 third_party/npapi/npspy/extern/java/jri.h jchar (*CallMethodCharV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 439 third_party/npapi/npspy/extern/java/jri.h jchar (*CallMethodCharA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 441 third_party/npapi/npspy/extern/java/jri.h jshort (*CallMethodShortV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 442 third_party/npapi/npspy/extern/java/jri.h jshort (*CallMethodShortA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 444 third_party/npapi/npspy/extern/java/jri.h jint (*CallMethodIntV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 445 third_party/npapi/npspy/extern/java/jri.h jint (*CallMethodIntA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 447 third_party/npapi/npspy/extern/java/jri.h jlong (*CallMethodLongV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 448 third_party/npapi/npspy/extern/java/jri.h jlong (*CallMethodLongA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 450 third_party/npapi/npspy/extern/java/jri.h jfloat (*CallMethodFloatV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 451 third_party/npapi/npspy/extern/java/jri.h jfloat (*CallMethodFloatA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 453 third_party/npapi/npspy/extern/java/jri.h jdouble (*CallMethodDoubleV)(JRIEnv* env, jint op, void* a, jint b, va_list c); c 454 third_party/npapi/npspy/extern/java/jri.h jdouble (*CallMethodDoubleA)(JRIEnv* env, jint op, void* a, jint b, JRIValue* c); c 455 third_party/npapi/npspy/extern/java/jri.h jint (*GetFieldID)(JRIEnv* env, jint op, struct java_lang_Class* a, const char* b, const char* c); c 465 third_party/npapi/npspy/extern/java/jri.h void (*SetField)(JRIEnv* env, jint op, void* a, jint b, void* c); c 466 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldBoolean)(JRIEnv* env, jint op, void* a, jint b, jbool c); c 467 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldByte)(JRIEnv* env, jint op, void* a, jint b, jbyte c); c 468 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldChar)(JRIEnv* env, jint op, void* a, jint b, jchar c); c 469 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldShort)(JRIEnv* env, jint op, void* a, jint b, jshort c); c 470 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldInt)(JRIEnv* env, jint op, void* a, jint b, jint c); c 471 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldLong)(JRIEnv* env, jint op, void* a, jint b, jlong c); c 472 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldFloat)(JRIEnv* env, jint op, void* a, jint b, jfloat c); c 473 third_party/npapi/npspy/extern/java/jri.h void (*SetFieldDouble)(JRIEnv* env, jint op, void* a, jint b, jdouble c); c 475 third_party/npapi/npspy/extern/java/jri.h jint (*GetStaticMethodID)(JRIEnv* env, jint op, struct java_lang_Class* a, const char* b, const char* c); c 477 third_party/npapi/npspy/extern/java/jri.h void* (*CallStaticMethodV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 478 third_party/npapi/npspy/extern/java/jri.h void* (*CallStaticMethodA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 480 third_party/npapi/npspy/extern/java/jri.h jbool (*CallStaticMethodBooleanV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 481 third_party/npapi/npspy/extern/java/jri.h jbool (*CallStaticMethodBooleanA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 483 third_party/npapi/npspy/extern/java/jri.h jbyte (*CallStaticMethodByteV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 484 third_party/npapi/npspy/extern/java/jri.h jbyte (*CallStaticMethodByteA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 486 third_party/npapi/npspy/extern/java/jri.h jchar (*CallStaticMethodCharV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 487 third_party/npapi/npspy/extern/java/jri.h jchar (*CallStaticMethodCharA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 489 third_party/npapi/npspy/extern/java/jri.h jshort (*CallStaticMethodShortV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 490 third_party/npapi/npspy/extern/java/jri.h jshort (*CallStaticMethodShortA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 492 third_party/npapi/npspy/extern/java/jri.h jint (*CallStaticMethodIntV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 493 third_party/npapi/npspy/extern/java/jri.h jint (*CallStaticMethodIntA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 495 third_party/npapi/npspy/extern/java/jri.h jlong (*CallStaticMethodLongV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 496 third_party/npapi/npspy/extern/java/jri.h jlong (*CallStaticMethodLongA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 498 third_party/npapi/npspy/extern/java/jri.h jfloat (*CallStaticMethodFloatV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 499 third_party/npapi/npspy/extern/java/jri.h jfloat (*CallStaticMethodFloatA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 501 third_party/npapi/npspy/extern/java/jri.h jdouble (*CallStaticMethodDoubleV)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, va_list c); c 502 third_party/npapi/npspy/extern/java/jri.h jdouble (*CallStaticMethodDoubleA)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, JRIValue* c); c 503 third_party/npapi/npspy/extern/java/jri.h jint (*GetStaticFieldID)(JRIEnv* env, jint op, struct java_lang_Class* a, const char* b, const char* c); c 513 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticField)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, void* c); c 514 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldBoolean)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jbool c); c 515 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldByte)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jbyte c); c 516 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldChar)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jchar c); c 517 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldShort)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jshort c); c 518 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldInt)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jint c); c 519 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldLong)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jlong c); c 520 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldFloat)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jfloat c); c 521 third_party/npapi/npspy/extern/java/jri.h void (*SetStaticFieldDouble)(JRIEnv* env, jint op, struct java_lang_Class* a, jint b, jdouble c); c 528 third_party/npapi/npspy/extern/java/jri.h void* (*NewScalarArray)(JRIEnv* env, jint op, jint a, const char* b, const jbyte* c); c 531 third_party/npapi/npspy/extern/java/jri.h void* (*NewObjectArray)(JRIEnv* env, jint op, jint a, struct java_lang_Class* b, void* c); c 534 third_party/npapi/npspy/extern/java/jri.h void (*SetObjectArrayElement)(JRIEnv* env, jint op, void* a, jint b, void* c); c 535 third_party/npapi/npspy/extern/java/jri.h void (*RegisterNatives)(JRIEnv* env, jint op, struct java_lang_Class* a, char** b, void** c); c 538 third_party/npapi/npspy/extern/java/jri.h struct java_lang_String* (*NewStringPlatform)(JRIEnv* env, jint op, const jbyte* a, jint b, const jbyte* c, jint d); c 539 third_party/npapi/npspy/extern/java/jri.h const jbyte* (*GetStringPlatformChars)(JRIEnv* env, jint op, struct java_lang_String* a, const jbyte* b, jint c); c 73 third_party/npapi/npspy/extern/java/jritypes.h jchar c; c 343 third_party/npapi/npspy/extern/nspr/md/_macos.h #define _MD_CREATE_THREAD(a,b,c,d,e,f) (PR_SUCCESS) c 385 third_party/npapi/npspy/extern/nspr/md/_macos.h #define _MD_LSEEK64(a,b,c) LL_ZERO c 267 third_party/npapi/npspy/extern/nspr/plstr.h PL_strchr(const char *s, char c); c 278 third_party/npapi/npspy/extern/nspr/plstr.h PL_strrchr(const char *s, char c); c 290 third_party/npapi/npspy/extern/nspr/plstr.h PL_strnchr(const char *s, char c, PRUint32 n); c 302 third_party/npapi/npspy/extern/nspr/plstr.h PL_strnrchr(const char *s, char c, PRUint32 n); c 1948 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java final char c = name.charAt(i); c 1951 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java if (c >= 128) { c 1956 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java if (Character.isLetter(c) || c == '_' || c 1957 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java (Character.isDigit(c) && i > 0)) { c 118 third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java public boolean addAll(Collection<? extends String> c) { c 123 third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java return addAll(size(), c); c 127 third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java public boolean addAll(int index, Collection<? extends String> c) { c 130 third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java Collection<?> collection = c instanceof LazyStringList c 131 third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java ? ((LazyStringList) c).getUnderlyingElements() : c; c 702 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java final char c = currentToken.charAt(0); c 703 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java return ('0' <= c && c <= '9') || c 704 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java c == '-' || c == '+'; c 713 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java final char c = currentToken.charAt(i); c 714 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java if (('a' <= c && c <= 'z') || c 715 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java ('A' <= c && c <= 'Z') || c 716 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java ('0' <= c && c <= '9') || c 717 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java (c == '_') || (c == '.')) { c 1310 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java byte c = input.byteAt(i); c 1311 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java if (c == '\\') { c 1314 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java c = input.byteAt(i); c 1315 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java if (isOctal(c)) { c 1317 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java int code = digitValue(c); c 1329 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java switch (c) { c 1360 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java "Invalid escape sequence: '\\" + (char)c + '\''); c 1368 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java result[pos++] = c; c 1406 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java private static boolean isOctal(final byte c) { c 1407 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java return '0' <= c && c <= '7'; c 1411 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java private static boolean isHex(final byte c) { c 1412 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java return ('0' <= c && c <= '9') || c 1413 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java ('a' <= c && c <= 'f') || c 1414 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java ('A' <= c && c <= 'F'); c 1422 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java private static int digitValue(final byte c) { c 1423 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java if ('0' <= c && c <= '9') { c 1424 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java return c - '0'; c 1425 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java } else if ('a' <= c && c <= 'z') { c 1426 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java return c - 'a' + 10; c 1428 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java return c - 'A' + 10; c 422 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java TestAllTypes c = TestAllTypes.newBuilder(b).addRepeatedString("x").build(); c 423 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java TestAllTypes d = TestAllTypes.newBuilder(c).addRepeatedString("y").build(); c 430 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkEqualsIsConsistent(c); c 436 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(a, c); c 441 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(b, c); c 446 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(c, d); c 447 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(c, e); c 448 third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java checkNotEqual(c, f); c 96 third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java String c = "c"; c 100 third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java .addRepeatedString(c) c 106 third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java assertSame(c, proto.getRepeatedString(1)); c 120 third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java assertNotSame(c, cPrime); c 121 third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java assertEquals(c, cPrime); c 375 third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java UnknownFieldSet c = c 390 third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java checkEqualsIsConsistent(c); c 395 third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java checkNotEqual(a, c); c 398 third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java checkNotEqual(b, c); c 401 third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java checkNotEqual(c, d); c 402 third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java checkNotEqual(c, e); c 746 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc EXPECT_EQ(6, message.messagefield().c()); c 751 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc EXPECT_EQ(15, message.repeatedmessagefield(0).c()); c 787 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc EXPECT_EQ(2, message2.msg().c()); c 801 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc EXPECT_EQ(2, message2.repeated_message(0).msg().c()); c 54 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc char c = input[i]; c 55 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc switch (c) { c 61 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc result.push_back(c); c 69 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc result.push_back(c); c 77 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc result.push_back(c); c 97 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc result.push_back(c); c 101 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc prev = c; c 122 third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc unsigned char c = buf[i]; c 123 third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc x = kCRC32Table[(x ^ c) & 0xff] ^ (x >> 8); c 704 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc EXPECT_EQ(456, typed_sub_message->c()); c 156 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc inline std::ostream& operator<<(std::ostream& os, const VarintCase& c) { c 157 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc return os << c.value; c 408 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc inline std::ostream& operator<<(std::ostream& os, const VarintErrorCase& c) { c 409 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc return os << "size " << c.size; c 459 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc inline std::ostream& operator<<(std::ostream& os, const VarintSizeCase& c) { c 460 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc return os << c.value; c 503 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc inline std::ostream& operator<<(std::ostream& os, const Fixed32Case& c) { c 504 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc return os << "0x" << hex << c.value << dec; c 507 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc inline std::ostream& operator<<(std::ostream& os, const Fixed64Case& c) { c 508 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc return os << "0x" << hex << c.value << dec; c 117 third_party/protobuf/src/google/protobuf/io/tokenizer.cc static inline bool InClass(char c) { \ c 122 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Whitespace, c == ' ' || c == '\n' || c == '\t' || c 123 third_party/protobuf/src/google/protobuf/io/tokenizer.cc c == '\r' || c == '\v' || c == '\f'); c 124 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(WhitespaceNoNewline, c == ' ' || c == '\t' || c 125 third_party/protobuf/src/google/protobuf/io/tokenizer.cc c == '\r' || c == '\v' || c == '\f'); c 127 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Unprintable, c < ' ' && c > '\0'); c 129 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Digit, '0' <= c && c <= '9'); c 130 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(OctalDigit, '0' <= c && c <= '7'); c 131 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(HexDigit, ('0' <= c && c <= '9') || c 132 third_party/protobuf/src/google/protobuf/io/tokenizer.cc ('a' <= c && c <= 'f') || c 133 third_party/protobuf/src/google/protobuf/io/tokenizer.cc ('A' <= c && c <= 'F')); c 135 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Letter, ('a' <= c && c <= 'z') || c 136 third_party/protobuf/src/google/protobuf/io/tokenizer.cc ('A' <= c && c <= 'Z') || c 137 third_party/protobuf/src/google/protobuf/io/tokenizer.cc (c == '_')); c 139 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Alphanumeric, ('a' <= c && c <= 'z') || c 140 third_party/protobuf/src/google/protobuf/io/tokenizer.cc ('A' <= c && c <= 'Z') || c 141 third_party/protobuf/src/google/protobuf/io/tokenizer.cc ('0' <= c && c <= '9') || c 142 third_party/protobuf/src/google/protobuf/io/tokenizer.cc (c == '_')); c 144 third_party/protobuf/src/google/protobuf/io/tokenizer.cc CHARACTER_CLASS(Escape, c == 'a' || c == 'b' || c == 'f' || c == 'n' || c 145 third_party/protobuf/src/google/protobuf/io/tokenizer.cc c == 'r' || c == 't' || c == 'v' || c == '\\' || c 146 third_party/protobuf/src/google/protobuf/io/tokenizer.cc c == '?' || c == '\'' || c == '\"'); c 160 third_party/protobuf/src/google/protobuf/io/tokenizer.cc inline char TranslateEscape(char c) { c 161 third_party/protobuf/src/google/protobuf/io/tokenizer.cc switch (c) { c 318 third_party/protobuf/src/google/protobuf/io/tokenizer.cc inline bool Tokenizer::TryConsume(char c) { c 319 third_party/protobuf/src/google/protobuf/io/tokenizer.cc if (current_char_ == c) { c 353 third_party/protobuf/src/google/protobuf/io/tokenizer.h inline bool TryConsume(char c); c 122 third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc EXPECT_EQ(rpf_foreign_message.Get(i).c(), Func(i, 6)); c 123 third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc EXPECT_EQ(down_cast<const ForeignMessage*>(&rpf_message.Get(i))->c(), c 130 third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc EXPECT_EQ(mrpf_foreign_message->Get(i).c(), Func(i, 6)); c 131 third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc EXPECT_EQ(down_cast<const ForeignMessage*>(&mrpf_message->Get(i))->c(), c 142 third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc EXPECT_EQ(message.repeated_foreign_message(i).c(), Func(i, -6)); c 144 third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc EXPECT_EQ(message.repeated_foreign_message(i).c(), Func(i, 7)); c 48 third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc #define cpuid(a, b, c, d, inp) \ c 52 third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 54 third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc #define cpuid(a, b, c, d, inp) \ c 58 third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 169 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc void SetCMethod(string c) { c_ = c; } c 172 third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc static void SetCFunction(string c) { current_instance_->c_ = c; } c 373 third_party/protobuf/src/google/protobuf/stubs/structurally_valid.cc uint8 c; c 420 third_party/protobuf/src/google/protobuf/stubs/structurally_valid.cc c = *src; c 421 third_party/protobuf/src/google/protobuf/stubs/structurally_valid.cc e = Tbl[c]; c 72 third_party/protobuf/src/google/protobuf/stubs/strutil.cc inline bool isxdigit(char c) { c 73 third_party/protobuf/src/google/protobuf/stubs/strutil.cc return ('0' <= c && c <= '9') || c 74 third_party/protobuf/src/google/protobuf/stubs/strutil.cc ('a' <= c && c <= 'f') || c 75 third_party/protobuf/src/google/protobuf/stubs/strutil.cc ('A' <= c && c <= 'F'); c 78 third_party/protobuf/src/google/protobuf/stubs/strutil.cc inline bool isprint(char c) { c 79 third_party/protobuf/src/google/protobuf/stubs/strutil.cc return c >= 0x20 && c <= 0x7E; c 157 third_party/protobuf/src/google/protobuf/stubs/strutil.cc char c = delim[0]; c 161 third_party/protobuf/src/google/protobuf/stubs/strutil.cc if (*p == c) { c 165 third_party/protobuf/src/google/protobuf/stubs/strutil.cc while (++p != end && *p != c); c 282 third_party/protobuf/src/google/protobuf/stubs/strutil.cc #define IS_OCTAL_DIGIT(c) (((c) >= '0') && ((c) <= '7')) c 284 third_party/protobuf/src/google/protobuf/stubs/strutil.cc inline int hex_digit_to_int(char c) { c 287 third_party/protobuf/src/google/protobuf/stubs/strutil.cc assert(isxdigit(c)); c 288 third_party/protobuf/src/google/protobuf/stubs/strutil.cc int x = static_cast<unsigned char>(c); c 1020 third_party/protobuf/src/google/protobuf/stubs/strutil.cc static inline bool IsValidFloatChar(char c) { c 1021 third_party/protobuf/src/google/protobuf/stubs/strutil.cc return ('0' <= c && c <= '9') || c 1022 third_party/protobuf/src/google/protobuf/stubs/strutil.cc c == 'e' || c == 'E' || c 1023 third_party/protobuf/src/google/protobuf/stubs/strutil.cc c == '+' || c == '-'; c 62 third_party/protobuf/src/google/protobuf/stubs/strutil.h inline bool ascii_isalnum(char c) { c 63 third_party/protobuf/src/google/protobuf/stubs/strutil.h return ('a' <= c && c <= 'z') || c 64 third_party/protobuf/src/google/protobuf/stubs/strutil.h ('A' <= c && c <= 'Z') || c 65 third_party/protobuf/src/google/protobuf/stubs/strutil.h ('0' <= c && c <= '9'); c 68 third_party/protobuf/src/google/protobuf/stubs/strutil.h inline bool ascii_isdigit(char c) { c 69 third_party/protobuf/src/google/protobuf/stubs/strutil.h return ('0' <= c && c <= '9'); c 318 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(119, message.optional_foreign_message ().c()); c 378 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.repeated_foreign_message(0).c()); c 405 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(319, message.repeated_foreign_message(1).c()); c 520 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(0, message.optional_foreign_message ().c()); c 660 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.repeated_foreign_message(0).c()); c 688 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(519, message.repeated_foreign_message(1).c()); c 1187 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(119, message.GetExtension(unittest::optional_foreign_message_extension).c()); c 1247 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension, 0).c()); c 1276 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(319, message.GetExtension(unittest::repeated_foreign_message_extension, 1).c()); c 1403 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(0, message.GetExtension(unittest::optional_foreign_message_extension ).c()); c 1547 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension, 0).c()); c 1577 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(519, message.GetExtension(unittest::repeated_foreign_message_extension, 1).c()); c 1844 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.repeated_foreign_message(0).c()); c 1904 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension, 0).c()); c 1926 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.repeated_foreign_message(0).c()); c 1941 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension, 0).c()); c 1997 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.repeated_foreign_message(1).c()); c 2023 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(319, message.repeated_foreign_message(0).c()); c 2081 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension, 1).c()); c 2110 third_party/protobuf/src/google/protobuf/test_util.cc EXPECT_EQ(319, message.GetExtension(unittest::repeated_foreign_message_extension, 0).c()); c 246 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(119, message.optional_foreign_message ().c()); c 302 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(219, message.repeated_foreign_message(0).c()); c 329 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(319, message.repeated_foreign_message(1).c()); c 442 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(0, message.optional_foreign_message().c()); c 574 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(219, message.repeated_foreign_message(0).c()); c 602 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(519, message.repeated_foreign_message(1).c()); c 994 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(119, message.GetExtension(unittest::optional_foreign_message_extension_lite ).c()); c 1050 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension_lite, 0).c()); c 1077 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(319, message.GetExtension(unittest::repeated_foreign_message_extension_lite, 1).c()); c 1196 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(0, message.GetExtension(unittest::optional_foreign_message_extension_lite ).c()); c 1330 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(219, message.GetExtension(unittest::repeated_foreign_message_extension_lite, 0).c()); c 1358 third_party/protobuf/src/google/protobuf/test_util_lite.cc EXPECT_EQ(519, message.GetExtension(unittest::repeated_foreign_message_extension_lite, 1).c()); c 1151 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_EQ(2, message.c()); c 1159 third_party/protobuf/src/google/protobuf/text_format_unittest.cc EXPECT_EQ(3, message.c()); c 792 third_party/qcms/src/iccread.c double c = 1./12.92; c 812 third_party/qcms/src/iccread.c y = c*x; c 971 third_party/qcms/src/transform.c static void cpuid(uint32_t fxn, uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d) { c 985 third_party/qcms/src/transform.c *c = c_; c 992 third_party/qcms/src/transform.c static void cpuid(uint32_t fxn, uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d) { c 999 third_party/qcms/src/transform.c *c = c_; c 1021 third_party/qcms/src/transform.c uint32_t a, b, c, d; c 1026 third_party/qcms/src/transform.c cpuid(function, &a, &b, &c, &d); c 1027 third_party/qcms/src/transform.c if (c & SSE3_ECX_MASK) c 143 third_party/qcms/src/transform_util.c float a, b, c, e, f; c 148 third_party/qcms/src/transform_util.c c = 0; c 155 third_party/qcms/src/transform_util.c c = 0; c 162 third_party/qcms/src/transform_util.c c = 0; c 169 third_party/qcms/src/transform_util.c c = parameter[3]; c 170 third_party/qcms/src/transform_util.c e = -c; c 176 third_party/qcms/src/transform_util.c c = parameter[3]; c 177 third_party/qcms/src/transform_util.c e = parameter[5] - c; c 184 third_party/qcms/src/transform_util.c c = 0; c 194 third_party/qcms/src/transform_util.c gamma_table[X] = pow(a * X / 255. + b, y) + c + e; c 196 third_party/qcms/src/transform_util.c gamma_table[X] = c * X / 255. + f; c 215 third_party/re2/re2/bitstate.cc int c = -1; c 217 third_party/re2/re2/bitstate.cc c = *p & 0xFF; c 218 third_party/re2/re2/bitstate.cc if (ip->Matches(c)) { c 993 third_party/re2/re2/compile.cc Compiler c; c 995 third_party/re2/re2/compile.cc c.Setup(re->parse_flags(), max_mem, RE2::ANCHOR_BOTH /* unused */); c 996 third_party/re2/re2/compile.cc c.reversed_ = reversed; c 1010 third_party/re2/re2/compile.cc Frag f = c.WalkExponential(sre, NullFrag(), 2*c.max_inst_); c 1012 third_party/re2/re2/compile.cc if (c.failed_) c 1018 third_party/re2/re2/compile.cc c.reversed_ = false; c 1019 third_party/re2/re2/compile.cc Frag all = c.Cat(f, c.Match(0)); c 1020 third_party/re2/re2/compile.cc c.prog_->set_start(all.begin); c 1023 third_party/re2/re2/compile.cc c.prog_->set_anchor_start(is_anchor_end); c 1024 third_party/re2/re2/compile.cc c.prog_->set_anchor_end(is_anchor_start); c 1026 third_party/re2/re2/compile.cc c.prog_->set_anchor_start(is_anchor_start); c 1027 third_party/re2/re2/compile.cc c.prog_->set_anchor_end(is_anchor_end); c 1031 third_party/re2/re2/compile.cc if (c.prog_->anchor_start()) { c 1032 third_party/re2/re2/compile.cc c.prog_->set_start_unanchored(c.prog_->start()); c 1034 third_party/re2/re2/compile.cc Frag unanchored = c.Cat(c.DotStar(), all); c 1035 third_party/re2/re2/compile.cc c.prog_->set_start_unanchored(unanchored.begin); c 1038 third_party/re2/re2/compile.cc c.prog_->set_reversed(reversed); c 1041 third_party/re2/re2/compile.cc return c.Finish(); c 1095 third_party/re2/re2/compile.cc Compiler c; c 1098 third_party/re2/re2/compile.cc c.Setup(pf, options.max_mem(), anchor); c 1101 third_party/re2/re2/compile.cc Frag all = c.WalkExponential(re, NullFrag(), 2*c.max_inst_); c 1103 third_party/re2/re2/compile.cc if (c.failed_) c 1109 third_party/re2/re2/compile.cc all = c.Cat(c.DotStar(), all); c 1112 third_party/re2/re2/compile.cc c.prog_->set_start(all.begin); c 1113 third_party/re2/re2/compile.cc c.prog_->set_start_unanchored(all.begin); c 1114 third_party/re2/re2/compile.cc c.prog_->set_anchor_start(true); c 1115 third_party/re2/re2/compile.cc c.prog_->set_anchor_end(true); c 1117 third_party/re2/re2/compile.cc Prog* prog = c.Finish(); c 39 third_party/re2/re2/dfa.cc static void* memrchr(const void* s, int c, size_t n) { c 42 third_party/re2/re2/dfa.cc if (*--p == c) c 233 third_party/re2/re2/dfa.cc int c, uint flag, bool* ismatch, c 336 third_party/re2/re2/dfa.cc int ByteMap(int c) { c 337 third_party/re2/re2/dfa.cc if (c == kByteEndText) c 339 third_party/re2/re2/dfa.cc return prog_->bytemap()[c]; c 912 third_party/re2/re2/dfa.cc int c, uint flag, bool* ismatch, c 938 third_party/re2/re2/dfa.cc if (ip->Matches(c)) c 943 third_party/re2/re2/dfa.cc if (prog_->anchor_end() && c != kByteEndText) c 956 third_party/re2/re2/dfa.cc c, flag, DumpWorkq(newq).c_str(), *ismatch); c 961 third_party/re2/re2/dfa.cc DFA::State* DFA::RunStateOnByteUnlocked(State* state, int c) { c 965 third_party/re2/re2/dfa.cc return RunStateOnByte(state, c); c 969 third_party/re2/re2/dfa.cc DFA::State* DFA::RunStateOnByte(State* state, int c) { c 994 third_party/re2/re2/dfa.cc State* ns = state->next_[ByteMap(c)]; c 1011 third_party/re2/re2/dfa.cc if (c == '\n') { c 1017 third_party/re2/re2/dfa.cc if (c == kByteEndText) { c 1026 third_party/re2/re2/dfa.cc bool isword = (c != kByteEndText && Prog::IsWordChar(c)); c 1039 third_party/re2/re2/dfa.cc RunWorkqOnByte(q0_, q1_, c, afterflag, &ismatch, kind_, start_unanchored_); c 1049 third_party/re2/re2/dfa.cc if (c != kByteEndText || kind_ != Prog::kManyMatch) c 1071 third_party/re2/re2/dfa.cc state->next_[ByteMap(c)] = ns; c 1369 third_party/re2/re2/dfa.cc int c; c 1371 third_party/re2/re2/dfa.cc c = *p++; c 1373 third_party/re2/re2/dfa.cc c = *--p; c 1394 third_party/re2/re2/dfa.cc State* ns = s->next_[bytemap[c]]; c 1397 third_party/re2/re2/dfa.cc ns = RunStateOnByteUnlocked(s, c); c 1428 third_party/re2/re2/dfa.cc ns = RunStateOnByteUnlocked(s, c); c 1957 third_party/re2/re2/dfa.cc for (int c = 0; c < 257; c++) { c 1958 third_party/re2/re2/dfa.cc State* ns = RunStateOnByteUnlocked(s, c); c 98 third_party/re2/re2/nfa.cc inline int Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p); c 292 third_party/re2/re2/nfa.cc int NFA::Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p) { c 318 third_party/re2/re2/nfa.cc if (ip->Matches(c)) c 466 third_party/re2/re2/nfa.cc int c = -1; c 470 third_party/re2/re2/nfa.cc c = text.begin()[-1] & 0xFF; c 471 third_party/re2/re2/nfa.cc wasword = Prog::IsWordChar(c); c 502 third_party/re2/re2/nfa.cc fprintf(stderr, "%c[%#x/%d/%d]:", p > text.end() ? '$' : p == bp ? '^' : c, flag, isword, wasword); c 517 third_party/re2/re2/nfa.cc int id = Step(runq, nextq, c, flag, p-1); c 597 third_party/re2/re2/nfa.cc c = 0; c 599 third_party/re2/re2/nfa.cc c = *p & 0xFF; c 256 third_party/re2/re2/onepass.cc int c = bytemap[*p & 0xFF]; c 258 third_party/re2/re2/onepass.cc uint32 cond = state->action[c]; c 465 third_party/re2/re2/onepass.cc for (int c = ip->lo(); c <= ip->hi(); c++) { c 466 third_party/re2/re2/onepass.cc int b = bytemap_[c]; c 467 third_party/re2/re2/onepass.cc c = unbytemap_[b]; // last c in byte class c 477 third_party/re2/re2/onepass.cc c, *it); c 485 third_party/re2/re2/onepass.cc for (int c = lo; c <= hi; c++) { c 486 third_party/re2/re2/onepass.cc int b = bytemap_[c]; c 487 third_party/re2/re2/onepass.cc c = unbytemap_[b]; // last c in class c 497 third_party/re2/re2/onepass.cc c, *it); c 1129 third_party/re2/re2/parse.cc int c; c 1130 third_party/re2/re2/parse.cc while (s->size() > 0 && isdigit(c = (*s)[0] & 0xFF)) { c 1134 third_party/re2/re2/parse.cc n = n*10 + c - '0'; c 1215 third_party/re2/re2/parse.cc static int IsHex(int c) { c 1216 third_party/re2/re2/parse.cc return ('0' <= c && c <= '9') || c 1217 third_party/re2/re2/parse.cc ('A' <= c && c <= 'F') || c 1218 third_party/re2/re2/parse.cc ('a' <= c && c <= 'f'); c 1222 third_party/re2/re2/parse.cc static int UnHex(int c) { c 1223 third_party/re2/re2/parse.cc if ('0' <= c && c <= '9') c 1224 third_party/re2/re2/parse.cc return c - '0'; c 1225 third_party/re2/re2/parse.cc if ('A' <= c && c <= 'F') c 1226 third_party/re2/re2/parse.cc return c - 'A' + 10; c 1227 third_party/re2/re2/parse.cc if ('a' <= c && c <= 'f') c 1228 third_party/re2/re2/parse.cc return c - 'a' + 10; c 1229 third_party/re2/re2/parse.cc LOG(DFATAL) << "Bad hex digit " << c; c 1250 third_party/re2/re2/parse.cc Rune c, c1; c 1252 third_party/re2/re2/parse.cc if (StringPieceToRune(&c, s, status) < 0) c 1255 third_party/re2/re2/parse.cc switch (c) { c 1257 third_party/re2/re2/parse.cc if (c < Runeself && !isalpha(c) && !isdigit(c)) { c 1262 third_party/re2/re2/parse.cc *rp = c; c 1281 third_party/re2/re2/parse.cc code = c - '0'; c 1282 third_party/re2/re2/parse.cc if (s->size() > 0 && '0' <= (c = (*s)[0]) && c <= '7') { c 1283 third_party/re2/re2/parse.cc code = code * 8 + c - '0'; c 1286 third_party/re2/re2/parse.cc c = (*s)[0]; c 1287 third_party/re2/re2/parse.cc if ('0' <= c && c <= '7') { c 1288 third_party/re2/re2/parse.cc code = code * 8 + c - '0'; c 1300 third_party/re2/re2/parse.cc if (StringPieceToRune(&c, s, status) < 0) c 1302 third_party/re2/re2/parse.cc if (c == '{') { c 1309 third_party/re2/re2/parse.cc if (StringPieceToRune(&c, s, status) < 0) c 1313 third_party/re2/re2/parse.cc while (IsHex(c)) { c 1315 third_party/re2/re2/parse.cc code = code * 16 + UnHex(c); c 1320 third_party/re2/re2/parse.cc if (StringPieceToRune(&c, s, status) < 0) c 1323 third_party/re2/re2/parse.cc if (c != '}' || nhex == 0) c 1333 third_party/re2/re2/parse.cc if (!IsHex(c) || !IsHex(c1)) c 1335 third_party/re2/re2/parse.cc *rp = UnHex(c) * 16 + UnHex(c1); c 1520 third_party/re2/re2/parse.cc Rune c = (*s)[1]; c 1521 third_party/re2/re2/parse.cc if (c != 'p' && c != 'P') c 1526 third_party/re2/re2/parse.cc if (c == 'P') c 1532 third_party/re2/re2/parse.cc if (!StringPieceToRune(&c, s, status)) c 1534 third_party/re2/re2/parse.cc if (c != '{') { c 1778 third_party/re2/re2/parse.cc int c = name[i]; c 1779 third_party/re2/re2/parse.cc if (('0' <= c && c <= '9') || c 1780 third_party/re2/re2/parse.cc ('a' <= c && c <= 'z') || c 1781 third_party/re2/re2/parse.cc ('A' <= c && c <= 'Z') || c 1782 third_party/re2/re2/parse.cc c == '_') c 1855 third_party/re2/re2/parse.cc Rune c; c 1859 third_party/re2/re2/parse.cc if (StringPieceToRune(&c, &t, status_) < 0) c 1861 third_party/re2/re2/parse.cc switch (c) { c 125 third_party/re2/re2/prefilter.cc Prefilter* c = new Prefilter(op); c 126 third_party/re2/re2/prefilter.cc c->subs()->push_back(a); c 127 third_party/re2/re2/prefilter.cc c->subs()->push_back(b); c 128 third_party/re2/re2/prefilter.cc return c; c 401 third_party/re2/re2/prefilter.cc char c = r & 0xff; c 402 third_party/re2/re2/prefilter.cc return string(&c, 1); c 332 third_party/re2/re2/prefilter_tree.cc int c; c 343 third_party/re2/re2/prefilter_tree.cc c = count.get_existing(j) + 1; c 344 third_party/re2/re2/prefilter_tree.cc count.set_existing(j, c); c 346 third_party/re2/re2/prefilter_tree.cc c = 1; c 347 third_party/re2/re2/prefilter_tree.cc count.set_new(j, c); c 349 third_party/re2/re2/prefilter_tree.cc if (c < parent.propagate_up_at_count) c 114 third_party/re2/re2/prog.h inline bool Matches(int c) { c 116 third_party/re2/re2/prog.h if (foldcase_ && 'A' <= c && c <= 'Z') c 117 third_party/re2/re2/prog.h c += 'a' - 'A'; c 118 third_party/re2/re2/prog.h return lo_ <= c && c <= hi_; c 240 third_party/re2/re2/prog.h static bool IsWordChar(uint8 c) { c 241 third_party/re2/re2/prog.h return ('A' <= c && c <= 'Z') || c 242 third_party/re2/re2/prog.h ('a' <= c && c <= 'z') || c 243 third_party/re2/re2/prog.h ('0' <= c && c <= '9') || c 244 third_party/re2/re2/prog.h c == '_'; c 356 third_party/re2/re2/re2.cc int c = (s < end) ? *s : -1; c 357 third_party/re2/re2/re2.cc if (isdigit(c)) { c 358 third_party/re2/re2/re2.cc int n = (c - '0'); c 874 third_party/re2/re2/re2.cc int c = *s; c 875 third_party/re2/re2/re2.cc if (c == '\\') { c 877 third_party/re2/re2/re2.cc c = (s < end) ? *s : -1; c 878 third_party/re2/re2/re2.cc if (isdigit(c)) { c 879 third_party/re2/re2/re2.cc int n = (c - '0'); c 890 third_party/re2/re2/re2.cc } else if (c == '\\') { c 898 third_party/re2/re2/re2.cc out->push_back(c); c 922 third_party/re2/re2/re2.cc int c = *s; c 923 third_party/re2/re2/re2.cc if (c != '\\') { c 930 third_party/re2/re2/re2.cc c = *s; c 931 third_party/re2/re2/re2.cc if (c == '\\') { c 934 third_party/re2/re2/re2.cc if (!isdigit(c)) { c 939 third_party/re2/re2/re2.cc int n = (c - '0'); c 145 third_party/re2/re2/stringpiece.h int find(char c, size_type pos = 0) const; c 147 third_party/re2/re2/stringpiece.h int rfind(char c, size_type pos = npos) const; c 161 third_party/re2/re2/testing/backtrack.cc int c = -1; c 163 third_party/re2/re2/testing/backtrack.cc c = *p & 0xFF; c 182 third_party/re2/re2/testing/backtrack.cc if (ip->Matches(c)) c 695 third_party/re2/re2/testing/re2_test.cc char c; c 696 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::FullMatch("Hello", "(H)ello", &c)); c 697 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(c, 'H'); c 700 third_party/re2/re2/testing/re2_test.cc unsigned char c; c 701 third_party/re2/re2/testing/re2_test.cc CHECK(RE2::FullMatch("Hello", "(H)ello", &c)); c 702 third_party/re2/re2/testing/re2_test.cc CHECK_EQ(c, static_cast<unsigned char>('H')); c 1279 third_party/re2/re2/testing/re2_test.cc string a, b, c; c 1309 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::PartialMatch(str, "(.).*?(.).*?(.)", &a, &b, &c)); c 1312 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("C", c); c 1314 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::PartialMatch(str, "(.).*?([\\p{L}]).*?(.)", &a, &b, &c)); c 1317 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("C", c); c 1321 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::PartialMatch(str, "(.).*?([\\p{Lu}]).*?(.)", &a, &b, &c)); c 1324 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("C", c); c 1328 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::PartialMatch(str, ".*(.).*?([\\p{Lu}\\p{Lo}]).*?(.)", &a, &b, &c)); c 1331 third_party/re2/re2/testing/re2_test.cc EXPECT_EQ("é‹’", c); c 89 third_party/re2/util/hash.cc #define mix(a,b,c) \ c 91 third_party/re2/util/hash.cc a -= c; a ^= rot(c, 4); c += b; \ c 92 third_party/re2/util/hash.cc b -= a; b ^= rot(a, 6); a += c; \ c 93 third_party/re2/util/hash.cc c -= b; c ^= rot(b, 8); b += a; \ c 94 third_party/re2/util/hash.cc a -= c; a ^= rot(c,16); c += b; \ c 95 third_party/re2/util/hash.cc b -= a; b ^= rot(a,19); a += c; \ c 96 third_party/re2/util/hash.cc c -= b; c ^= rot(b, 4); b += a; \ c 124 third_party/re2/util/hash.cc #define final(a,b,c) \ c 126 third_party/re2/util/hash.cc c ^= b; c -= rot(b,14); \ c 127 third_party/re2/util/hash.cc a ^= c; a -= rot(c,11); \ c 129 third_party/re2/util/hash.cc c ^= b; c -= rot(b,16); \ c 130 third_party/re2/util/hash.cc a ^= c; a -= rot(c,4); \ c 132 third_party/re2/util/hash.cc c ^= b; c -= rot(b,24); \ c 155 third_party/re2/util/hash.cc uint32_t a,b,c; c 158 third_party/re2/util/hash.cc a = b = c = 0xdeadbeef + (((uint32_t)length)<<2) + initval; c 165 third_party/re2/util/hash.cc c += k[2]; c 166 third_party/re2/util/hash.cc mix(a,b,c); c 174 third_party/re2/util/hash.cc case 3 : c+=k[2]; c 177 third_party/re2/util/hash.cc final(a,b,c); c 182 third_party/re2/util/hash.cc return c; c 200 third_party/re2/util/hash.cc uint32_t a,b,c; c 203 third_party/re2/util/hash.cc a = b = c = 0xdeadbeef + ((uint32_t)(length<<2)) + *pc; c 204 third_party/re2/util/hash.cc c += *pb; c 211 third_party/re2/util/hash.cc c += k[2]; c 212 third_party/re2/util/hash.cc mix(a,b,c); c 220 third_party/re2/util/hash.cc case 3 : c+=k[2]; c 223 third_party/re2/util/hash.cc final(a,b,c); c 228 third_party/re2/util/hash.cc *pc=c; *pb=b; c 616 third_party/re2/util/pcre.cc int c = *s; c 617 third_party/re2/util/pcre.cc if (c == '\\') { c 618 third_party/re2/util/pcre.cc c = *++s; c 619 third_party/re2/util/pcre.cc if (isdigit(c)) { c 620 third_party/re2/util/pcre.cc int n = (c - '0'); c 634 third_party/re2/util/pcre.cc } else if (c == '\\') { c 641 third_party/re2/util/pcre.cc out->push_back(c); c 651 third_party/re2/util/pcre.cc int c = *s; c 652 third_party/re2/util/pcre.cc if (c != '\\') { c 659 third_party/re2/util/pcre.cc c = *s; c 660 third_party/re2/util/pcre.cc if (c == '\\') { c 663 third_party/re2/util/pcre.cc if (!isdigit(c)) { c 668 third_party/re2/util/pcre.cc int n = (c - '0'); c 184 third_party/re2/util/pcre.h #define pcre_compile(a,b,c,d,e) ({ (void)(a); (void)(b); *(c)=""; *(d)=0; (void)(e); ((pcre*)0); }) c 185 third_party/re2/util/pcre.h #define pcre_exec(a, b, c, d, e, f, g, h) ({ (void)(a); (void)(b); (void)(c); (void)(d); (void)(e); (void)(f); (void)(g); (void)(h); 0; }) c 186 third_party/re2/util/pcre.h #define pcre_fullinfo(a, b, c, d) ({ (void)(a); (void)(b); (void)(c); *(d) = 0; 0; }) c 188 third_party/re2/util/pcre.h #define pcre_compile(a,b,c,d,e) NULL c 189 third_party/re2/util/pcre.h #define pcre_exec(a, b, c, d, e, f, g, h) NULL c 190 third_party/re2/util/pcre.h #define pcre_fullinfo(a, b, c, d) NULL c 51 third_party/re2/util/rune.cc int c, c1, c2, c3; c 58 third_party/re2/util/rune.cc c = *(unsigned char*)str; c 59 third_party/re2/util/rune.cc if(c < Tx) { c 60 third_party/re2/util/rune.cc *rune = c; c 71 third_party/re2/util/rune.cc if(c < T3) { c 72 third_party/re2/util/rune.cc if(c < T2) c 74 third_party/re2/util/rune.cc l = ((c << Bitx) | c1) & Rune2; c 88 third_party/re2/util/rune.cc if(c < T4) { c 89 third_party/re2/util/rune.cc l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3; c 103 third_party/re2/util/rune.cc if (c < T5) { c 104 third_party/re2/util/rune.cc l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4; c 128 third_party/re2/util/rune.cc unsigned long c; c 134 third_party/re2/util/rune.cc c = *rune; c 135 third_party/re2/util/rune.cc if(c <= Rune1) { c 136 third_party/re2/util/rune.cc str[0] = c; c 144 third_party/re2/util/rune.cc if(c <= Rune2) { c 145 third_party/re2/util/rune.cc str[0] = T2 | (c >> 1*Bitx); c 146 third_party/re2/util/rune.cc str[1] = Tx | (c & Maskx); c 156 third_party/re2/util/rune.cc if (c > Runemax) c 157 third_party/re2/util/rune.cc c = Runeerror; c 163 third_party/re2/util/rune.cc if (c <= Rune3) { c 164 third_party/re2/util/rune.cc str[0] = T3 | (c >> 2*Bitx); c 165 third_party/re2/util/rune.cc str[1] = Tx | ((c >> 1*Bitx) & Maskx); c 166 third_party/re2/util/rune.cc str[2] = Tx | (c & Maskx); c 174 third_party/re2/util/rune.cc str[0] = T4 | (c >> 3*Bitx); c 175 third_party/re2/util/rune.cc str[1] = Tx | ((c >> 2*Bitx) & Maskx); c 176 third_party/re2/util/rune.cc str[2] = Tx | ((c >> 1*Bitx) & Maskx); c 177 third_party/re2/util/rune.cc str[3] = Tx | (c & Maskx); c 193 third_party/re2/util/rune.cc int c = *(unsigned char*)str; c 194 third_party/re2/util/rune.cc if (c < Tx) c 197 third_party/re2/util/rune.cc if (c < T3) c 200 third_party/re2/util/rune.cc if (c < T4 || n > 3) c 212 third_party/re2/util/rune.cc int c; c 218 third_party/re2/util/rune.cc c = *(unsigned char*)s; c 219 third_party/re2/util/rune.cc if(c < Runeself) { c 220 third_party/re2/util/rune.cc if(c == 0) c 231 third_party/re2/util/rune.cc utfrune(const char *s, Rune c) c 237 third_party/re2/util/rune.cc if(c < Runesync) /* not part of utf sequence */ c 238 third_party/re2/util/rune.cc return strchr((char*)s, c); c 245 third_party/re2/util/rune.cc if(c1 == c) c 251 third_party/re2/util/rune.cc if(r == c) c 52 third_party/re2/util/stringpiece.cc int StringPiece::find(char c, size_type pos) const { c 56 third_party/re2/util/stringpiece.cc const char* result = std::find(ptr_ + pos, ptr_ + length_, c); c 70 third_party/re2/util/stringpiece.cc int StringPiece::rfind(char c, size_type pos) const { c 74 third_party/re2/util/stringpiece.cc if (ptr_[i] == c) { c 26 third_party/re2/util/strutil.cc unsigned char c = *src; c 27 third_party/re2/util/strutil.cc switch (c) { c 38 third_party/re2/util/strutil.cc if (c < ' ' || c > '~') { c 41 third_party/re2/util/strutil.cc sprintf(dest + used, "\\%03o", c); c 44 third_party/re2/util/strutil.cc dest[used++] = c; break; c 113 third_party/simplejson/_speedups.c ascii_escape_char(Py_UNICODE c, char *output, Py_ssize_t chars); c 164 third_party/simplejson/_speedups.c #define S_CHAR(c) (c >= ' ' && c <= '~' && c != '\\' && c != '"') c 165 third_party/simplejson/_speedups.c #define IS_WHITESPACE(c) (((c) == ' ') || ((c) == '\t') || ((c) == '\n') || ((c) == '\r')) c 235 third_party/simplejson/_speedups.c ascii_escape_char(Py_UNICODE c, char *output, Py_ssize_t chars) c 241 third_party/simplejson/_speedups.c switch (c) { c 242 third_party/simplejson/_speedups.c case '\\': output[chars++] = (char)c; break; c 243 third_party/simplejson/_speedups.c case '"': output[chars++] = (char)c; break; c 251 third_party/simplejson/_speedups.c if (c >= 0x10000) { c 253 third_party/simplejson/_speedups.c Py_UNICODE v = c - 0x10000; c 254 third_party/simplejson/_speedups.c c = 0xd800 | ((v >> 10) & 0x3ff); c 256 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c >> 12) & 0xf]; c 257 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c >> 8) & 0xf]; c 258 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c >> 4) & 0xf]; c 259 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c ) & 0xf]; c 260 third_party/simplejson/_speedups.c c = 0xdc00 | (v & 0x3ff); c 265 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c >> 12) & 0xf]; c 266 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c >> 8) & 0xf]; c 267 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c >> 4) & 0xf]; c 268 third_party/simplejson/_speedups.c output[chars++] = "0123456789abcdef"[(c ) & 0xf]; c 300 third_party/simplejson/_speedups.c Py_UNICODE c = input_unicode[i]; c 301 third_party/simplejson/_speedups.c if (S_CHAR(c)) { c 302 third_party/simplejson/_speedups.c output[chars++] = (char)c; c 305 third_party/simplejson/_speedups.c chars = ascii_escape_char(c, output, chars); c 348 third_party/simplejson/_speedups.c Py_UNICODE c = (Py_UNICODE)(unsigned char)input_str[i]; c 349 third_party/simplejson/_speedups.c if (!S_CHAR(c)) { c 353 third_party/simplejson/_speedups.c c = (Py_UNICODE)(unsigned char)input_str[j]; c 354 third_party/simplejson/_speedups.c if (c > 0x7f) { c 390 third_party/simplejson/_speedups.c Py_UNICODE c = (Py_UNICODE)(unsigned char)input_str[i]; c 391 third_party/simplejson/_speedups.c if (S_CHAR(c)) { c 392 third_party/simplejson/_speedups.c output[chars++] = (char)c; c 395 third_party/simplejson/_speedups.c chars = ascii_escape_char(c, output, chars); c 547 third_party/simplejson/_speedups.c Py_UNICODE c = 0; c 549 third_party/simplejson/_speedups.c c = (unsigned char)buf[next]; c 550 third_party/simplejson/_speedups.c if (c == '"' || c == '\\') { c 553 third_party/simplejson/_speedups.c else if (strict && c <= 0x1f) { c 557 third_party/simplejson/_speedups.c else if (c > 0x7f) { c 561 third_party/simplejson/_speedups.c if (!(c == '"' || c == '\\')) { c 585 third_party/simplejson/_speedups.c if (c == '"') { c 593 third_party/simplejson/_speedups.c c = buf[next]; c 594 third_party/simplejson/_speedups.c if (c != 'u') { c 597 third_party/simplejson/_speedups.c switch (c) { c 601 third_party/simplejson/_speedups.c case 'b': c = '\b'; break; c 602 third_party/simplejson/_speedups.c case 'f': c = '\f'; break; c 603 third_party/simplejson/_speedups.c case 'n': c = '\n'; break; c 604 third_party/simplejson/_speedups.c case 'r': c = '\r'; break; c 605 third_party/simplejson/_speedups.c case 't': c = '\t'; break; c 606 third_party/simplejson/_speedups.c default: c = 0; c 608 third_party/simplejson/_speedups.c if (c == 0) { c 614 third_party/simplejson/_speedups.c c = 0; c 624 third_party/simplejson/_speedups.c c <<= 4; c 628 third_party/simplejson/_speedups.c c |= (digit - '0'); break; c 631 third_party/simplejson/_speedups.c c |= (digit - 'a' + 10); break; c 634 third_party/simplejson/_speedups.c c |= (digit - 'A' + 10); break; c 642 third_party/simplejson/_speedups.c if ((c & 0xfc00) == 0xd800) { c 676 third_party/simplejson/_speedups.c c = 0x10000 + (((c - 0xd800) << 10) | (c2 - 0xdc00)); c 678 third_party/simplejson/_speedups.c else if ((c & 0xfc00) == 0xdc00) { c 684 third_party/simplejson/_speedups.c if (c > 0x7f) { c 689 third_party/simplejson/_speedups.c chunk = PyUnicode_FromUnicode(&c, 1); c 695 third_party/simplejson/_speedups.c char c_char = Py_CHARMASK(c); c 756 third_party/simplejson/_speedups.c Py_UNICODE c = 0; c 758 third_party/simplejson/_speedups.c c = buf[next]; c 759 third_party/simplejson/_speedups.c if (c == '"' || c == '\\') { c 762 third_party/simplejson/_speedups.c else if (strict && c <= 0x1f) { c 767 third_party/simplejson/_speedups.c if (!(c == '"' || c == '\\')) { c 780 third_party/simplejson/_speedups.c if (c == '"') { c 788 third_party/simplejson/_speedups.c c = buf[next]; c 789 third_party/simplejson/_speedups.c if (c != 'u') { c 792 third_party/simplejson/_speedups.c switch (c) { c 796 third_party/simplejson/_speedups.c case 'b': c = '\b'; break; c 797 third_party/simplejson/_speedups.c case 'f': c = '\f'; break; c 798 third_party/simplejson/_speedups.c case 'n': c = '\n'; break; c 799 third_party/simplejson/_speedups.c case 'r': c = '\r'; break; c 800 third_party/simplejson/_speedups.c case 't': c = '\t'; break; c 801 third_party/simplejson/_speedups.c default: c = 0; c 803 third_party/simplejson/_speedups.c if (c == 0) { c 809 third_party/simplejson/_speedups.c c = 0; c 819 third_party/simplejson/_speedups.c c <<= 4; c 823 third_party/simplejson/_speedups.c c |= (digit - '0'); break; c 826 third_party/simplejson/_speedups.c c |= (digit - 'a' + 10); break; c 829 third_party/simplejson/_speedups.c c |= (digit - 'A' + 10); break; c 837 third_party/simplejson/_speedups.c if ((c & 0xfc00) == 0xd800) { c 871 third_party/simplejson/_speedups.c c = 0x10000 + (((c - 0xd800) << 10) | (c2 - 0xdc00)); c 873 third_party/simplejson/_speedups.c else if ((c & 0xfc00) == 0xdc00) { c 880 third_party/simplejson/_speedups.c chunk = PyUnicode_FromUnicode(&c, 1); c 11213 third_party/sqlite/amalgamation/sqlite3.c # define sqlite3AuthRead(a,b,c,d) c 11214 third_party/sqlite/amalgamation/sqlite3.c # define sqlite3AuthCheck(a,b,c,d,e) SQLITE_OK c 11215 third_party/sqlite/amalgamation/sqlite3.c # define sqlite3AuthContextPush(a,b,c) c 11448 third_party/sqlite/amalgamation/sqlite3.c #define sqlite3FkActions(a,b,c,d) c 11449 third_party/sqlite/amalgamation/sqlite3.c #define sqlite3FkCheck(a,b,c,d) c 11450 third_party/sqlite/amalgamation/sqlite3.c #define sqlite3FkDropTable(a,b,c) c 11452 third_party/sqlite/amalgamation/sqlite3.c #define sqlite3FkRequired(a,b,c,d) 0 c 13004 third_party/sqlite/amalgamation/sqlite3.c int c; c 13007 third_party/sqlite/amalgamation/sqlite3.c c = *zDate; c 13008 third_party/sqlite/amalgamation/sqlite3.c if( c=='-' ){ c 13010 third_party/sqlite/amalgamation/sqlite3.c }else if( c=='+' ){ c 13012 third_party/sqlite/amalgamation/sqlite3.c }else if( c=='Z' || c=='z' ){ c 13016 third_party/sqlite/amalgamation/sqlite3.c return c!=0; c 18717 third_party/sqlite/amalgamation/sqlite3.c int c; /* Next character in the format string */ c 18750 third_party/sqlite/amalgamation/sqlite3.c for(; (c=(*fmt))!=0; ++fmt){ c 18751 third_party/sqlite/amalgamation/sqlite3.c if( c!='%' ){ c 18755 third_party/sqlite/amalgamation/sqlite3.c while( (c=(*++fmt))!='%' && c!=0 ) amt++; c 18757 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ) break; c 18759 third_party/sqlite/amalgamation/sqlite3.c if( (c=(*++fmt))==0 ){ c 18768 third_party/sqlite/amalgamation/sqlite3.c switch( c ){ c 18777 third_party/sqlite/amalgamation/sqlite3.c }while( !done && (c=(*++fmt))!=0 ); c 18780 third_party/sqlite/amalgamation/sqlite3.c if( c=='*' ){ c 18786 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18788 third_party/sqlite/amalgamation/sqlite3.c while( c>='0' && c<='9' ){ c 18789 third_party/sqlite/amalgamation/sqlite3.c width = width*10 + c - '0'; c 18790 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18797 third_party/sqlite/amalgamation/sqlite3.c if( c=='.' ){ c 18799 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18800 third_party/sqlite/amalgamation/sqlite3.c if( c=='*' ){ c 18803 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18805 third_party/sqlite/amalgamation/sqlite3.c while( c>='0' && c<='9' ){ c 18806 third_party/sqlite/amalgamation/sqlite3.c precision = precision*10 + c - '0'; c 18807 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18814 third_party/sqlite/amalgamation/sqlite3.c if( c=='l' ){ c 18816 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18817 third_party/sqlite/amalgamation/sqlite3.c if( c=='l' ){ c 18819 third_party/sqlite/amalgamation/sqlite3.c c = *++fmt; c 18830 third_party/sqlite/amalgamation/sqlite3.c if( c==fmtinfo[idx].fmttype ){ c 19110 third_party/sqlite/amalgamation/sqlite3.c c = va_arg(ap,int); c 19111 third_party/sqlite/amalgamation/sqlite3.c buf[0] = (char)c; c 19113 third_party/sqlite/amalgamation/sqlite3.c for(idx=1; idx<precision; idx++) buf[idx] = (char)c; c 19723 third_party/sqlite/amalgamation/sqlite3.c #define WRITE_UTF8(zOut, c) { \ c 19724 third_party/sqlite/amalgamation/sqlite3.c if( c<0x00080 ){ \ c 19725 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(c&0xFF); \ c 19727 third_party/sqlite/amalgamation/sqlite3.c else if( c<0x00800 ){ \ c 19728 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ c 19729 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0x80 + (u8)(c & 0x3F); \ c 19731 third_party/sqlite/amalgamation/sqlite3.c else if( c<0x10000 ){ \ c 19732 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ c 19733 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ c 19734 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0x80 + (u8)(c & 0x3F); \ c 19736 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ c 19737 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ c 19738 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ c 19739 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = 0x80 + (u8)(c & 0x3F); \ c 19743 third_party/sqlite/amalgamation/sqlite3.c #define WRITE_UTF16LE(zOut, c) { \ c 19744 third_party/sqlite/amalgamation/sqlite3.c if( c<=0xFFFF ){ \ c 19745 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(c&0x00FF); \ c 19746 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)((c>>8)&0x00FF); \ c 19748 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ c 19749 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ c 19750 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(c&0x00FF); \ c 19751 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ c 19755 third_party/sqlite/amalgamation/sqlite3.c #define WRITE_UTF16BE(zOut, c) { \ c 19756 third_party/sqlite/amalgamation/sqlite3.c if( c<=0xFFFF ){ \ c 19757 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)((c>>8)&0x00FF); \ c 19758 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(c&0x00FF); \ c 19760 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ c 19761 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ c 19762 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ c 19763 third_party/sqlite/amalgamation/sqlite3.c *zOut++ = (u8)(c&0x00FF); \ c 19767 third_party/sqlite/amalgamation/sqlite3.c #define READ_UTF16LE(zIn, TERM, c){ \ c 19768 third_party/sqlite/amalgamation/sqlite3.c c = (*zIn++); \ c 19769 third_party/sqlite/amalgamation/sqlite3.c c += ((*zIn++)<<8); \ c 19770 third_party/sqlite/amalgamation/sqlite3.c if( c>=0xD800 && c<0xE000 && TERM ){ \ c 19773 third_party/sqlite/amalgamation/sqlite3.c c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \ c 19777 third_party/sqlite/amalgamation/sqlite3.c #define READ_UTF16BE(zIn, TERM, c){ \ c 19778 third_party/sqlite/amalgamation/sqlite3.c c = ((*zIn++)<<8); \ c 19779 third_party/sqlite/amalgamation/sqlite3.c c += (*zIn++); \ c 19780 third_party/sqlite/amalgamation/sqlite3.c if( c>=0xD800 && c<0xE000 && TERM ){ \ c 19783 third_party/sqlite/amalgamation/sqlite3.c c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \ c 19814 third_party/sqlite/amalgamation/sqlite3.c #define READ_UTF8(zIn, zTerm, c) \ c 19815 third_party/sqlite/amalgamation/sqlite3.c c = *(zIn++); \ c 19816 third_party/sqlite/amalgamation/sqlite3.c if( c>=0xc0 ){ \ c 19817 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Utf8Trans1[c-0xc0]; \ c 19819 third_party/sqlite/amalgamation/sqlite3.c c = (c<<6) + (0x3f & *(zIn++)); \ c 19821 third_party/sqlite/amalgamation/sqlite3.c if( c<0x80 \ c 19822 third_party/sqlite/amalgamation/sqlite3.c || (c&0xFFFFF800)==0xD800 \ c 19823 third_party/sqlite/amalgamation/sqlite3.c || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ c 19829 third_party/sqlite/amalgamation/sqlite3.c unsigned int c; c 19834 third_party/sqlite/amalgamation/sqlite3.c c = *(zIn++); c 19835 third_party/sqlite/amalgamation/sqlite3.c if( c>=0xc0 ){ c 19836 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Utf8Trans1[c-0xc0]; c 19838 third_party/sqlite/amalgamation/sqlite3.c c = (c<<6) + (0x3f & *(zIn++)); c 19840 third_party/sqlite/amalgamation/sqlite3.c if( c<0x80 c 19841 third_party/sqlite/amalgamation/sqlite3.c || (c&0xFFFFF800)==0xD800 c 19842 third_party/sqlite/amalgamation/sqlite3.c || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } c 19845 third_party/sqlite/amalgamation/sqlite3.c return c; c 19869 third_party/sqlite/amalgamation/sqlite3.c unsigned int c; c 19946 third_party/sqlite/amalgamation/sqlite3.c READ_UTF8(zIn, zTerm, c); c 19947 third_party/sqlite/amalgamation/sqlite3.c WRITE_UTF16LE(z, c); c 19954 third_party/sqlite/amalgamation/sqlite3.c READ_UTF8(zIn, zTerm, c); c 19955 third_party/sqlite/amalgamation/sqlite3.c WRITE_UTF16BE(z, c); c 19965 third_party/sqlite/amalgamation/sqlite3.c READ_UTF16LE(zIn, zIn<zTerm, c); c 19966 third_party/sqlite/amalgamation/sqlite3.c WRITE_UTF8(z, c); c 19971 third_party/sqlite/amalgamation/sqlite3.c READ_UTF16BE(zIn, zIn<zTerm, c); c 19972 third_party/sqlite/amalgamation/sqlite3.c WRITE_UTF8(z, c); c 20078 third_party/sqlite/amalgamation/sqlite3.c u32 c; c 20081 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Utf8Read(zIn, (const u8**)&zIn); c 20082 third_party/sqlite/amalgamation/sqlite3.c if( c!=0xfffd ){ c 20083 third_party/sqlite/amalgamation/sqlite3.c WRITE_UTF8(zOut, c); c 20148 third_party/sqlite/amalgamation/sqlite3.c int c; c 20154 third_party/sqlite/amalgamation/sqlite3.c READ_UTF16BE(z, 1, c); c 20159 third_party/sqlite/amalgamation/sqlite3.c READ_UTF16LE(z, 1, c); c 20177 third_party/sqlite/amalgamation/sqlite3.c unsigned int c; c 20186 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Utf8Read(z, (const u8**)&z); c 20190 third_party/sqlite/amalgamation/sqlite3.c assert( c==t ); c 20201 third_party/sqlite/amalgamation/sqlite3.c READ_UTF16LE(z, 1, c); c 20202 third_party/sqlite/amalgamation/sqlite3.c assert( c==i ); c 20213 third_party/sqlite/amalgamation/sqlite3.c READ_UTF16BE(z, 1, c); c 20214 third_party/sqlite/amalgamation/sqlite3.c assert( c==i ); c 20646 third_party/sqlite/amalgamation/sqlite3.c int c = 0; c 20650 third_party/sqlite/amalgamation/sqlite3.c for(i=0; c==0 && i<18; i++){ c 20651 third_party/sqlite/amalgamation/sqlite3.c c = (zNum[i*incr]-pow63[i])*10; c 20653 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ){ c 20654 third_party/sqlite/amalgamation/sqlite3.c c = zNum[18*incr] - '8'; c 20655 third_party/sqlite/amalgamation/sqlite3.c testcase( c==(-1) ); c 20656 third_party/sqlite/amalgamation/sqlite3.c testcase( c==0 ); c 20657 third_party/sqlite/amalgamation/sqlite3.c testcase( c==(+1) ); c 20659 third_party/sqlite/amalgamation/sqlite3.c return c; c 20685 third_party/sqlite/amalgamation/sqlite3.c int c = 0; c 20700 third_party/sqlite/amalgamation/sqlite3.c for(i=0; &zNum[i]<zEnd && (c=zNum[i])>='0' && c<='9'; i+=incr){ c 20701 third_party/sqlite/amalgamation/sqlite3.c u = u*10 + c - '0'; c 20713 third_party/sqlite/amalgamation/sqlite3.c if( (c!=0 && &zNum[i]<zEnd) || (i==0 && zStart==zNum) || i>19*incr ){ c 20723 third_party/sqlite/amalgamation/sqlite3.c c = compare2pow63(zNum, incr); c 20724 third_party/sqlite/amalgamation/sqlite3.c if( c<0 ){ c 20728 third_party/sqlite/amalgamation/sqlite3.c }else if( c>0 ){ c 20751 third_party/sqlite/amalgamation/sqlite3.c int i, c; c 20760 third_party/sqlite/amalgamation/sqlite3.c for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){ c 20761 third_party/sqlite/amalgamation/sqlite3.c v = v*10 + c; c 23746 third_party/sqlite/amalgamation/sqlite3.c static unsigned c = 0; c 23754 third_party/sqlite/amalgamation/sqlite3.c c += 0x0100; c 23756 third_party/sqlite/amalgamation/sqlite3.c dt.year = (USHORT)((dt.year - 1900) | c); c 24462 third_party/sqlite/amalgamation/sqlite3.c #define osFstat(a,b,c) 0 c 25116 third_party/sqlite/amalgamation/sqlite3.c #define unixLogError(a,b,c) unixLogErrorAtLine(a,b,c,__LINE__) c 29834 third_party/sqlite/amalgamation/sqlite3.c char c = dbPath[i]; c 29835 third_party/sqlite/amalgamation/sqlite3.c lPath[i+len] = (c=='/')?'_':c; c 31196 third_party/sqlite/amalgamation/sqlite3.c # define FormatMessageW(a,b,c,d,e,f,g) 0 c 31454 third_party/sqlite/amalgamation/sqlite3.c #define LockFile(a,b,c,d,e) winceLockFile(&a, b, c, d, e) c 31455 third_party/sqlite/amalgamation/sqlite3.c #define UnlockFile(a,b,c,d,e) winceUnlockFile(&a, b, c, d, e) c 31456 third_party/sqlite/amalgamation/sqlite3.c #define LockFileEx(a,b,c,d,e,f) winceLockFileEx(&a, b, c, d, e, f) c 35073 third_party/sqlite/amalgamation/sqlite3.c #define PAGE_TO_PGHDR1(c, p) (PgHdr1*)(((char*)p) + c->szPage) c 37688 third_party/sqlite/amalgamation/sqlite3.c i64 c = pPager->journalOff; c 37689 third_party/sqlite/amalgamation/sqlite3.c if( c ){ c 37690 third_party/sqlite/amalgamation/sqlite3.c offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager); c 37693 third_party/sqlite/amalgamation/sqlite3.c assert( offset>=c ); c 37694 third_party/sqlite/amalgamation/sqlite3.c assert( (offset-c)<JOURNAL_HDR_SZ(pPager) ); c 38845 third_party/sqlite/amalgamation/sqlite3.c int c; c 38858 third_party/sqlite/amalgamation/sqlite3.c c = zMasterPtr[0]!=0 && strcmp(zMasterPtr, zMaster)==0; c 38859 third_party/sqlite/amalgamation/sqlite3.c if( c ){ c 47207 third_party/sqlite/amalgamation/sqlite3.c #define querySharedCacheTableLock(a,b,c) SQLITE_OK c 47208 third_party/sqlite/amalgamation/sqlite3.c #define setSharedCacheTableLock(a,b,c) SQLITE_OK c 47211 third_party/sqlite/amalgamation/sqlite3.c #define hasSharedCacheTableLock(a,b,c,d) 1 c 51570 third_party/sqlite/amalgamation/sqlite3.c int c; c 51601 third_party/sqlite/amalgamation/sqlite3.c c = 0; c 51603 third_party/sqlite/amalgamation/sqlite3.c c = -1; c 51606 third_party/sqlite/amalgamation/sqlite3.c c = +1; c 51624 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3VdbeRecordCompare(nCell, (void*)&pCell[1], pIdxKey); c 51630 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3VdbeRecordCompare(nCell, (void*)&pCell[2], pIdxKey); c 51650 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3VdbeRecordCompare(nCell, pCellKey, pIdxKey); c 51654 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ){ c 51665 third_party/sqlite/amalgamation/sqlite3.c if( c<0 ){ c 51686 third_party/sqlite/amalgamation/sqlite3.c *pRes = c; c 62165 third_party/sqlite/amalgamation/sqlite3.c char c; c 62167 third_party/sqlite/amalgamation/sqlite3.c c = 'z'; c 62170 third_party/sqlite/amalgamation/sqlite3.c c = 't'; c 62173 third_party/sqlite/amalgamation/sqlite3.c c = 'e'; c 62176 third_party/sqlite/amalgamation/sqlite3.c c = 's'; c 62179 third_party/sqlite/amalgamation/sqlite3.c sqlite3_snprintf(100, zCsr, "%c", c); c 62220 third_party/sqlite/amalgamation/sqlite3.c u8 c = pMem->z[j]; c 62221 third_party/sqlite/amalgamation/sqlite3.c if( c>=0x20 && c<0x7f ){ c 62222 third_party/sqlite/amalgamation/sqlite3.c zBuf[k++] = c; c 62545 third_party/sqlite/amalgamation/sqlite3.c int c; c 64355 third_party/sqlite/amalgamation/sqlite3.c int c; c 64359 third_party/sqlite/amalgamation/sqlite3.c u.al.c = pOp->p3; c 64362 third_party/sqlite/amalgamation/sqlite3.c u.al.c = sqlite3VdbeIntValue(pIn1)!=0; c 64364 third_party/sqlite/amalgamation/sqlite3.c u.al.c = sqlite3VdbeRealValue(pIn1)!=0.0; c 64366 third_party/sqlite/amalgamation/sqlite3.c if( pOp->opcode==OP_IfNot ) u.al.c = !u.al.c; c 64368 third_party/sqlite/amalgamation/sqlite3.c if( u.al.c ){ c 71141 third_party/sqlite/amalgamation/sqlite3.c int c; c 71146 third_party/sqlite/amalgamation/sqlite3.c && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ c 71148 third_party/sqlite/amalgamation/sqlite3.c if( c=='"' ) pNew->flags |= EP_DblQuoted; c 72694 third_party/sqlite/amalgamation/sqlite3.c int c; c 72698 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); c 72699 third_party/sqlite/amalgamation/sqlite3.c if( c==0 || (c==2 && negFlag) ){ c 72701 third_party/sqlite/amalgamation/sqlite3.c if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } c 75842 third_party/sqlite/amalgamation/sqlite3.c int i, c, n; c 75865 third_party/sqlite/amalgamation/sqlite3.c while( (c=z[0])>='0' && c<='9' ){ c 75866 third_party/sqlite/amalgamation/sqlite3.c v = v*10 + c - '0'; c 82256 third_party/sqlite/amalgamation/sqlite3.c int c, c2; c 82265 third_party/sqlite/amalgamation/sqlite3.c while( (c = sqlite3Utf8Read(zPattern,&zPattern))!=0 ){ c 82266 third_party/sqlite/amalgamation/sqlite3.c if( !prevEscape && c==matchAll ){ c 82267 third_party/sqlite/amalgamation/sqlite3.c while( (c=sqlite3Utf8Read(zPattern,&zPattern)) == matchAll c 82268 third_party/sqlite/amalgamation/sqlite3.c || c == matchOne ){ c 82269 third_party/sqlite/amalgamation/sqlite3.c if( c==matchOne && sqlite3Utf8Read(zString, &zString)==0 ){ c 82273 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ){ c 82275 third_party/sqlite/amalgamation/sqlite3.c }else if( c==esc ){ c 82276 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Utf8Read(zPattern, &zPattern); c 82277 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ){ c 82280 third_party/sqlite/amalgamation/sqlite3.c }else if( c==matchSet ){ c 82291 third_party/sqlite/amalgamation/sqlite3.c GlogUpperToLower(c); c 82292 third_party/sqlite/amalgamation/sqlite3.c while( c2 != 0 && c2 != c ){ c 82297 third_party/sqlite/amalgamation/sqlite3.c while( c2 != 0 && c2 != c ){ c 82305 third_party/sqlite/amalgamation/sqlite3.c }else if( !prevEscape && c==matchOne ){ c 82309 third_party/sqlite/amalgamation/sqlite3.c }else if( c==matchSet ){ c 82314 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3Utf8Read(zString, &zString); c 82315 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ) return 0; c 82322 third_party/sqlite/amalgamation/sqlite3.c if( c==']' ) seen = 1; c 82328 third_party/sqlite/amalgamation/sqlite3.c if( c>=prior_c && c<=c2 ) seen = 1; c 82331 third_party/sqlite/amalgamation/sqlite3.c if( c==c2 ){ c 82341 third_party/sqlite/amalgamation/sqlite3.c }else if( esc==c && !prevEscape ){ c 82346 third_party/sqlite/amalgamation/sqlite3.c GlogUpperToLower(c); c 82349 third_party/sqlite/amalgamation/sqlite3.c if( c!=c2 ){ c 82621 third_party/sqlite/amalgamation/sqlite3.c unsigned char c = *pBlob; c 82622 third_party/sqlite/amalgamation/sqlite3.c *(z++) = hexdigits[(c>>4)&0xf]; c 82623 third_party/sqlite/amalgamation/sqlite3.c *(z++) = hexdigits[c&0xf]; c 93570 third_party/sqlite/amalgamation/sqlite3.c # define explainSimpleCount(a,b,c) c 98194 third_party/sqlite/amalgamation/sqlite3.c u16 c; c 98197 third_party/sqlite/amalgamation/sqlite3.c c = WO_IN; c 98199 third_party/sqlite/amalgamation/sqlite3.c c = WO_ISNULL; c 98202 third_party/sqlite/amalgamation/sqlite3.c c = (u16)(WO_EQ<<(op-TK_EQ)); c 98204 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_ISNULL || c==WO_ISNULL ); c 98205 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_IN || c==WO_IN ); c 98206 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_EQ || c==WO_EQ ); c 98207 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_LT || c==WO_LT ); c 98208 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_LE || c==WO_LE ); c 98209 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_GT || c==WO_GT ); c 98210 third_party/sqlite/amalgamation/sqlite3.c assert( op!=TK_GE || c==WO_GE ); c 98211 third_party/sqlite/amalgamation/sqlite3.c return c; c 98304 third_party/sqlite/amalgamation/sqlite3.c int c; /* One character in z[] */ c 98345 third_party/sqlite/amalgamation/sqlite3.c while( (c=z[cnt])!=0 && c!=wc[0] && c!=wc[1] && c!=wc[2] ){ c 98350 third_party/sqlite/amalgamation/sqlite3.c *pisComplete = c==wc[0] && z[cnt+1]==0; c 98912 third_party/sqlite/amalgamation/sqlite3.c u8 c, *pC; /* Last character before the first wildcard */ c 98914 third_party/sqlite/amalgamation/sqlite3.c c = *pC; c 98922 third_party/sqlite/amalgamation/sqlite3.c if( c=='A'-1 ) isComplete = 0; /* EV: R-64339-08207 */ c 98925 third_party/sqlite/amalgamation/sqlite3.c c = sqlite3UpperToLower[c]; c 98927 third_party/sqlite/amalgamation/sqlite3.c *pC = c + 1; c 99988 third_party/sqlite/amalgamation/sqlite3.c int c; c 100002 third_party/sqlite/amalgamation/sqlite3.c c = pColl->xCmp(pColl->pUser, nSample, zSample, n, z); c 100007 third_party/sqlite/amalgamation/sqlite3.c c = pColl->xCmp(pColl->pUser, aSample[i].nByte, aSample[i].u.z, n, z); c 100009 third_party/sqlite/amalgamation/sqlite3.c if( c-roundUp>=0 ) break; c 106446 third_party/sqlite/amalgamation/sqlite3.c #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) c 106455 third_party/sqlite/amalgamation/sqlite3.c int i, c; c 106470 third_party/sqlite/amalgamation/sqlite3.c for(i=2; (c=z[i])!=0 && c!='\n'; i++){} c 106503 third_party/sqlite/amalgamation/sqlite3.c for(i=3, c=z[2]; (c!='*' || z[i]!='/') && (c=z[i])!=0; i++){} c 106504 third_party/sqlite/amalgamation/sqlite3.c if( c ) i++; c 106517 third_party/sqlite/amalgamation/sqlite3.c if( (c=z[1])=='=' ){ c 106520 third_party/sqlite/amalgamation/sqlite3.c }else if( c=='>' ){ c 106523 third_party/sqlite/amalgamation/sqlite3.c }else if( c=='<' ){ c 106532 third_party/sqlite/amalgamation/sqlite3.c if( (c=z[1])=='=' ){ c 106535 third_party/sqlite/amalgamation/sqlite3.c }else if( c=='>' ){ c 106580 third_party/sqlite/amalgamation/sqlite3.c for(i=1; (c=z[i])!=0; i++){ c 106581 third_party/sqlite/amalgamation/sqlite3.c if( c==delim ){ c 106589 third_party/sqlite/amalgamation/sqlite3.c if( c=='\'' ){ c 106592 third_party/sqlite/amalgamation/sqlite3.c }else if( c!=0 ){ c 106642 third_party/sqlite/amalgamation/sqlite3.c for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} c 106643 third_party/sqlite/amalgamation/sqlite3.c *tokenType = c==']' ? TK_ID : TK_ILLEGAL; c 106670 third_party/sqlite/amalgamation/sqlite3.c for(i=1; (c=z[i])!=0; i++){ c 106671 third_party/sqlite/amalgamation/sqlite3.c if( IdChar(c) ){ c 106674 third_party/sqlite/amalgamation/sqlite3.c }else if( c=='(' && n>0 ){ c 106677 third_party/sqlite/amalgamation/sqlite3.c }while( (c=z[i])!=0 && !sqlite3Isspace(c) && c!=')' ); c 106678 third_party/sqlite/amalgamation/sqlite3.c if( c==')' ){ c 106684 third_party/sqlite/amalgamation/sqlite3.c }else if( c==':' && z[i+1]==':' ){ c 106699 third_party/sqlite/amalgamation/sqlite3.c for(i=2; (c=z[i])!=0 && c!='\''; i++){ c 106700 third_party/sqlite/amalgamation/sqlite3.c if( !sqlite3Isxdigit(c) ){ c 106704 third_party/sqlite/amalgamation/sqlite3.c if( i%2 || !c ) *tokenType = TK_ILLEGAL; c 106705 third_party/sqlite/amalgamation/sqlite3.c if( c ) i++; c 106903 third_party/sqlite/amalgamation/sqlite3.c #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) c 107055 third_party/sqlite/amalgamation/sqlite3.c int c = *zSql; c 107057 third_party/sqlite/amalgamation/sqlite3.c while( *zSql && *zSql!=c ){ zSql++; } c 107064 third_party/sqlite/amalgamation/sqlite3.c unsigned char c; c 110590 third_party/sqlite/amalgamation/sqlite3.c static int ascii_isspace(char c){ c 110592 third_party/sqlite/amalgamation/sqlite3.c return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; c 114434 third_party/sqlite/amalgamation/sqlite3.c char c = 0; c 114446 third_party/sqlite/amalgamation/sqlite3.c while( *pEnd | c ){ c 114447 third_party/sqlite/amalgamation/sqlite3.c c = *pEnd++ & 0x80; c 114448 third_party/sqlite/amalgamation/sqlite3.c testcase( c!=0 && (*pEnd)==0 ); c 114481 third_party/sqlite/amalgamation/sqlite3.c char c = 0; c 114486 third_party/sqlite/amalgamation/sqlite3.c while( 0xFE & (*pEnd | c) ){ c 114487 third_party/sqlite/amalgamation/sqlite3.c c = *pEnd++ & 0x80; c 114488 third_party/sqlite/amalgamation/sqlite3.c testcase( c!=0 && ((*pEnd)&0xfe)==0 ); c 117330 third_party/sqlite/amalgamation/sqlite3.c static int fts3isspace(char c){ c 117331 third_party/sqlite/amalgamation/sqlite3.c return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; c 118634 third_party/sqlite/amalgamation/sqlite3.c porter_tokenizer_cursor *c; c 118638 third_party/sqlite/amalgamation/sqlite3.c c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); c 118639 third_party/sqlite/amalgamation/sqlite3.c if( c==NULL ) return SQLITE_NOMEM; c 118641 third_party/sqlite/amalgamation/sqlite3.c c->zInput = zInput; c 118643 third_party/sqlite/amalgamation/sqlite3.c c->nInput = 0; c 118645 third_party/sqlite/amalgamation/sqlite3.c c->nInput = (int)strlen(zInput); c 118647 third_party/sqlite/amalgamation/sqlite3.c c->nInput = nInput; c 118649 third_party/sqlite/amalgamation/sqlite3.c c->iOffset = 0; /* start tokenizing at the beginning */ c 118650 third_party/sqlite/amalgamation/sqlite3.c c->iToken = 0; c 118651 third_party/sqlite/amalgamation/sqlite3.c c->zToken = NULL; /* no space allocated, yet. */ c 118652 third_party/sqlite/amalgamation/sqlite3.c c->nAllocated = 0; c 118654 third_party/sqlite/amalgamation/sqlite3.c *ppCursor = &c->base; c 118663 third_party/sqlite/amalgamation/sqlite3.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 118664 third_party/sqlite/amalgamation/sqlite3.c sqlite3_free(c->zToken); c 118665 third_party/sqlite/amalgamation/sqlite3.c sqlite3_free(c); c 118838 third_party/sqlite/amalgamation/sqlite3.c char c = zIn[i]; c 118839 third_party/sqlite/amalgamation/sqlite3.c if( c>='A' && c<='Z' ){ c 118840 third_party/sqlite/amalgamation/sqlite3.c zOut[i] = c - 'A' + 'a'; c 118842 third_party/sqlite/amalgamation/sqlite3.c if( c>='0' && c<='9' ) hasDigit = 1; c 118843 third_party/sqlite/amalgamation/sqlite3.c zOut[i] = c; c 118892 third_party/sqlite/amalgamation/sqlite3.c char c = zIn[i]; c 118893 third_party/sqlite/amalgamation/sqlite3.c if( c>='A' && c<='Z' ){ c 118894 third_party/sqlite/amalgamation/sqlite3.c zReverse[j] = c + 'a' - 'A'; c 118895 third_party/sqlite/amalgamation/sqlite3.c }else if( c>='a' && c<='z' ){ c 118896 third_party/sqlite/amalgamation/sqlite3.c zReverse[j] = c; c 119126 third_party/sqlite/amalgamation/sqlite3.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 119127 third_party/sqlite/amalgamation/sqlite3.c const char *z = c->zInput; c 119129 third_party/sqlite/amalgamation/sqlite3.c while( c->iOffset<c->nInput ){ c 119133 third_party/sqlite/amalgamation/sqlite3.c while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ c 119134 third_party/sqlite/amalgamation/sqlite3.c c->iOffset++; c 119138 third_party/sqlite/amalgamation/sqlite3.c iStartOffset = c->iOffset; c 119139 third_party/sqlite/amalgamation/sqlite3.c while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ c 119140 third_party/sqlite/amalgamation/sqlite3.c c->iOffset++; c 119143 third_party/sqlite/amalgamation/sqlite3.c if( c->iOffset>iStartOffset ){ c 119144 third_party/sqlite/amalgamation/sqlite3.c int n = c->iOffset-iStartOffset; c 119145 third_party/sqlite/amalgamation/sqlite3.c if( n>c->nAllocated ){ c 119147 third_party/sqlite/amalgamation/sqlite3.c c->nAllocated = n+20; c 119148 third_party/sqlite/amalgamation/sqlite3.c pNew = sqlite3_realloc(c->zToken, c->nAllocated); c 119150 third_party/sqlite/amalgamation/sqlite3.c c->zToken = pNew; c 119152 third_party/sqlite/amalgamation/sqlite3.c porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); c 119153 third_party/sqlite/amalgamation/sqlite3.c *pzToken = c->zToken; c 119155 third_party/sqlite/amalgamation/sqlite3.c *piEndOffset = c->iOffset; c 119156 third_party/sqlite/amalgamation/sqlite3.c *piPosition = c->iToken++; c 119284 third_party/sqlite/amalgamation/sqlite3.c SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char c){ c 119295 third_party/sqlite/amalgamation/sqlite3.c return (c&0x80 || isFtsIdChar[(int)(c)]); c 119305 third_party/sqlite/amalgamation/sqlite3.c char c = *z1; c 119306 third_party/sqlite/amalgamation/sqlite3.c switch( c ){ c 119312 third_party/sqlite/amalgamation/sqlite3.c while( *++z2 && (*z2!=c || *++z2==c) ); c 119725 third_party/sqlite/amalgamation/sqlite3.c static int simpleDelim(simple_tokenizer *t, unsigned char c){ c 119726 third_party/sqlite/amalgamation/sqlite3.c return c<0x80 && t->delim[c]; c 119792 third_party/sqlite/amalgamation/sqlite3.c simple_tokenizer_cursor *c; c 119796 third_party/sqlite/amalgamation/sqlite3.c c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); c 119797 third_party/sqlite/amalgamation/sqlite3.c if( c==NULL ) return SQLITE_NOMEM; c 119799 third_party/sqlite/amalgamation/sqlite3.c c->pInput = pInput; c 119801 third_party/sqlite/amalgamation/sqlite3.c c->nBytes = 0; c 119803 third_party/sqlite/amalgamation/sqlite3.c c->nBytes = (int)strlen(pInput); c 119805 third_party/sqlite/amalgamation/sqlite3.c c->nBytes = nBytes; c 119807 third_party/sqlite/amalgamation/sqlite3.c c->iOffset = 0; /* start tokenizing at the beginning */ c 119808 third_party/sqlite/amalgamation/sqlite3.c c->iToken = 0; c 119809 third_party/sqlite/amalgamation/sqlite3.c c->pToken = NULL; /* no space allocated, yet. */ c 119810 third_party/sqlite/amalgamation/sqlite3.c c->nTokenAllocated = 0; c 119812 third_party/sqlite/amalgamation/sqlite3.c *ppCursor = &c->base; c 119821 third_party/sqlite/amalgamation/sqlite3.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 119822 third_party/sqlite/amalgamation/sqlite3.c sqlite3_free(c->pToken); c 119823 third_party/sqlite/amalgamation/sqlite3.c sqlite3_free(c); c 119839 third_party/sqlite/amalgamation/sqlite3.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 119841 third_party/sqlite/amalgamation/sqlite3.c unsigned char *p = (unsigned char *)c->pInput; c 119843 third_party/sqlite/amalgamation/sqlite3.c while( c->iOffset<c->nBytes ){ c 119847 third_party/sqlite/amalgamation/sqlite3.c while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ c 119848 third_party/sqlite/amalgamation/sqlite3.c c->iOffset++; c 119852 third_party/sqlite/amalgamation/sqlite3.c iStartOffset = c->iOffset; c 119853 third_party/sqlite/amalgamation/sqlite3.c while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ c 119854 third_party/sqlite/amalgamation/sqlite3.c c->iOffset++; c 119857 third_party/sqlite/amalgamation/sqlite3.c if( c->iOffset>iStartOffset ){ c 119858 third_party/sqlite/amalgamation/sqlite3.c int i, n = c->iOffset-iStartOffset; c 119859 third_party/sqlite/amalgamation/sqlite3.c if( n>c->nTokenAllocated ){ c 119861 third_party/sqlite/amalgamation/sqlite3.c c->nTokenAllocated = n+20; c 119862 third_party/sqlite/amalgamation/sqlite3.c pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated); c 119864 third_party/sqlite/amalgamation/sqlite3.c c->pToken = pNew; c 119871 third_party/sqlite/amalgamation/sqlite3.c c->pToken[i] = (char)((ch>='A' && ch<='Z') ? ch-'A'+'a' : ch); c 119873 third_party/sqlite/amalgamation/sqlite3.c *ppToken = c->pToken; c 119876 third_party/sqlite/amalgamation/sqlite3.c *piEndOffset = c->iOffset; c 119877 third_party/sqlite/amalgamation/sqlite3.c *piPosition = c->iToken++; c 120934 third_party/sqlite/amalgamation/sqlite3.c char c = 0; c 120940 third_party/sqlite/amalgamation/sqlite3.c while( *p | c ) c = *p++ & 0x80; c 121128 third_party/sqlite/amalgamation/sqlite3.c int c = memcmp(z1, z2, n); c 121129 third_party/sqlite/amalgamation/sqlite3.c if( c==0 ){ c 121130 third_party/sqlite/amalgamation/sqlite3.c c = n1 - n2; c 121132 third_party/sqlite/amalgamation/sqlite3.c return c; c 121913 third_party/sqlite/amalgamation/sqlite3.c char c = 0; c 121914 third_party/sqlite/amalgamation/sqlite3.c while( p<pEnd && (c | *p)&0xFE ) c = *p++ & 0x80; c 123395 third_party/sqlite/amalgamation/sqlite3.c char c = 0; c 123399 third_party/sqlite/amalgamation/sqlite3.c while( 0xFE & (*pEnd | c) ){ c 123400 third_party/sqlite/amalgamation/sqlite3.c c = *pEnd++ & 0x80; c 123401 third_party/sqlite/amalgamation/sqlite3.c if( !c ) nEntry++; c 125407 third_party/sqlite/amalgamation/sqlite3.c RtreeCoord c; c 125408 third_party/sqlite/amalgamation/sqlite3.c nodeGetCoord(pRtree, pCsr->pNode, pCsr->iCell, i-1, &c); c 125410 third_party/sqlite/amalgamation/sqlite3.c sqlite3_result_double(ctx, c.f); c 125413 third_party/sqlite/amalgamation/sqlite3.c sqlite3_result_int(ctx, c.i); c 127409 third_party/sqlite/amalgamation/sqlite3.c void *c = (void *)RTREE_COORD_REAL32; c 127410 third_party/sqlite/amalgamation/sqlite3.c rc = sqlite3_create_module_v2(db, "rtree", &rtreeModule, c, 0); c 127413 third_party/sqlite/amalgamation/sqlite3.c void *c = (void *)RTREE_COORD_INT32; c 127414 third_party/sqlite/amalgamation/sqlite3.c rc = sqlite3_create_module_v2(db, "rtree_i32", &rtreeModule, c, 0); c 127592 third_party/sqlite/amalgamation/sqlite3.c uint8_t c; c 127598 third_party/sqlite/amalgamation/sqlite3.c while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){ c 127599 third_party/sqlite/amalgamation/sqlite3.c if( c==MATCH_ONE ){ c 128103 third_party/sqlite/amalgamation/sqlite3.c UChar32 c; c 128126 third_party/sqlite/amalgamation/sqlite3.c U8_NEXT(zInput, iInput, nInput, c); c 128127 third_party/sqlite/amalgamation/sqlite3.c while( c>0 ){ c 128129 third_party/sqlite/amalgamation/sqlite3.c c = u_foldCase(c, opt); c 128130 third_party/sqlite/amalgamation/sqlite3.c U16_APPEND(pCsr->aChar, iOut, nChar, c, isError); c 128138 third_party/sqlite/amalgamation/sqlite3.c U8_NEXT(zInput, iInput, nInput, c); c 128140 third_party/sqlite/amalgamation/sqlite3.c c = 0; c 128185 third_party/sqlite/amalgamation/sqlite3.c UChar32 c; c 128195 third_party/sqlite/amalgamation/sqlite3.c U16_NEXT(pCsr->aChar, iWhite, pCsr->nChar, c); c 128196 third_party/sqlite/amalgamation/sqlite3.c if( u_isspace(c) ){ c 207 third_party/sqlite/src/ext/fts1/fts1.c static int safe_isspace(char c){ c 208 third_party/sqlite/src/ext/fts1/fts1.c return (c&0x80)==0 ? isspace(c) : 0; c 210 third_party/sqlite/src/ext/fts1/fts1.c static int safe_tolower(char c){ c 211 third_party/sqlite/src/ext/fts1/fts1.c return (c&0x80)==0 ? tolower(c) : c; c 213 third_party/sqlite/src/ext/fts1/fts1.c static int safe_isalnum(char c){ c 214 third_party/sqlite/src/ext/fts1/fts1.c return (c&0x80)==0 ? isalnum(c) : 0; c 289 third_party/sqlite/src/ext/fts1/fts1.c char c[VARINT_MAX]; c 290 third_party/sqlite/src/ext/fts1/fts1.c int n = putVarint(c, i); c 292 third_party/sqlite/src/ext/fts1/fts1.c memcpy(d->pData + d->nData, c, n); c 1116 third_party/sqlite/src/ext/fts1/fts1.c static struct fulltext_vtab *cursor_vtab(fulltext_cursor *c){ c 1117 third_party/sqlite/src/ext/fts1/fts1.c return (fulltext_vtab *) c->base.pVtab; c 1559 third_party/sqlite/src/ext/fts1/fts1.c #define IdChar(C) (((c=C)&0x80)!=0 || (c>0x1f && isIdChar[c-0x20])) c 1567 third_party/sqlite/src/ext/fts1/fts1.c int i, c; c 1582 third_party/sqlite/src/ext/fts1/fts1.c for(i=1; (c=z[i])!=0; i++){ c 1583 third_party/sqlite/src/ext/fts1/fts1.c if( c==delim ){ c 1592 third_party/sqlite/src/ext/fts1/fts1.c return i + (c!=0); c 1595 third_party/sqlite/src/ext/fts1/fts1.c for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} c 2143 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c; c 2145 third_party/sqlite/src/ext/fts1/fts1.c c = (fulltext_cursor *) calloc(sizeof(fulltext_cursor), 1); c 2147 third_party/sqlite/src/ext/fts1/fts1.c *ppCursor = &c->base; c 2148 third_party/sqlite/src/ext/fts1/fts1.c TRACE(("FTS1 Open %p: %p\n", pVTab, c)); c 2525 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 2526 third_party/sqlite/src/ext/fts1/fts1.c TRACE(("FTS1 Close %p\n", c)); c 2527 third_party/sqlite/src/ext/fts1/fts1.c sqlite3_finalize(c->pStmt); c 2528 third_party/sqlite/src/ext/fts1/fts1.c queryClear(&c->q); c 2529 third_party/sqlite/src/ext/fts1/fts1.c snippetClear(&c->snippet); c 2530 third_party/sqlite/src/ext/fts1/fts1.c if( c->result.pDoclist!=NULL ){ c 2531 third_party/sqlite/src/ext/fts1/fts1.c docListDelete(c->result.pDoclist); c 2533 third_party/sqlite/src/ext/fts1/fts1.c free(c); c 2538 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 2543 third_party/sqlite/src/ext/fts1/fts1.c snippetClear(&c->snippet); c 2544 third_party/sqlite/src/ext/fts1/fts1.c if( c->iCursorType < QUERY_FULLTEXT ){ c 2546 third_party/sqlite/src/ext/fts1/fts1.c rc = sqlite3_step(c->pStmt); c 2549 third_party/sqlite/src/ext/fts1/fts1.c c->eof = 0; c 2552 third_party/sqlite/src/ext/fts1/fts1.c c->eof = 1; c 2555 third_party/sqlite/src/ext/fts1/fts1.c c->eof = 1; c 2559 third_party/sqlite/src/ext/fts1/fts1.c rc = sqlite3_reset(c->pStmt); c 2562 third_party/sqlite/src/ext/fts1/fts1.c iDocid = nextDocid(&c->result); c 2564 third_party/sqlite/src/ext/fts1/fts1.c c->eof = 1; c 2567 third_party/sqlite/src/ext/fts1/fts1.c rc = sqlite3_bind_int64(c->pStmt, 1, iDocid); c 2570 third_party/sqlite/src/ext/fts1/fts1.c rc = sqlite3_step(c->pStmt); c 2572 third_party/sqlite/src/ext/fts1/fts1.c c->eof = 0; c 2882 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 2883 third_party/sqlite/src/ext/fts1/fts1.c fulltext_vtab *v = cursor_vtab(c); c 2891 third_party/sqlite/src/ext/fts1/fts1.c sqlite3_finalize(c->pStmt); c 2892 third_party/sqlite/src/ext/fts1/fts1.c rc = sql_prepare(v->db, v->zDb, v->zName, &c->pStmt, zSql); c 2896 third_party/sqlite/src/ext/fts1/fts1.c c->iCursorType = idxNum; c 2902 third_party/sqlite/src/ext/fts1/fts1.c rc = sqlite3_bind_int64(c->pStmt, 1, sqlite3_value_int64(argv[0])); c 2912 third_party/sqlite/src/ext/fts1/fts1.c queryClear(&c->q); c 2913 third_party/sqlite/src/ext/fts1/fts1.c rc = fulltextQuery(v, idxNum-QUERY_FULLTEXT, zQuery, -1, &pResult, &c->q); c 2915 third_party/sqlite/src/ext/fts1/fts1.c if( c->result.pDoclist!=NULL ) docListDelete(c->result.pDoclist); c 2916 third_party/sqlite/src/ext/fts1/fts1.c readerInit(&c->result, pResult); c 2929 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 2930 third_party/sqlite/src/ext/fts1/fts1.c return c->eof; c 2941 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 2942 third_party/sqlite/src/ext/fts1/fts1.c fulltext_vtab *v = cursor_vtab(c); c 2945 third_party/sqlite/src/ext/fts1/fts1.c sqlite3_value *pVal = sqlite3_column_value(c->pStmt, idxCol+1); c 2951 third_party/sqlite/src/ext/fts1/fts1.c sqlite3_result_blob(pContext, &c, sizeof(c), SQLITE_TRANSIENT); c 2961 third_party/sqlite/src/ext/fts1/fts1.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 2963 third_party/sqlite/src/ext/fts1/fts1.c *pRowid = sqlite3_column_int64(c->pStmt, 0); c 95 third_party/sqlite/src/ext/fts1/fts1_porter.c porter_tokenizer_cursor *c; c 97 third_party/sqlite/src/ext/fts1/fts1_porter.c c = (porter_tokenizer_cursor *) malloc(sizeof(*c)); c 98 third_party/sqlite/src/ext/fts1/fts1_porter.c if( c==NULL ) return SQLITE_NOMEM; c 100 third_party/sqlite/src/ext/fts1/fts1_porter.c c->zInput = zInput; c 102 third_party/sqlite/src/ext/fts1/fts1_porter.c c->nInput = 0; c 104 third_party/sqlite/src/ext/fts1/fts1_porter.c c->nInput = (int)strlen(zInput); c 106 third_party/sqlite/src/ext/fts1/fts1_porter.c c->nInput = nInput; c 108 third_party/sqlite/src/ext/fts1/fts1_porter.c c->iOffset = 0; /* start tokenizing at the beginning */ c 109 third_party/sqlite/src/ext/fts1/fts1_porter.c c->iToken = 0; c 110 third_party/sqlite/src/ext/fts1/fts1_porter.c c->zToken = NULL; /* no space allocated, yet. */ c 111 third_party/sqlite/src/ext/fts1/fts1_porter.c c->nAllocated = 0; c 113 third_party/sqlite/src/ext/fts1/fts1_porter.c *ppCursor = &c->base; c 122 third_party/sqlite/src/ext/fts1/fts1_porter.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 123 third_party/sqlite/src/ext/fts1/fts1_porter.c free(c->zToken); c 124 third_party/sqlite/src/ext/fts1/fts1_porter.c free(c); c 297 third_party/sqlite/src/ext/fts1/fts1_porter.c int c = zIn[i]; c 298 third_party/sqlite/src/ext/fts1/fts1_porter.c if( c>='A' && c<='Z' ){ c 299 third_party/sqlite/src/ext/fts1/fts1_porter.c zOut[i] = c - 'A' + 'a'; c 301 third_party/sqlite/src/ext/fts1/fts1_porter.c if( c>='0' && c<='9' ) hasDigit = 1; c 302 third_party/sqlite/src/ext/fts1/fts1_porter.c zOut[i] = c; c 341 third_party/sqlite/src/ext/fts1/fts1_porter.c int i, j, c; c 351 third_party/sqlite/src/ext/fts1/fts1_porter.c c = zIn[i]; c 352 third_party/sqlite/src/ext/fts1/fts1_porter.c if( c>='A' && c<='Z' ){ c 353 third_party/sqlite/src/ext/fts1/fts1_porter.c zReverse[j] = c + 'a' - 'A'; c 354 third_party/sqlite/src/ext/fts1/fts1_porter.c }else if( c>='a' && c<='z' ){ c 355 third_party/sqlite/src/ext/fts1/fts1_porter.c zReverse[j] = c; c 586 third_party/sqlite/src/ext/fts1/fts1_porter.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 587 third_party/sqlite/src/ext/fts1/fts1_porter.c const char *z = c->zInput; c 589 third_party/sqlite/src/ext/fts1/fts1_porter.c while( c->iOffset<c->nInput ){ c 593 third_party/sqlite/src/ext/fts1/fts1_porter.c while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ c 594 third_party/sqlite/src/ext/fts1/fts1_porter.c c->iOffset++; c 598 third_party/sqlite/src/ext/fts1/fts1_porter.c iStartOffset = c->iOffset; c 599 third_party/sqlite/src/ext/fts1/fts1_porter.c while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ c 600 third_party/sqlite/src/ext/fts1/fts1_porter.c c->iOffset++; c 603 third_party/sqlite/src/ext/fts1/fts1_porter.c if( c->iOffset>iStartOffset ){ c 604 third_party/sqlite/src/ext/fts1/fts1_porter.c int n = c->iOffset-iStartOffset; c 605 third_party/sqlite/src/ext/fts1/fts1_porter.c if( n>c->nAllocated ){ c 606 third_party/sqlite/src/ext/fts1/fts1_porter.c c->nAllocated = n+20; c 607 third_party/sqlite/src/ext/fts1/fts1_porter.c c->zToken = realloc(c->zToken, c->nAllocated); c 608 third_party/sqlite/src/ext/fts1/fts1_porter.c if( c->zToken==NULL ) return SQLITE_NOMEM; c 610 third_party/sqlite/src/ext/fts1/fts1_porter.c porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); c 611 third_party/sqlite/src/ext/fts1/fts1_porter.c *pzToken = c->zToken; c 613 third_party/sqlite/src/ext/fts1/fts1_porter.c *piEndOffset = c->iOffset; c 614 third_party/sqlite/src/ext/fts1/fts1_porter.c *piPosition = c->iToken++; c 47 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c static int isDelim(simple_tokenizer *t, unsigned char c){ c 48 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c return c<0x80 && t->delim[c]; c 110 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c simple_tokenizer_cursor *c; c 112 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c = (simple_tokenizer_cursor *) malloc(sizeof(*c)); c 113 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c if( c==NULL ) return SQLITE_NOMEM; c 115 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->pInput = pInput; c 117 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->nBytes = 0; c 119 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->nBytes = (int)strlen(pInput); c 121 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->nBytes = nBytes; c 123 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->iOffset = 0; /* start tokenizing at the beginning */ c 124 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->iToken = 0; c 125 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->pToken = NULL; /* no space allocated, yet. */ c 126 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->nTokenAllocated = 0; c 128 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c *ppCursor = &c->base; c 137 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 138 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c free(c->pToken); c 139 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c free(c); c 155 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 157 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c unsigned char *p = (unsigned char *)c->pInput; c 159 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c while( c->iOffset<c->nBytes ){ c 163 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c while( c->iOffset<c->nBytes && isDelim(t, p[c->iOffset]) ){ c 164 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->iOffset++; c 168 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c iStartOffset = c->iOffset; c 169 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c while( c->iOffset<c->nBytes && !isDelim(t, p[c->iOffset]) ){ c 170 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->iOffset++; c 173 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c if( c->iOffset>iStartOffset ){ c 174 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c int i, n = c->iOffset-iStartOffset; c 175 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c if( n>c->nTokenAllocated ){ c 176 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->nTokenAllocated = n+20; c 177 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->pToken = realloc(c->pToken, c->nTokenAllocated); c 178 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c if( c->pToken==NULL ) return SQLITE_NOMEM; c 185 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c c->pToken[i] = ch<0x80 ? tolower(ch) : ch; c 187 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c *ppToken = c->pToken; c 190 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c *piEndOffset = c->iOffset; c 191 third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c *piPosition = c->iToken++; c 177 third_party/sqlite/src/ext/fts1/fulltext.c char c[VARINT_MAX]; c 178 third_party/sqlite/src/ext/fts1/fulltext.c int n = putVarint(c, i); c 180 third_party/sqlite/src/ext/fts1/fulltext.c memcpy(d->pData + d->nData, c, n); c 586 third_party/sqlite/src/ext/fts1/fulltext.c static struct fulltext_vtab *cursor_vtab(fulltext_cursor *c){ c 587 third_party/sqlite/src/ext/fts1/fulltext.c return (fulltext_vtab *) c->base.pVtab; c 980 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c; c 982 third_party/sqlite/src/ext/fts1/fulltext.c c = (fulltext_cursor *) calloc(sizeof(fulltext_cursor), 1); c 984 third_party/sqlite/src/ext/fts1/fulltext.c *ppCursor = &c->base; c 990 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 991 third_party/sqlite/src/ext/fts1/fulltext.c sqlite3_finalize(c->pStmt); c 992 third_party/sqlite/src/ext/fts1/fulltext.c if( c->result.pDoclist!=NULL ){ c 993 third_party/sqlite/src/ext/fts1/fulltext.c docListDelete(c->result.pDoclist); c 995 third_party/sqlite/src/ext/fts1/fulltext.c free(c); c 1000 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 1004 third_party/sqlite/src/ext/fts1/fulltext.c switch( c->iCursorType ){ c 1007 third_party/sqlite/src/ext/fts1/fulltext.c rc = sqlite3_step(c->pStmt); c 1010 third_party/sqlite/src/ext/fts1/fulltext.c c->eof = 0; c 1013 third_party/sqlite/src/ext/fts1/fulltext.c c->eof = 1; c 1016 third_party/sqlite/src/ext/fts1/fulltext.c c->eof = 1; c 1020 third_party/sqlite/src/ext/fts1/fulltext.c rc = sqlite3_reset(c->pStmt); c 1023 third_party/sqlite/src/ext/fts1/fulltext.c if( readerAtEnd(&c->result)){ c 1024 third_party/sqlite/src/ext/fts1/fulltext.c c->eof = 1; c 1027 third_party/sqlite/src/ext/fts1/fulltext.c iDocid = readDocid(&c->result); c 1028 third_party/sqlite/src/ext/fts1/fulltext.c rc = sqlite3_bind_int64(c->pStmt, 1, iDocid); c 1031 third_party/sqlite/src/ext/fts1/fulltext.c rc = sqlite3_step(c->pStmt); c 1033 third_party/sqlite/src/ext/fts1/fulltext.c c->eof = 0; c 1230 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 1231 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_vtab *v = cursor_vtab(c); c 1235 third_party/sqlite/src/ext/fts1/fulltext.c c->iCursorType = idxNum; c 1248 third_party/sqlite/src/ext/fts1/fulltext.c readerInit(&c->result, pResult); c 1257 third_party/sqlite/src/ext/fts1/fulltext.c rc = sql_prepare(v->db, v->zName, &c->pStmt, zStatement); c 1264 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 1265 third_party/sqlite/src/ext/fts1/fulltext.c return c->eof; c 1270 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 1274 third_party/sqlite/src/ext/fts1/fulltext.c s = (const char *) sqlite3_column_text(c->pStmt, 1); c 1281 third_party/sqlite/src/ext/fts1/fulltext.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 1283 third_party/sqlite/src/ext/fts1/fulltext.c *pRowid = sqlite3_column_int64(c->pStmt, 0); c 95 third_party/sqlite/src/ext/fts1/simple_tokenizer.c simple_tokenizer_cursor *c; c 97 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c = (simple_tokenizer_cursor *) malloc(sizeof(simple_tokenizer_cursor)); c 98 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->pInput = pInput; c 99 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->nBytes = nBytes<0 ? (int) strlen(pInput) : nBytes; c 100 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->pCurrent = c->pInput; /* start tokenizing at the beginning */ c 101 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->iToken = 0; c 102 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->zToken = NULL; /* no space allocated, yet. */ c 103 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->nTokenBytes = 0; c 104 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->nTokenAllocated = 0; c 106 third_party/sqlite/src/ext/fts1/simple_tokenizer.c *ppCursor = &c->base; c 111 third_party/sqlite/src/ext/fts1/simple_tokenizer.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 113 third_party/sqlite/src/ext/fts1/simple_tokenizer.c if( NULL!=c->zToken ){ c 114 third_party/sqlite/src/ext/fts1/simple_tokenizer.c free(c->zToken); c 116 third_party/sqlite/src/ext/fts1/simple_tokenizer.c free(c); c 126 third_party/sqlite/src/ext/fts1/simple_tokenizer.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 130 third_party/sqlite/src/ext/fts1/simple_tokenizer.c while( c->pCurrent-c->pInput<c->nBytes ){ c 131 third_party/sqlite/src/ext/fts1/simple_tokenizer.c int n = (int) strcspn(c->pCurrent, t->zDelim); c 133 third_party/sqlite/src/ext/fts1/simple_tokenizer.c if( n+1>c->nTokenAllocated ){ c 134 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->zToken = realloc(c->zToken, n+1); c 140 third_party/sqlite/src/ext/fts1/simple_tokenizer.c char ch = c->pCurrent[ii]; c 141 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->zToken[ii] = (unsigned char)ch<0x80 ? tolower(ch) : ch; c 143 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->zToken[n] = '\0'; c 144 third_party/sqlite/src/ext/fts1/simple_tokenizer.c *ppToken = c->zToken; c 146 third_party/sqlite/src/ext/fts1/simple_tokenizer.c *piStartOffset = (int) (c->pCurrent-c->pInput); c 148 third_party/sqlite/src/ext/fts1/simple_tokenizer.c *piPosition = c->iToken++; c 149 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->pCurrent += n + 1; c 153 third_party/sqlite/src/ext/fts1/simple_tokenizer.c c->pCurrent += n + 1; c 371 third_party/sqlite/src/ext/fts2/fts2.c static int safe_isspace(char c){ c 372 third_party/sqlite/src/ext/fts2/fts2.c return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; c 374 third_party/sqlite/src/ext/fts2/fts2.c static int safe_tolower(char c){ c 375 third_party/sqlite/src/ext/fts2/fts2.c return (c>='A' && c<='Z') ? (c - 'A' + 'a') : c; c 377 third_party/sqlite/src/ext/fts2/fts2.c static int safe_isalnum(char c){ c 378 third_party/sqlite/src/ext/fts2/fts2.c return (c>='0' && c<='9') || (c>='A' && c<='Z') || (c>='a' && c<='z'); c 840 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX]; c 850 third_party/sqlite/src/ext/fts2/fts2.c nFirstNew = putVarint(c, iFirstDocid-pWriter->iPrevDocid); c 863 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend2(pWriter->b, c, nFirstNew, c 866 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend(pWriter->b, c, nFirstNew); c 876 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX]; c 877 third_party/sqlite/src/ext/fts2/fts2.c int n = putVarint(c, iDocid-pWriter->iPrevDocid); c 883 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend(pWriter->b, c, n); c 1044 third_party/sqlite/src/ext/fts2/fts2.c char c[5*VARINT_MAX]; c 1053 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, POS_COLUMN); c 1054 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, iColumn); c 1060 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, POS_BASE+(iPos-pWriter->iPos)); c 1064 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, iStartOffset-pWriter->iOffset); c 1067 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, iEndOffset-iStartOffset); c 1069 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend(pWriter->dlw->b, c, n); c 1076 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX]; c 1083 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, iDocid-pWriter->dlw->iPrevDocid); c 1084 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend(pWriter->dlw->b, c, n); c 1104 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX]; c 1105 third_party/sqlite/src/ext/fts2/fts2.c int n = putVarint(c, POS_END); c 1106 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend(pWriter->dlw->b, c, n); c 1143 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX]; c 1144 third_party/sqlite/src/ext/fts2/fts2.c int n = putVarint(c, POS_END); c 1145 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend2(b, pCollector->b.pData, pCollector->b.nData, c, n); c 1421 third_party/sqlite/src/ext/fts2/fts2.c int c = posListCmp(&left, &right); c 1422 third_party/sqlite/src/ext/fts2/fts2.c if( c<0 ){ c 1426 third_party/sqlite/src/ext/fts2/fts2.c }else if( c>0 ){ c 2075 third_party/sqlite/src/ext/fts2/fts2.c static struct fulltext_vtab *cursor_vtab(fulltext_cursor *c){ c 2076 third_party/sqlite/src/ext/fts2/fts2.c return (fulltext_vtab *) c->base.pVtab; c 2604 third_party/sqlite/src/ext/fts2/fts2.c #define IdChar(C) (((c=C)&0x80)!=0 || (c>0x1f && isIdChar[c-0x20])) c 2612 third_party/sqlite/src/ext/fts2/fts2.c int i, c; c 2627 third_party/sqlite/src/ext/fts2/fts2.c for(i=1; (c=z[i])!=0; i++){ c 2628 third_party/sqlite/src/ext/fts2/fts2.c if( c==delim ){ c 2637 third_party/sqlite/src/ext/fts2/fts2.c return i + (c!=0); c 2640 third_party/sqlite/src/ext/fts2/fts2.c for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} c 3182 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c; c 3184 third_party/sqlite/src/ext/fts2/fts2.c c = (fulltext_cursor *) sqlite3_malloc(sizeof(fulltext_cursor)); c 3185 third_party/sqlite/src/ext/fts2/fts2.c if( c ){ c 3186 third_party/sqlite/src/ext/fts2/fts2.c memset(c, 0, sizeof(fulltext_cursor)); c 3188 third_party/sqlite/src/ext/fts2/fts2.c *ppCursor = &c->base; c 3189 third_party/sqlite/src/ext/fts2/fts2.c TRACE(("FTS2 Open %p: %p\n", pVTab, c)); c 3551 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 3552 third_party/sqlite/src/ext/fts2/fts2.c TRACE(("FTS2 Close %p\n", c)); c 3553 third_party/sqlite/src/ext/fts2/fts2.c sqlite3_finalize(c->pStmt); c 3554 third_party/sqlite/src/ext/fts2/fts2.c queryClear(&c->q); c 3555 third_party/sqlite/src/ext/fts2/fts2.c snippetClear(&c->snippet); c 3556 third_party/sqlite/src/ext/fts2/fts2.c if( c->result.nData!=0 ) dlrDestroy(&c->reader); c 3557 third_party/sqlite/src/ext/fts2/fts2.c dataBufferDestroy(&c->result); c 3558 third_party/sqlite/src/ext/fts2/fts2.c sqlite3_free(c); c 3563 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 3567 third_party/sqlite/src/ext/fts2/fts2.c snippetClear(&c->snippet); c 3568 third_party/sqlite/src/ext/fts2/fts2.c if( c->iCursorType < QUERY_FULLTEXT ){ c 3570 third_party/sqlite/src/ext/fts2/fts2.c rc = sqlite3_step(c->pStmt); c 3573 third_party/sqlite/src/ext/fts2/fts2.c c->eof = 0; c 3576 third_party/sqlite/src/ext/fts2/fts2.c c->eof = 1; c 3579 third_party/sqlite/src/ext/fts2/fts2.c c->eof = 1; c 3583 third_party/sqlite/src/ext/fts2/fts2.c rc = sqlite3_reset(c->pStmt); c 3586 third_party/sqlite/src/ext/fts2/fts2.c if( c->result.nData==0 || dlrAtEnd(&c->reader) ){ c 3587 third_party/sqlite/src/ext/fts2/fts2.c c->eof = 1; c 3590 third_party/sqlite/src/ext/fts2/fts2.c rc = sqlite3_bind_int64(c->pStmt, 1, dlrDocid(&c->reader)); c 3592 third_party/sqlite/src/ext/fts2/fts2.c rc = dlrStep(&c->reader); c 3595 third_party/sqlite/src/ext/fts2/fts2.c rc = sqlite3_step(c->pStmt); c 3597 third_party/sqlite/src/ext/fts2/fts2.c c->eof = 0; c 3993 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 3994 third_party/sqlite/src/ext/fts2/fts2.c fulltext_vtab *v = cursor_vtab(c); c 4004 third_party/sqlite/src/ext/fts2/fts2.c if( c->pStmt && c->iCursorType!=idxNum ){ c 4005 third_party/sqlite/src/ext/fts2/fts2.c sqlite3_finalize(c->pStmt); c 4006 third_party/sqlite/src/ext/fts2/fts2.c c->pStmt = NULL; c 4016 third_party/sqlite/src/ext/fts2/fts2.c if( !c->pStmt ){ c 4019 third_party/sqlite/src/ext/fts2/fts2.c rc = sql_prepare(v->db, v->zDb, v->zName, &c->pStmt, zSql); c 4022 third_party/sqlite/src/ext/fts2/fts2.c c->iCursorType = idxNum; c 4024 third_party/sqlite/src/ext/fts2/fts2.c sqlite3_reset(c->pStmt); c 4025 third_party/sqlite/src/ext/fts2/fts2.c assert( c->iCursorType==idxNum ); c 4033 third_party/sqlite/src/ext/fts2/fts2.c rc = sqlite3_bind_int64(c->pStmt, 1, sqlite3_value_int64(argv[0])); c 4042 third_party/sqlite/src/ext/fts2/fts2.c queryClear(&c->q); c 4043 third_party/sqlite/src/ext/fts2/fts2.c if( c->result.nData!=0 ){ c 4045 third_party/sqlite/src/ext/fts2/fts2.c dlrDestroy(&c->reader); c 4046 third_party/sqlite/src/ext/fts2/fts2.c dataBufferReset(&c->result); c 4048 third_party/sqlite/src/ext/fts2/fts2.c dataBufferInit(&c->result, 0); c 4050 third_party/sqlite/src/ext/fts2/fts2.c rc = fulltextQuery(v, idxNum-QUERY_FULLTEXT, zQuery, -1, &c->result, &c->q); c 4052 third_party/sqlite/src/ext/fts2/fts2.c if( c->result.nData!=0 ){ c 4053 third_party/sqlite/src/ext/fts2/fts2.c rc = dlrInit(&c->reader, DL_DOCIDS, c->result.pData, c->result.nData); c 4068 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 4069 third_party/sqlite/src/ext/fts2/fts2.c return c->eof; c 4080 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 4081 third_party/sqlite/src/ext/fts2/fts2.c fulltext_vtab *v = cursor_vtab(c); c 4084 third_party/sqlite/src/ext/fts2/fts2.c sqlite3_value *pVal = sqlite3_column_value(c->pStmt, idxCol+1); c 4090 third_party/sqlite/src/ext/fts2/fts2.c sqlite3_result_blob(pContext, &c, sizeof(c), SQLITE_TRANSIENT); c 4100 third_party/sqlite/src/ext/fts2/fts2.c fulltext_cursor *c = (fulltext_cursor *) pCursor; c 4102 third_party/sqlite/src/ext/fts2/fts2.c *pRowid = sqlite3_column_int64(c->pStmt, 0); c 4299 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX+VARINT_MAX]; c 4307 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, iHeight); c 4308 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, iChildBlock); c 4310 third_party/sqlite/src/ext/fts2/fts2.c dataBufferReplace(&block->data, c, n); c 4419 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX+VARINT_MAX]; c 4431 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, nTerm); c 4438 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, nPrefix); c 4439 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, nTerm-nPrefix); c 4458 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend2(&pWriter->last->data, c, n, c 4646 third_party/sqlite/src/ext/fts2/fts2.c int c, n = nReaderTerm<nTerm ? nReaderTerm : nTerm; c 4654 third_party/sqlite/src/ext/fts2/fts2.c c = memcmp(pReaderTerm, pTerm, n); c 4655 third_party/sqlite/src/ext/fts2/fts2.c if( c!=0 ) return c; c 4920 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX+VARINT_MAX]; c 4937 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, '\0'); c 4938 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, nTerm); c 4939 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend2(&pWriter->data, c, n, pTerm, nTerm); c 4946 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, nPrefix); c 4947 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, nTerm-nPrefix); c 4948 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend2(&pWriter->data, c, n, pTerm+nPrefix, nTerm-nPrefix); c 4963 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX+VARINT_MAX]; c 4964 third_party/sqlite/src/ext/fts2/fts2.c int iData, n = putVarint(c, 0); c 4965 third_party/sqlite/src/ext/fts2/fts2.c n += putVarint(c+n, nTerm); c 4975 third_party/sqlite/src/ext/fts2/fts2.c memcpy(pWriter->data.pData+iData, c, n); c 4987 third_party/sqlite/src/ext/fts2/fts2.c char c[VARINT_MAX+VARINT_MAX]; c 5005 third_party/sqlite/src/ext/fts2/fts2.c n = putVarint(c, nData); c 5006 third_party/sqlite/src/ext/fts2/fts2.c dataBufferAppend(&pWriter->data, c, n); c 5020 third_party/sqlite/src/ext/fts2/fts2.c nActual = putVarint(c, nActualData); c 5044 third_party/sqlite/src/ext/fts2/fts2.c memcpy(pWriter->data.pData+iDoclistData, c, nActual); c 5067 third_party/sqlite/src/ext/fts2/fts2.c memcpy(pWriter->data.pData+iDoclistData, c, nActual); c 5230 third_party/sqlite/src/ext/fts2/fts2.c int c, n = pReader->term.nData<nTerm ? pReader->term.nData : nTerm; c 5237 third_party/sqlite/src/ext/fts2/fts2.c c = memcmp(pReader->term.pData, pTerm, n); c 5238 third_party/sqlite/src/ext/fts2/fts2.c if( c!=0 ) return c; c 5455 third_party/sqlite/src/ext/fts2/fts2.c int c = leavesReaderTermCmp(lr1, lr2); c 5456 third_party/sqlite/src/ext/fts2/fts2.c if( c!=0 ) return c; c 5708 third_party/sqlite/src/ext/fts2/fts2.c int c = leafReaderTermCmp(&pReader->leafReader, pTerm, nTerm, isPrefix); c 5709 third_party/sqlite/src/ext/fts2/fts2.c if( c>0 ) break; /* Past any possible matches. */ c 5710 third_party/sqlite/src/ext/fts2/fts2.c if( c==0 ){ c 6146 third_party/sqlite/src/ext/fts2/fts2.c int c = memcmp(a->pTerm, b->pTerm, n); c 6147 third_party/sqlite/src/ext/fts2/fts2.c if( c!=0 ) return c; c 6441 third_party/sqlite/src/ext/fts2/fts2.c int c = optLeavesReaderTermCmp(lr1, lr2); c 6442 third_party/sqlite/src/ext/fts2/fts2.c if( c!=0 ) return c; c 109 third_party/sqlite/src/ext/fts2/fts2_icu.c UChar32 c; c 132 third_party/sqlite/src/ext/fts2/fts2_icu.c U8_NEXT(zInput, iInput, nInput, c); c 133 third_party/sqlite/src/ext/fts2/fts2_icu.c while( c>0 ){ c 135 third_party/sqlite/src/ext/fts2/fts2_icu.c c = u_foldCase(c, opt); c 136 third_party/sqlite/src/ext/fts2/fts2_icu.c U16_APPEND(pCsr->aChar, iOut, nChar, c, isError); c 144 third_party/sqlite/src/ext/fts2/fts2_icu.c U8_NEXT(zInput, iInput, nInput, c); c 146 third_party/sqlite/src/ext/fts2/fts2_icu.c c = 0; c 191 third_party/sqlite/src/ext/fts2/fts2_icu.c UChar32 c; c 201 third_party/sqlite/src/ext/fts2/fts2_icu.c U16_NEXT(pCsr->aChar, iWhite, pCsr->nChar, c); c 202 third_party/sqlite/src/ext/fts2/fts2_icu.c if( u_isspace(c) ){ c 94 third_party/sqlite/src/ext/fts2/fts2_porter.c porter_tokenizer_cursor *c; c 96 third_party/sqlite/src/ext/fts2/fts2_porter.c c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); c 97 third_party/sqlite/src/ext/fts2/fts2_porter.c if( c==NULL ) return SQLITE_NOMEM; c 99 third_party/sqlite/src/ext/fts2/fts2_porter.c c->zInput = zInput; c 101 third_party/sqlite/src/ext/fts2/fts2_porter.c c->nInput = 0; c 103 third_party/sqlite/src/ext/fts2/fts2_porter.c c->nInput = (int)strlen(zInput); c 105 third_party/sqlite/src/ext/fts2/fts2_porter.c c->nInput = nInput; c 107 third_party/sqlite/src/ext/fts2/fts2_porter.c c->iOffset = 0; /* start tokenizing at the beginning */ c 108 third_party/sqlite/src/ext/fts2/fts2_porter.c c->iToken = 0; c 109 third_party/sqlite/src/ext/fts2/fts2_porter.c c->zToken = NULL; /* no space allocated, yet. */ c 110 third_party/sqlite/src/ext/fts2/fts2_porter.c c->nAllocated = 0; c 112 third_party/sqlite/src/ext/fts2/fts2_porter.c *ppCursor = &c->base; c 121 third_party/sqlite/src/ext/fts2/fts2_porter.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 122 third_party/sqlite/src/ext/fts2/fts2_porter.c sqlite3_free(c->zToken); c 123 third_party/sqlite/src/ext/fts2/fts2_porter.c sqlite3_free(c); c 296 third_party/sqlite/src/ext/fts2/fts2_porter.c int c = zIn[i]; c 297 third_party/sqlite/src/ext/fts2/fts2_porter.c if( c>='A' && c<='Z' ){ c 298 third_party/sqlite/src/ext/fts2/fts2_porter.c zOut[i] = c - 'A' + 'a'; c 300 third_party/sqlite/src/ext/fts2/fts2_porter.c if( c>='0' && c<='9' ) hasDigit = 1; c 301 third_party/sqlite/src/ext/fts2/fts2_porter.c zOut[i] = c; c 340 third_party/sqlite/src/ext/fts2/fts2_porter.c int i, j, c; c 350 third_party/sqlite/src/ext/fts2/fts2_porter.c c = zIn[i]; c 351 third_party/sqlite/src/ext/fts2/fts2_porter.c if( c>='A' && c<='Z' ){ c 352 third_party/sqlite/src/ext/fts2/fts2_porter.c zReverse[j] = c + 'a' - 'A'; c 353 third_party/sqlite/src/ext/fts2/fts2_porter.c }else if( c>='a' && c<='z' ){ c 354 third_party/sqlite/src/ext/fts2/fts2_porter.c zReverse[j] = c; c 584 third_party/sqlite/src/ext/fts2/fts2_porter.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 585 third_party/sqlite/src/ext/fts2/fts2_porter.c const char *z = c->zInput; c 587 third_party/sqlite/src/ext/fts2/fts2_porter.c while( c->iOffset<c->nInput ){ c 591 third_party/sqlite/src/ext/fts2/fts2_porter.c while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ c 592 third_party/sqlite/src/ext/fts2/fts2_porter.c c->iOffset++; c 596 third_party/sqlite/src/ext/fts2/fts2_porter.c iStartOffset = c->iOffset; c 597 third_party/sqlite/src/ext/fts2/fts2_porter.c while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ c 598 third_party/sqlite/src/ext/fts2/fts2_porter.c c->iOffset++; c 601 third_party/sqlite/src/ext/fts2/fts2_porter.c if( c->iOffset>iStartOffset ){ c 602 third_party/sqlite/src/ext/fts2/fts2_porter.c int n = c->iOffset-iStartOffset; c 603 third_party/sqlite/src/ext/fts2/fts2_porter.c if( n>c->nAllocated ){ c 604 third_party/sqlite/src/ext/fts2/fts2_porter.c c->nAllocated = n+20; c 605 third_party/sqlite/src/ext/fts2/fts2_porter.c c->zToken = sqlite3_realloc(c->zToken, c->nAllocated); c 606 third_party/sqlite/src/ext/fts2/fts2_porter.c if( c->zToken==NULL ) return SQLITE_NOMEM; c 608 third_party/sqlite/src/ext/fts2/fts2_porter.c porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); c 609 third_party/sqlite/src/ext/fts2/fts2_porter.c *pzToken = c->zToken; c 611 third_party/sqlite/src/ext/fts2/fts2_porter.c *piEndOffset = c->iOffset; c 612 third_party/sqlite/src/ext/fts2/fts2_porter.c *piPosition = c->iToken++; c 54 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c static int simpleDelim(simple_tokenizer *t, unsigned char c){ c 55 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c return c<0x80 && t->delim[c]; c 119 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c simple_tokenizer_cursor *c; c 121 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); c 122 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c if( c==NULL ) return SQLITE_NOMEM; c 124 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->pInput = pInput; c 126 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->nBytes = 0; c 128 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->nBytes = (int)strlen(pInput); c 130 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->nBytes = nBytes; c 132 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->iOffset = 0; /* start tokenizing at the beginning */ c 133 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->iToken = 0; c 134 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->pToken = NULL; /* no space allocated, yet. */ c 135 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->nTokenAllocated = 0; c 137 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c *ppCursor = &c->base; c 146 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 147 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c sqlite3_free(c->pToken); c 148 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c sqlite3_free(c); c 164 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 166 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c unsigned char *p = (unsigned char *)c->pInput; c 168 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c while( c->iOffset<c->nBytes ){ c 172 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ c 173 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->iOffset++; c 177 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c iStartOffset = c->iOffset; c 178 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ c 179 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->iOffset++; c 182 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c if( c->iOffset>iStartOffset ){ c 183 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c int i, n = c->iOffset-iStartOffset; c 184 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c if( n>c->nTokenAllocated ){ c 185 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->nTokenAllocated = n+20; c 186 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->pToken = sqlite3_realloc(c->pToken, c->nTokenAllocated); c 187 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c if( c->pToken==NULL ) return SQLITE_NOMEM; c 194 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c c->pToken[i] = (ch>='A' && ch<='Z') ? (ch - 'A' + 'a') : ch; c 196 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c *ppToken = c->pToken; c 199 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c *piEndOffset = c->iOffset; c 200 third_party/sqlite/src/ext/fts2/fts2_tokenizer1.c *piPosition = c->iToken++; c 1384 third_party/sqlite/src/ext/fts3/fts3.c char c = 0; c 1396 third_party/sqlite/src/ext/fts3/fts3.c while( *pEnd | c ){ c 1397 third_party/sqlite/src/ext/fts3/fts3.c c = *pEnd++ & 0x80; c 1398 third_party/sqlite/src/ext/fts3/fts3.c testcase( c!=0 && (*pEnd)==0 ); c 1431 third_party/sqlite/src/ext/fts3/fts3.c char c = 0; c 1436 third_party/sqlite/src/ext/fts3/fts3.c while( 0xFE & (*pEnd | c) ){ c 1437 third_party/sqlite/src/ext/fts3/fts3.c c = *pEnd++ & 0x80; c 1438 third_party/sqlite/src/ext/fts3/fts3.c testcase( c!=0 && ((*pEnd)&0xfe)==0 ); c 105 third_party/sqlite/src/ext/fts3/fts3_expr.c static int fts3isspace(char c){ c 106 third_party/sqlite/src/ext/fts3/fts3_expr.c return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; c 109 third_party/sqlite/src/ext/fts3/fts3_icu.c UChar32 c; c 132 third_party/sqlite/src/ext/fts3/fts3_icu.c U8_NEXT(zInput, iInput, nInput, c); c 133 third_party/sqlite/src/ext/fts3/fts3_icu.c while( c>0 ){ c 135 third_party/sqlite/src/ext/fts3/fts3_icu.c c = u_foldCase(c, opt); c 136 third_party/sqlite/src/ext/fts3/fts3_icu.c U16_APPEND(pCsr->aChar, iOut, nChar, c, isError); c 144 third_party/sqlite/src/ext/fts3/fts3_icu.c U8_NEXT(zInput, iInput, nInput, c); c 146 third_party/sqlite/src/ext/fts3/fts3_icu.c c = 0; c 191 third_party/sqlite/src/ext/fts3/fts3_icu.c UChar32 c; c 201 third_party/sqlite/src/ext/fts3/fts3_icu.c U16_NEXT(pCsr->aChar, iWhite, pCsr->nChar, c); c 202 third_party/sqlite/src/ext/fts3/fts3_icu.c if( u_isspace(c) ){ c 95 third_party/sqlite/src/ext/fts3/fts3_porter.c porter_tokenizer_cursor *c; c 99 third_party/sqlite/src/ext/fts3/fts3_porter.c c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); c 100 third_party/sqlite/src/ext/fts3/fts3_porter.c if( c==NULL ) return SQLITE_NOMEM; c 102 third_party/sqlite/src/ext/fts3/fts3_porter.c c->zInput = zInput; c 104 third_party/sqlite/src/ext/fts3/fts3_porter.c c->nInput = 0; c 106 third_party/sqlite/src/ext/fts3/fts3_porter.c c->nInput = (int)strlen(zInput); c 108 third_party/sqlite/src/ext/fts3/fts3_porter.c c->nInput = nInput; c 110 third_party/sqlite/src/ext/fts3/fts3_porter.c c->iOffset = 0; /* start tokenizing at the beginning */ c 111 third_party/sqlite/src/ext/fts3/fts3_porter.c c->iToken = 0; c 112 third_party/sqlite/src/ext/fts3/fts3_porter.c c->zToken = NULL; /* no space allocated, yet. */ c 113 third_party/sqlite/src/ext/fts3/fts3_porter.c c->nAllocated = 0; c 115 third_party/sqlite/src/ext/fts3/fts3_porter.c *ppCursor = &c->base; c 124 third_party/sqlite/src/ext/fts3/fts3_porter.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 125 third_party/sqlite/src/ext/fts3/fts3_porter.c sqlite3_free(c->zToken); c 126 third_party/sqlite/src/ext/fts3/fts3_porter.c sqlite3_free(c); c 299 third_party/sqlite/src/ext/fts3/fts3_porter.c char c = zIn[i]; c 300 third_party/sqlite/src/ext/fts3/fts3_porter.c if( c>='A' && c<='Z' ){ c 301 third_party/sqlite/src/ext/fts3/fts3_porter.c zOut[i] = c - 'A' + 'a'; c 303 third_party/sqlite/src/ext/fts3/fts3_porter.c if( c>='0' && c<='9' ) hasDigit = 1; c 304 third_party/sqlite/src/ext/fts3/fts3_porter.c zOut[i] = c; c 353 third_party/sqlite/src/ext/fts3/fts3_porter.c char c = zIn[i]; c 354 third_party/sqlite/src/ext/fts3/fts3_porter.c if( c>='A' && c<='Z' ){ c 355 third_party/sqlite/src/ext/fts3/fts3_porter.c zReverse[j] = c + 'a' - 'A'; c 356 third_party/sqlite/src/ext/fts3/fts3_porter.c }else if( c>='a' && c<='z' ){ c 357 third_party/sqlite/src/ext/fts3/fts3_porter.c zReverse[j] = c; c 587 third_party/sqlite/src/ext/fts3/fts3_porter.c porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; c 588 third_party/sqlite/src/ext/fts3/fts3_porter.c const char *z = c->zInput; c 590 third_party/sqlite/src/ext/fts3/fts3_porter.c while( c->iOffset<c->nInput ){ c 594 third_party/sqlite/src/ext/fts3/fts3_porter.c while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ c 595 third_party/sqlite/src/ext/fts3/fts3_porter.c c->iOffset++; c 599 third_party/sqlite/src/ext/fts3/fts3_porter.c iStartOffset = c->iOffset; c 600 third_party/sqlite/src/ext/fts3/fts3_porter.c while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ c 601 third_party/sqlite/src/ext/fts3/fts3_porter.c c->iOffset++; c 604 third_party/sqlite/src/ext/fts3/fts3_porter.c if( c->iOffset>iStartOffset ){ c 605 third_party/sqlite/src/ext/fts3/fts3_porter.c int n = c->iOffset-iStartOffset; c 606 third_party/sqlite/src/ext/fts3/fts3_porter.c if( n>c->nAllocated ){ c 608 third_party/sqlite/src/ext/fts3/fts3_porter.c c->nAllocated = n+20; c 609 third_party/sqlite/src/ext/fts3/fts3_porter.c pNew = sqlite3_realloc(c->zToken, c->nAllocated); c 611 third_party/sqlite/src/ext/fts3/fts3_porter.c c->zToken = pNew; c 613 third_party/sqlite/src/ext/fts3/fts3_porter.c porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); c 614 third_party/sqlite/src/ext/fts3/fts3_porter.c *pzToken = c->zToken; c 616 third_party/sqlite/src/ext/fts3/fts3_porter.c *piEndOffset = c->iOffset; c 617 third_party/sqlite/src/ext/fts3/fts3_porter.c *piPosition = c->iToken++; c 762 third_party/sqlite/src/ext/fts3/fts3_snippet.c char c = 0; c 766 third_party/sqlite/src/ext/fts3/fts3_snippet.c while( 0xFE & (*pEnd | c) ){ c 767 third_party/sqlite/src/ext/fts3/fts3_snippet.c c = *pEnd++ & 0x80; c 768 third_party/sqlite/src/ext/fts3/fts3_snippet.c if( !c ) nEntry++; c 100 third_party/sqlite/src/ext/fts3/fts3_tokenizer.c int sqlite3Fts3IsIdChar(char c){ c 111 third_party/sqlite/src/ext/fts3/fts3_tokenizer.c return (c&0x80 || isFtsIdChar[(int)(c)]); c 121 third_party/sqlite/src/ext/fts3/fts3_tokenizer.c char c = *z1; c 122 third_party/sqlite/src/ext/fts3/fts3_tokenizer.c switch( c ){ c 128 third_party/sqlite/src/ext/fts3/fts3_tokenizer.c while( *++z2 && (*z2!=c || *++z2==c) ); c 52 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c static int simpleDelim(simple_tokenizer *t, unsigned char c){ c 53 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c return c<0x80 && t->delim[c]; c 119 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c simple_tokenizer_cursor *c; c 123 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); c 124 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c if( c==NULL ) return SQLITE_NOMEM; c 126 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->pInput = pInput; c 128 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->nBytes = 0; c 130 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->nBytes = (int)strlen(pInput); c 132 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->nBytes = nBytes; c 134 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->iOffset = 0; /* start tokenizing at the beginning */ c 135 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->iToken = 0; c 136 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->pToken = NULL; /* no space allocated, yet. */ c 137 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->nTokenAllocated = 0; c 139 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c *ppCursor = &c->base; c 148 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 149 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c sqlite3_free(c->pToken); c 150 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c sqlite3_free(c); c 166 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; c 168 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c unsigned char *p = (unsigned char *)c->pInput; c 170 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c while( c->iOffset<c->nBytes ){ c 174 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ c 175 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->iOffset++; c 179 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c iStartOffset = c->iOffset; c 180 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ c 181 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->iOffset++; c 184 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c if( c->iOffset>iStartOffset ){ c 185 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c int i, n = c->iOffset-iStartOffset; c 186 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c if( n>c->nTokenAllocated ){ c 188 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->nTokenAllocated = n+20; c 189 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated); c 191 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->pToken = pNew; c 198 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c c->pToken[i] = (char)((ch>='A' && ch<='Z') ? ch-'A'+'a' : ch); c 200 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c *ppToken = c->pToken; c 203 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c *piEndOffset = c->iOffset; c 204 third_party/sqlite/src/ext/fts3/fts3_tokenizer1.c *piPosition = c->iToken++; c 1028 third_party/sqlite/src/ext/fts3/fts3_write.c char c = 0; c 1034 third_party/sqlite/src/ext/fts3/fts3_write.c while( *p | c ) c = *p++ & 0x80; c 1222 third_party/sqlite/src/ext/fts3/fts3_write.c int c = memcmp(z1, z2, n); c 1223 third_party/sqlite/src/ext/fts3/fts3_write.c if( c==0 ){ c 1224 third_party/sqlite/src/ext/fts3/fts3_write.c c = n1 - n2; c 1226 third_party/sqlite/src/ext/fts3/fts3_write.c return c; c 2007 third_party/sqlite/src/ext/fts3/fts3_write.c char c = 0; c 2008 third_party/sqlite/src/ext/fts3/fts3_write.c while( p<pEnd && (c | *p)&0xFE ) c = *p++ & 0x80; c 97 third_party/sqlite/src/ext/icu/icu.c uint8_t c; c 103 third_party/sqlite/src/ext/icu/icu.c while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){ c 104 third_party/sqlite/src/ext/icu/icu.c if( c==MATCH_ONE ){ c 1150 third_party/sqlite/src/ext/rtree/rtree.c RtreeCoord c; c 1151 third_party/sqlite/src/ext/rtree/rtree.c nodeGetCoord(pRtree, pCsr->pNode, pCsr->iCell, i-1, &c); c 1153 third_party/sqlite/src/ext/rtree/rtree.c sqlite3_result_double(ctx, c.f); c 1156 third_party/sqlite/src/ext/rtree/rtree.c sqlite3_result_int(ctx, c.i); c 3152 third_party/sqlite/src/ext/rtree/rtree.c void *c = (void *)RTREE_COORD_REAL32; c 3153 third_party/sqlite/src/ext/rtree/rtree.c rc = sqlite3_create_module_v2(db, "rtree", &rtreeModule, c, 0); c 3156 third_party/sqlite/src/ext/rtree/rtree.c void *c = (void *)RTREE_COORD_INT32; c 3157 third_party/sqlite/src/ext/rtree/rtree.c rc = sqlite3_create_module_v2(db, "rtree_i32", &rtreeModule, c, 0); c 520 third_party/sqlite/src/src/analyze.c int i, c, n; c 543 third_party/sqlite/src/src/analyze.c while( (c=z[0])>='0' && c<='9' ){ c 544 third_party/sqlite/src/src/analyze.c v = v*10 + c - '0'; c 88 third_party/sqlite/src/src/btree.c #define querySharedCacheTableLock(a,b,c) SQLITE_OK c 89 third_party/sqlite/src/src/btree.c #define setSharedCacheTableLock(a,b,c) SQLITE_OK c 92 third_party/sqlite/src/src/btree.c #define hasSharedCacheTableLock(a,b,c,d) 1 c 4451 third_party/sqlite/src/src/btree.c int c; c 4482 third_party/sqlite/src/src/btree.c c = 0; c 4484 third_party/sqlite/src/src/btree.c c = -1; c 4487 third_party/sqlite/src/src/btree.c c = +1; c 4505 third_party/sqlite/src/src/btree.c c = sqlite3VdbeRecordCompare(nCell, (void*)&pCell[1], pIdxKey); c 4511 third_party/sqlite/src/src/btree.c c = sqlite3VdbeRecordCompare(nCell, (void*)&pCell[2], pIdxKey); c 4531 third_party/sqlite/src/src/btree.c c = sqlite3VdbeRecordCompare(nCell, pCellKey, pIdxKey); c 4535 third_party/sqlite/src/src/btree.c if( c==0 ){ c 4546 third_party/sqlite/src/src/btree.c if( c<0 ){ c 4567 third_party/sqlite/src/src/btree.c *pRes = c; c 31 third_party/sqlite/src/src/complete.c #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) c 183 third_party/sqlite/src/src/complete.c int c = *zSql; c 185 third_party/sqlite/src/src/complete.c while( *zSql && *zSql!=c ){ zSql++; } c 192 third_party/sqlite/src/src/complete.c unsigned char c; c 155 third_party/sqlite/src/src/date.c int c; c 158 third_party/sqlite/src/src/date.c c = *zDate; c 159 third_party/sqlite/src/src/date.c if( c=='-' ){ c 161 third_party/sqlite/src/src/date.c }else if( c=='+' ){ c 163 third_party/sqlite/src/src/date.c }else if( c=='Z' || c=='z' ){ c 167 third_party/sqlite/src/src/date.c return c!=0; c 404 third_party/sqlite/src/src/expr.c int c; c 409 third_party/sqlite/src/src/expr.c && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ c 411 third_party/sqlite/src/src/expr.c if( c=='"' ) pNew->flags |= EP_DblQuoted; c 1957 third_party/sqlite/src/src/expr.c int c; c 1961 third_party/sqlite/src/src/expr.c c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); c 1962 third_party/sqlite/src/src/expr.c if( c==0 || (c==2 && negFlag) ){ c 1964 third_party/sqlite/src/src/expr.c if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } c 557 third_party/sqlite/src/src/func.c int c, c2; c 566 third_party/sqlite/src/src/func.c while( (c = sqlite3Utf8Read(zPattern,&zPattern))!=0 ){ c 567 third_party/sqlite/src/src/func.c if( !prevEscape && c==matchAll ){ c 568 third_party/sqlite/src/src/func.c while( (c=sqlite3Utf8Read(zPattern,&zPattern)) == matchAll c 569 third_party/sqlite/src/src/func.c || c == matchOne ){ c 570 third_party/sqlite/src/src/func.c if( c==matchOne && sqlite3Utf8Read(zString, &zString)==0 ){ c 574 third_party/sqlite/src/src/func.c if( c==0 ){ c 576 third_party/sqlite/src/src/func.c }else if( c==esc ){ c 577 third_party/sqlite/src/src/func.c c = sqlite3Utf8Read(zPattern, &zPattern); c 578 third_party/sqlite/src/src/func.c if( c==0 ){ c 581 third_party/sqlite/src/src/func.c }else if( c==matchSet ){ c 592 third_party/sqlite/src/src/func.c GlogUpperToLower(c); c 593 third_party/sqlite/src/src/func.c while( c2 != 0 && c2 != c ){ c 598 third_party/sqlite/src/src/func.c while( c2 != 0 && c2 != c ){ c 606 third_party/sqlite/src/src/func.c }else if( !prevEscape && c==matchOne ){ c 610 third_party/sqlite/src/src/func.c }else if( c==matchSet ){ c 615 third_party/sqlite/src/src/func.c c = sqlite3Utf8Read(zString, &zString); c 616 third_party/sqlite/src/src/func.c if( c==0 ) return 0; c 623 third_party/sqlite/src/src/func.c if( c==']' ) seen = 1; c 629 third_party/sqlite/src/src/func.c if( c>=prior_c && c<=c2 ) seen = 1; c 632 third_party/sqlite/src/src/func.c if( c==c2 ){ c 642 third_party/sqlite/src/src/func.c }else if( esc==c && !prevEscape ){ c 647 third_party/sqlite/src/src/func.c GlogUpperToLower(c); c 650 third_party/sqlite/src/src/func.c if( c!=c2 ){ c 922 third_party/sqlite/src/src/func.c unsigned char c = *pBlob; c 923 third_party/sqlite/src/src/func.c *(z++) = hexdigits[(c>>4)&0xf]; c 924 third_party/sqlite/src/src/func.c *(z++) = hexdigits[c&0xf]; c 1734 third_party/sqlite/src/src/os_os2.c static unsigned c = 0; c 1742 third_party/sqlite/src/src/os_os2.c c += 0x0100; c 1744 third_party/sqlite/src/src/os_os2.c dt.year = (USHORT)((dt.year - 1900) | c); c 321 third_party/sqlite/src/src/os_unix.c #define osFstat(a,b,c) 0 c 975 third_party/sqlite/src/src/os_unix.c #define unixLogError(a,b,c) unixLogErrorAtLine(a,b,c,__LINE__) c 5693 third_party/sqlite/src/src/os_unix.c char c = dbPath[i]; c 5694 third_party/sqlite/src/src/os_unix.c lPath[i+len] = (c=='/')?'_':c; c 76 third_party/sqlite/src/src/os_win.c # define FormatMessageW(a,b,c,d,e,f,g) 0 c 335 third_party/sqlite/src/src/os_win.c #define LockFile(a,b,c,d,e) winceLockFile(&a, b, c, d, e) c 336 third_party/sqlite/src/src/os_win.c #define UnlockFile(a,b,c,d,e) winceUnlockFile(&a, b, c, d, e) c 337 third_party/sqlite/src/src/os_win.c #define LockFileEx(a,b,c,d,e,f) winceLockFileEx(&a, b, c, d, e, f) c 1258 third_party/sqlite/src/src/pager.c i64 c = pPager->journalOff; c 1259 third_party/sqlite/src/src/pager.c if( c ){ c 1260 third_party/sqlite/src/src/pager.c offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager); c 1263 third_party/sqlite/src/src/pager.c assert( offset>=c ); c 1264 third_party/sqlite/src/src/pager.c assert( (offset-c)<JOURNAL_HDR_SZ(pPager) ); c 2415 third_party/sqlite/src/src/pager.c int c; c 2428 third_party/sqlite/src/src/pager.c c = zMasterPtr[0]!=0 && strcmp(zMasterPtr, zMaster)==0; c 2429 third_party/sqlite/src/src/pager.c if( c ){ c 159 third_party/sqlite/src/src/pcache1.c #define PAGE_TO_PGHDR1(c, p) (PgHdr1*)(((char*)p) + c->szPage) c 234 third_party/sqlite/src/src/printf.c int c; /* Next character in the format string */ c 267 third_party/sqlite/src/src/printf.c for(; (c=(*fmt))!=0; ++fmt){ c 268 third_party/sqlite/src/src/printf.c if( c!='%' ){ c 272 third_party/sqlite/src/src/printf.c while( (c=(*++fmt))!='%' && c!=0 ) amt++; c 274 third_party/sqlite/src/src/printf.c if( c==0 ) break; c 276 third_party/sqlite/src/src/printf.c if( (c=(*++fmt))==0 ){ c 285 third_party/sqlite/src/src/printf.c switch( c ){ c 294 third_party/sqlite/src/src/printf.c }while( !done && (c=(*++fmt))!=0 ); c 297 third_party/sqlite/src/src/printf.c if( c=='*' ){ c 303 third_party/sqlite/src/src/printf.c c = *++fmt; c 305 third_party/sqlite/src/src/printf.c while( c>='0' && c<='9' ){ c 306 third_party/sqlite/src/src/printf.c width = width*10 + c - '0'; c 307 third_party/sqlite/src/src/printf.c c = *++fmt; c 314 third_party/sqlite/src/src/printf.c if( c=='.' ){ c 316 third_party/sqlite/src/src/printf.c c = *++fmt; c 317 third_party/sqlite/src/src/printf.c if( c=='*' ){ c 320 third_party/sqlite/src/src/printf.c c = *++fmt; c 322 third_party/sqlite/src/src/printf.c while( c>='0' && c<='9' ){ c 323 third_party/sqlite/src/src/printf.c precision = precision*10 + c - '0'; c 324 third_party/sqlite/src/src/printf.c c = *++fmt; c 331 third_party/sqlite/src/src/printf.c if( c=='l' ){ c 333 third_party/sqlite/src/src/printf.c c = *++fmt; c 334 third_party/sqlite/src/src/printf.c if( c=='l' ){ c 336 third_party/sqlite/src/src/printf.c c = *++fmt; c 347 third_party/sqlite/src/src/printf.c if( c==fmtinfo[idx].fmttype ){ c 627 third_party/sqlite/src/src/printf.c c = va_arg(ap,int); c 628 third_party/sqlite/src/src/printf.c buf[0] = (char)c; c 630 third_party/sqlite/src/src/printf.c for(idx=1; idx<precision; idx++) buf[idx] = (char)c; c 344 third_party/sqlite/src/src/recover.c static int ascii_isspace(char c){ c 346 third_party/sqlite/src/src/recover.c return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; c 3648 third_party/sqlite/src/src/select.c # define explainSimpleCount(a,b,c) c 519 third_party/sqlite/src/src/shell.c unsigned int c; c 521 third_party/sqlite/src/src/shell.c while( (c = *(z++))!=0 ){ c 522 third_party/sqlite/src/src/shell.c if( c=='\\' ){ c 523 third_party/sqlite/src/src/shell.c fputc(c, out); c 524 third_party/sqlite/src/src/shell.c fputc(c, out); c 525 third_party/sqlite/src/src/shell.c }else if( c=='\t' ){ c 528 third_party/sqlite/src/src/shell.c }else if( c=='\n' ){ c 531 third_party/sqlite/src/src/shell.c }else if( c=='\r' ){ c 534 third_party/sqlite/src/src/shell.c }else if( !isprint(c) ){ c 535 third_party/sqlite/src/src/shell.c fprintf(out, "\\%03o", c&0xff); c 537 third_party/sqlite/src/src/shell.c fputc(c, out); c 1405 third_party/sqlite/src/src/shell.c char c; c 1406 third_party/sqlite/src/src/shell.c for(i=j=0; (c = z[i])!=0; i++, j++){ c 1407 third_party/sqlite/src/src/shell.c if( c=='\\' ){ c 1408 third_party/sqlite/src/src/shell.c c = z[++i]; c 1409 third_party/sqlite/src/src/shell.c if( c=='n' ){ c 1410 third_party/sqlite/src/src/shell.c c = '\n'; c 1411 third_party/sqlite/src/src/shell.c }else if( c=='t' ){ c 1412 third_party/sqlite/src/src/shell.c c = '\t'; c 1413 third_party/sqlite/src/src/shell.c }else if( c=='r' ){ c 1414 third_party/sqlite/src/src/shell.c c = '\r'; c 1415 third_party/sqlite/src/src/shell.c }else if( c>='0' && c<='7' ){ c 1416 third_party/sqlite/src/src/shell.c c -= '0'; c 1419 third_party/sqlite/src/src/shell.c c = (c<<3) + z[i] - '0'; c 1422 third_party/sqlite/src/src/shell.c c = (c<<3) + z[i] - '0'; c 1427 third_party/sqlite/src/src/shell.c z[j] = c; c 1458 third_party/sqlite/src/src/shell.c int n, c; c 1487 third_party/sqlite/src/src/shell.c c = azArg[0][0]; c 1488 third_party/sqlite/src/src/shell.c if( c=='b' && n>=3 && strncmp(azArg[0], "backup", n)==0 && nArg>1 && nArg<4){ c 1524 third_party/sqlite/src/src/shell.c if( c=='b' && n>=3 && strncmp(azArg[0], "bail", n)==0 && nArg>1 && nArg<3 ){ c 1528 third_party/sqlite/src/src/shell.c if( c=='d' && n>1 && strncmp(azArg[0], "databases", n)==0 && nArg==1 ){ c 1547 third_party/sqlite/src/src/shell.c if( c=='d' && strncmp(azArg[0], "dump", n)==0 && nArg<3 ){ c 1600 third_party/sqlite/src/src/shell.c if( c=='e' && strncmp(azArg[0], "echo", n)==0 && nArg>1 && nArg<3 ){ c 1604 third_party/sqlite/src/src/shell.c if( c=='e' && strncmp(azArg[0], "exit", n)==0 && nArg==1 ){ c 1608 third_party/sqlite/src/src/shell.c if( c=='e' && strncmp(azArg[0], "explain", n)==0 && nArg<3 ){ c 1643 third_party/sqlite/src/src/shell.c if( c=='h' && (strncmp(azArg[0], "header", n)==0 || c 1648 third_party/sqlite/src/src/shell.c if( c=='h' && strncmp(azArg[0], "help", n)==0 ){ c 1655 third_party/sqlite/src/src/shell.c if( c=='i' && strncmp(azArg[0], "import", n)==0 && nArg==3 ){ c 1772 third_party/sqlite/src/src/shell.c if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg<3 ){ c 1813 third_party/sqlite/src/src/shell.c if( c=='i' && strncmp(azArg[0], "iotrace", n)==0 ){ c 1836 third_party/sqlite/src/src/shell.c if( c=='l' && strncmp(azArg[0], "load", n)==0 && nArg>=2 ){ c 1851 third_party/sqlite/src/src/shell.c if( c=='l' && strncmp(azArg[0], "log", n)==0 && nArg>=2 ){ c 1871 third_party/sqlite/src/src/shell.c if( c=='m' && strncmp(azArg[0], "mode", n)==0 && nArg==2 ){ c 1903 third_party/sqlite/src/src/shell.c if( c=='m' && strncmp(azArg[0], "mode", n)==0 && nArg==3 ){ c 1915 third_party/sqlite/src/src/shell.c if( c=='n' && strncmp(azArg[0], "nullvalue", n)==0 && nArg==2 ) { c 1920 third_party/sqlite/src/src/shell.c if( c=='o' && strncmp(azArg[0], "output", n)==0 && nArg==2 ){ c 1939 third_party/sqlite/src/src/shell.c if( c=='p' && strncmp(azArg[0], "prompt", n)==0 && (nArg==2 || nArg==3)){ c 1948 third_party/sqlite/src/src/shell.c if( c=='q' && strncmp(azArg[0], "quit", n)==0 && nArg==1 ){ c 1952 third_party/sqlite/src/src/shell.c if( c=='r' && n>=3 && strncmp(azArg[0], "read", n)==0 && nArg==2 ){ c 1963 third_party/sqlite/src/src/shell.c if( c=='r' && n>=3 && strncmp(azArg[0], "restore", n)==0 && nArg>1 && nArg<4){ c 2010 third_party/sqlite/src/src/shell.c if( c=='s' && strncmp(azArg[0], "schema", n)==0 && nArg<3 ){ c 2083 third_party/sqlite/src/src/shell.c if( c=='s' && strncmp(azArg[0], "separator", n)==0 && nArg==2 ){ c 2088 third_party/sqlite/src/src/shell.c if( c=='s' && strncmp(azArg[0], "show", n)==0 && nArg==1 ){ c 2110 third_party/sqlite/src/src/shell.c if( c=='s' && strncmp(azArg[0], "stats", n)==0 && nArg>1 && nArg<3 ){ c 2114 third_party/sqlite/src/src/shell.c if( c=='t' && n>1 && strncmp(azArg[0], "tables", n)==0 && nArg<3 ){ c 2172 third_party/sqlite/src/src/shell.c if( c=='t' && n>=8 && strncmp(azArg[0], "testctrl", n)==0 && nArg>=2 ){ c 2294 third_party/sqlite/src/src/shell.c if( c=='t' && n>4 && strncmp(azArg[0], "timeout", n)==0 && nArg==2 ){ c 2299 third_party/sqlite/src/src/shell.c if( HAS_TIMER && c=='t' && n>=5 && strncmp(azArg[0], "timer", n)==0 c 2305 third_party/sqlite/src/src/shell.c if( c=='w' && strncmp(azArg[0], "width", n)==0 && nArg>1 ){ c 2707 third_party/sqlite/src/src/shell.c int j, c; c 2713 third_party/sqlite/src/src/shell.c for(j=0; (c = zSize[j])!=0; j++){ c 2714 third_party/sqlite/src/src/shell.c if( c=='M' ){ szHeap *= 1000000; break; } c 2715 third_party/sqlite/src/src/shell.c if( c=='K' ){ szHeap *= 1000; break; } c 2716 third_party/sqlite/src/src/shell.c if( c=='G' ){ szHeap *= 1000000000; break; } c 2868 third_party/sqlite/src/src/sqliteInt.h # define sqlite3AuthRead(a,b,c,d) c 2869 third_party/sqlite/src/src/sqliteInt.h # define sqlite3AuthCheck(a,b,c,d,e) SQLITE_OK c 2870 third_party/sqlite/src/src/sqliteInt.h # define sqlite3AuthContextPush(a,b,c) c 3103 third_party/sqlite/src/src/sqliteInt.h #define sqlite3FkActions(a,b,c,d) c 3104 third_party/sqlite/src/src/sqliteInt.h #define sqlite3FkCheck(a,b,c,d) c 3105 third_party/sqlite/src/src/sqliteInt.h #define sqlite3FkDropTable(a,b,c) c 3107 third_party/sqlite/src/src/sqliteInt.h #define sqlite3FkRequired(a,b,c,d) 0 c 401 third_party/sqlite/src/src/tclsqlite.c int c = *(z++); c 402 third_party/sqlite/src/src/tclsqlite.c if( c=='$' || c=='[' || c==';' ) return 0; c 809 third_party/sqlite/src/src/tclsqlite.c char c = zType[0]; c 810 third_party/sqlite/src/src/tclsqlite.c if( c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0 ){ c 815 third_party/sqlite/src/src/tclsqlite.c }else if( c=='b' && strcmp(zType,"boolean")==0 ){ c 818 third_party/sqlite/src/src/tclsqlite.c }else if( c=='d' && strcmp(zType,"double")==0 ){ c 822 third_party/sqlite/src/src/tclsqlite.c }else if( (c=='w' && strcmp(zType,"wideInt")==0) || c 823 third_party/sqlite/src/src/tclsqlite.c (c=='i' && strcmp(zType,"int")==0) ){ c 1144 third_party/sqlite/src/src/tclsqlite.c char c = zType[0]; c 1146 third_party/sqlite/src/src/tclsqlite.c (c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0) ){ c 1154 third_party/sqlite/src/src/tclsqlite.c }else if( c=='b' && strcmp(zType,"boolean")==0 ){ c 1157 third_party/sqlite/src/src/tclsqlite.c }else if( c=='d' && strcmp(zType,"double")==0 ){ c 1161 third_party/sqlite/src/src/tclsqlite.c }else if( (c=='w' && strcmp(zType,"wideInt")==0) || c 1162 third_party/sqlite/src/src/tclsqlite.c (c=='i' && strcmp(zType,"int")==0) ){ c 1486 third_party/sqlite/src/src/tclsqlite.c # define Tcl_NRAddCallback(a,b,c,d,e,f) 0 c 1487 third_party/sqlite/src/src/tclsqlite.c # define Tcl_NREvalObj(a,b,c) 0 c 1488 third_party/sqlite/src/src/tclsqlite.c # define Tcl_NRCreateCommand(a,b,c,d,e,f) 0 c 2998 third_party/sqlite/src/src/tclsqlite.c # define Tcl_InitStubs(a,b,c) c 3133 third_party/sqlite/src/src/tclsqlite.c register uint32 a, b, c, d; c 3137 third_party/sqlite/src/src/tclsqlite.c c = buf[2]; c 3140 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7); c 3141 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12); c 3142 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17); c 3143 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22); c 3144 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7); c 3145 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12); c 3146 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17); c 3147 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22); c 3148 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7); c 3149 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12); c 3150 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17); c 3151 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22); c 3152 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7); c 3153 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12); c 3154 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17); c 3155 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22); c 3157 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5); c 3158 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9); c 3159 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14); c 3160 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20); c 3161 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5); c 3162 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9); c 3163 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14); c 3164 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20); c 3165 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5); c 3166 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9); c 3167 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14); c 3168 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20); c 3169 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5); c 3170 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9); c 3171 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14); c 3172 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20); c 3174 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4); c 3175 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11); c 3176 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16); c 3177 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23); c 3178 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4); c 3179 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11); c 3180 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16); c 3181 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23); c 3182 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4); c 3183 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11); c 3184 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16); c 3185 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23); c 3186 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4); c 3187 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11); c 3188 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16); c 3189 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23); c 3191 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); c 3192 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); c 3193 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); c 3194 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); c 3195 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); c 3196 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); c 3197 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); c 3198 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); c 3199 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6); c 3200 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10); c 3201 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15); c 3202 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21); c 3203 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6); c 3204 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10); c 3205 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15); c 3206 third_party/sqlite/src/src/tclsqlite.c MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21); c 3210 third_party/sqlite/src/src/tclsqlite.c buf[2] += c; c 159 third_party/sqlite/src/src/test_func.c static void test_agg_errmsg16_step(sqlite3_context *a, int b,sqlite3_value **c){ c 322 third_party/sqlite/src/src/test_func.c static int testHexChar(char c){ c 323 third_party/sqlite/src/src/test_func.c if( c>='0' && c<='9' ){ c 324 third_party/sqlite/src/src/test_func.c return c - '0'; c 325 third_party/sqlite/src/src/test_func.c }else if( c>='a' && c<='f' ){ c 326 third_party/sqlite/src/src/test_func.c return c - 'a' + 10; c 327 third_party/sqlite/src/src/test_func.c }else if( c>='A' && c<='F' ){ c 328 third_party/sqlite/src/src/test_func.c return c - 'A' + 10; c 486 third_party/sqlite/src/src/test_func.c static void tStep(sqlite3_context *a, int b, sqlite3_value **c){} c 35 third_party/sqlite/src/src/test_hexio.c unsigned char c; c 39 third_party/sqlite/src/src/test_hexio.c c = zBuf[j]; c 40 third_party/sqlite/src/src/test_hexio.c zBuf[i--] = zHex[c&0xf]; c 41 third_party/sqlite/src/src/test_hexio.c zBuf[i--] = zHex[c>>4]; c 73 third_party/sqlite/src/src/test_hexio.c unsigned char c; c 76 third_party/sqlite/src/src/test_hexio.c c = aMap[zIn[i]]; c 77 third_party/sqlite/src/src/test_hexio.c if( c==0 ) continue; c 79 third_party/sqlite/src/src/test_hexio.c aOut[j] = (c-1)<<4; c 82 third_party/sqlite/src/src/test_hexio.c aOut[j++] |= c-1; c 141 third_party/sqlite/src/src/test_init.c static void wrPCacheRekey(sqlite3_pcache *p, void *a, unsigned b, unsigned c){ c 142 third_party/sqlite/src/src/test_init.c wrapped.pcache.xRekey(p, a, b, c); c 1433 third_party/sqlite/src/src/test_malloc.c ClientData c = (ClientData)aObjCmd[i].clientData; c 1434 third_party/sqlite/src/src/test_malloc.c Tcl_CreateObjCommand(interp, aObjCmd[i].zName, aObjCmd[i].xProc, c, 0); c 427 third_party/sqlite/src/src/test_multiplex.c static int multiplexAccess(sqlite3_vfs *a, const char *b, int c, int *d){ c 428 third_party/sqlite/src/src/test_multiplex.c return gMultiplex.pOrigVfs->xAccess(gMultiplex.pOrigVfs, b, c, d); c 430 third_party/sqlite/src/src/test_multiplex.c static int multiplexFullPathname(sqlite3_vfs *a, const char *b, int c, char *d){ c 431 third_party/sqlite/src/src/test_multiplex.c return gMultiplex.pOrigVfs->xFullPathname(gMultiplex.pOrigVfs, b, c, d); c 436 third_party/sqlite/src/src/test_multiplex.c static void multiplexDlError(sqlite3_vfs *a, int b, char *c){ c 437 third_party/sqlite/src/src/test_multiplex.c gMultiplex.pOrigVfs->xDlError(gMultiplex.pOrigVfs, b, c); c 439 third_party/sqlite/src/src/test_multiplex.c static void (*multiplexDlSym(sqlite3_vfs *a, void *b, const char *c))(void){ c 440 third_party/sqlite/src/src/test_multiplex.c return gMultiplex.pOrigVfs->xDlSym(gMultiplex.pOrigVfs, b, c); c 445 third_party/sqlite/src/src/test_multiplex.c static int multiplexRandomness(sqlite3_vfs *a, int b, char *c){ c 446 third_party/sqlite/src/src/test_multiplex.c return gMultiplex.pOrigVfs->xRandomness(gMultiplex.pOrigVfs, b, c); c 454 third_party/sqlite/src/src/test_multiplex.c static int multiplexGetLastError(sqlite3_vfs *a, int b, char *c){ c 455 third_party/sqlite/src/src/test_multiplex.c return gMultiplex.pOrigVfs->xGetLastError(gMultiplex.pOrigVfs, b, c); c 196 third_party/sqlite/src/src/test_quota.c int c, c2; c 200 third_party/sqlite/src/src/test_quota.c while( (c = (*(zGlob++)))!=0 ){ c 201 third_party/sqlite/src/src/test_quota.c if( c=='*' ){ c 202 third_party/sqlite/src/src/test_quota.c while( (c=(*(zGlob++))) == '*' || c=='?' ){ c 203 third_party/sqlite/src/src/test_quota.c if( c=='?' && (*(z++))==0 ) return 0; c 205 third_party/sqlite/src/src/test_quota.c if( c==0 ){ c 207 third_party/sqlite/src/src/test_quota.c }else if( c=='[' ){ c 214 third_party/sqlite/src/src/test_quota.c while( c2!=c ){ c 221 third_party/sqlite/src/src/test_quota.c }else if( c=='?' ){ c 223 third_party/sqlite/src/src/test_quota.c }else if( c=='[' ){ c 227 third_party/sqlite/src/src/test_quota.c c = *(z++); c 228 third_party/sqlite/src/src/test_quota.c if( c==0 ) return 0; c 235 third_party/sqlite/src/src/test_quota.c if( c==']' ) seen = 1; c 241 third_party/sqlite/src/src/test_quota.c if( c>=prior_c && c<=c2 ) seen = 1; c 244 third_party/sqlite/src/src/test_quota.c if( c==c2 ){ c 253 third_party/sqlite/src/src/test_quota.c if( c!=(*(z++)) ) return 0; c 103 third_party/sqlite/src/src/tokenize.c #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) c 112 third_party/sqlite/src/src/tokenize.c int i, c; c 127 third_party/sqlite/src/src/tokenize.c for(i=2; (c=z[i])!=0 && c!='\n'; i++){} c 160 third_party/sqlite/src/src/tokenize.c for(i=3, c=z[2]; (c!='*' || z[i]!='/') && (c=z[i])!=0; i++){} c 161 third_party/sqlite/src/src/tokenize.c if( c ) i++; c 174 third_party/sqlite/src/src/tokenize.c if( (c=z[1])=='=' ){ c 177 third_party/sqlite/src/src/tokenize.c }else if( c=='>' ){ c 180 third_party/sqlite/src/src/tokenize.c }else if( c=='<' ){ c 189 third_party/sqlite/src/src/tokenize.c if( (c=z[1])=='=' ){ c 192 third_party/sqlite/src/src/tokenize.c }else if( c=='>' ){ c 237 third_party/sqlite/src/src/tokenize.c for(i=1; (c=z[i])!=0; i++){ c 238 third_party/sqlite/src/src/tokenize.c if( c==delim ){ c 246 third_party/sqlite/src/src/tokenize.c if( c=='\'' ){ c 249 third_party/sqlite/src/src/tokenize.c }else if( c!=0 ){ c 299 third_party/sqlite/src/src/tokenize.c for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} c 300 third_party/sqlite/src/src/tokenize.c *tokenType = c==']' ? TK_ID : TK_ILLEGAL; c 327 third_party/sqlite/src/src/tokenize.c for(i=1; (c=z[i])!=0; i++){ c 328 third_party/sqlite/src/src/tokenize.c if( IdChar(c) ){ c 331 third_party/sqlite/src/src/tokenize.c }else if( c=='(' && n>0 ){ c 334 third_party/sqlite/src/src/tokenize.c }while( (c=z[i])!=0 && !sqlite3Isspace(c) && c!=')' ); c 335 third_party/sqlite/src/src/tokenize.c if( c==')' ){ c 341 third_party/sqlite/src/src/tokenize.c }else if( c==':' && z[i+1]==':' ){ c 356 third_party/sqlite/src/src/tokenize.c for(i=2; (c=z[i])!=0 && c!='\''; i++){ c 357 third_party/sqlite/src/src/tokenize.c if( !sqlite3Isxdigit(c) ){ c 361 third_party/sqlite/src/src/tokenize.c if( i%2 || !c ) *tokenType = TK_ILLEGAL; c 362 third_party/sqlite/src/src/tokenize.c if( c ) i++; c 64 third_party/sqlite/src/src/utf.c #define WRITE_UTF8(zOut, c) { \ c 65 third_party/sqlite/src/src/utf.c if( c<0x00080 ){ \ c 66 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(c&0xFF); \ c 68 third_party/sqlite/src/src/utf.c else if( c<0x00800 ){ \ c 69 third_party/sqlite/src/src/utf.c *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ c 70 third_party/sqlite/src/src/utf.c *zOut++ = 0x80 + (u8)(c & 0x3F); \ c 72 third_party/sqlite/src/src/utf.c else if( c<0x10000 ){ \ c 73 third_party/sqlite/src/src/utf.c *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ c 74 third_party/sqlite/src/src/utf.c *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ c 75 third_party/sqlite/src/src/utf.c *zOut++ = 0x80 + (u8)(c & 0x3F); \ c 77 third_party/sqlite/src/src/utf.c *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ c 78 third_party/sqlite/src/src/utf.c *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ c 79 third_party/sqlite/src/src/utf.c *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ c 80 third_party/sqlite/src/src/utf.c *zOut++ = 0x80 + (u8)(c & 0x3F); \ c 84 third_party/sqlite/src/src/utf.c #define WRITE_UTF16LE(zOut, c) { \ c 85 third_party/sqlite/src/src/utf.c if( c<=0xFFFF ){ \ c 86 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(c&0x00FF); \ c 87 third_party/sqlite/src/src/utf.c *zOut++ = (u8)((c>>8)&0x00FF); \ c 89 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ c 90 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ c 91 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(c&0x00FF); \ c 92 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ c 96 third_party/sqlite/src/src/utf.c #define WRITE_UTF16BE(zOut, c) { \ c 97 third_party/sqlite/src/src/utf.c if( c<=0xFFFF ){ \ c 98 third_party/sqlite/src/src/utf.c *zOut++ = (u8)((c>>8)&0x00FF); \ c 99 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(c&0x00FF); \ c 101 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ c 102 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ c 103 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ c 104 third_party/sqlite/src/src/utf.c *zOut++ = (u8)(c&0x00FF); \ c 108 third_party/sqlite/src/src/utf.c #define READ_UTF16LE(zIn, TERM, c){ \ c 109 third_party/sqlite/src/src/utf.c c = (*zIn++); \ c 110 third_party/sqlite/src/src/utf.c c += ((*zIn++)<<8); \ c 111 third_party/sqlite/src/src/utf.c if( c>=0xD800 && c<0xE000 && TERM ){ \ c 114 third_party/sqlite/src/src/utf.c c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \ c 118 third_party/sqlite/src/src/utf.c #define READ_UTF16BE(zIn, TERM, c){ \ c 119 third_party/sqlite/src/src/utf.c c = ((*zIn++)<<8); \ c 120 third_party/sqlite/src/src/utf.c c += (*zIn++); \ c 121 third_party/sqlite/src/src/utf.c if( c>=0xD800 && c<0xE000 && TERM ){ \ c 124 third_party/sqlite/src/src/utf.c c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \ c 155 third_party/sqlite/src/src/utf.c #define READ_UTF8(zIn, zTerm, c) \ c 156 third_party/sqlite/src/src/utf.c c = *(zIn++); \ c 157 third_party/sqlite/src/src/utf.c if( c>=0xc0 ){ \ c 158 third_party/sqlite/src/src/utf.c c = sqlite3Utf8Trans1[c-0xc0]; \ c 160 third_party/sqlite/src/src/utf.c c = (c<<6) + (0x3f & *(zIn++)); \ c 162 third_party/sqlite/src/src/utf.c if( c<0x80 \ c 163 third_party/sqlite/src/src/utf.c || (c&0xFFFFF800)==0xD800 \ c 164 third_party/sqlite/src/src/utf.c || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ c 170 third_party/sqlite/src/src/utf.c unsigned int c; c 175 third_party/sqlite/src/src/utf.c c = *(zIn++); c 176 third_party/sqlite/src/src/utf.c if( c>=0xc0 ){ c 177 third_party/sqlite/src/src/utf.c c = sqlite3Utf8Trans1[c-0xc0]; c 179 third_party/sqlite/src/src/utf.c c = (c<<6) + (0x3f & *(zIn++)); c 181 third_party/sqlite/src/src/utf.c if( c<0x80 c 182 third_party/sqlite/src/src/utf.c || (c&0xFFFFF800)==0xD800 c 183 third_party/sqlite/src/src/utf.c || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } c 186 third_party/sqlite/src/src/utf.c return c; c 210 third_party/sqlite/src/src/utf.c unsigned int c; c 287 third_party/sqlite/src/src/utf.c READ_UTF8(zIn, zTerm, c); c 288 third_party/sqlite/src/src/utf.c WRITE_UTF16LE(z, c); c 295 third_party/sqlite/src/src/utf.c READ_UTF8(zIn, zTerm, c); c 296 third_party/sqlite/src/src/utf.c WRITE_UTF16BE(z, c); c 306 third_party/sqlite/src/src/utf.c READ_UTF16LE(zIn, zIn<zTerm, c); c 307 third_party/sqlite/src/src/utf.c WRITE_UTF8(z, c); c 312 third_party/sqlite/src/src/utf.c READ_UTF16BE(zIn, zIn<zTerm, c); c 313 third_party/sqlite/src/src/utf.c WRITE_UTF8(z, c); c 419 third_party/sqlite/src/src/utf.c u32 c; c 422 third_party/sqlite/src/src/utf.c c = sqlite3Utf8Read(zIn, (const u8**)&zIn); c 423 third_party/sqlite/src/src/utf.c if( c!=0xfffd ){ c 424 third_party/sqlite/src/src/utf.c WRITE_UTF8(zOut, c); c 489 third_party/sqlite/src/src/utf.c int c; c 495 third_party/sqlite/src/src/utf.c READ_UTF16BE(z, 1, c); c 500 third_party/sqlite/src/src/utf.c READ_UTF16LE(z, 1, c); c 518 third_party/sqlite/src/src/utf.c unsigned int c; c 527 third_party/sqlite/src/src/utf.c c = sqlite3Utf8Read(z, (const u8**)&z); c 531 third_party/sqlite/src/src/utf.c assert( c==t ); c 542 third_party/sqlite/src/src/utf.c READ_UTF16LE(z, 1, c); c 543 third_party/sqlite/src/src/utf.c assert( c==i ); c 554 third_party/sqlite/src/src/utf.c READ_UTF16BE(z, 1, c); c 555 third_party/sqlite/src/src/utf.c assert( c==i ); c 426 third_party/sqlite/src/src/util.c int c = 0; c 430 third_party/sqlite/src/src/util.c for(i=0; c==0 && i<18; i++){ c 431 third_party/sqlite/src/src/util.c c = (zNum[i*incr]-pow63[i])*10; c 433 third_party/sqlite/src/src/util.c if( c==0 ){ c 434 third_party/sqlite/src/src/util.c c = zNum[18*incr] - '8'; c 435 third_party/sqlite/src/src/util.c testcase( c==(-1) ); c 436 third_party/sqlite/src/src/util.c testcase( c==0 ); c 437 third_party/sqlite/src/src/util.c testcase( c==(+1) ); c 439 third_party/sqlite/src/src/util.c return c; c 465 third_party/sqlite/src/src/util.c int c = 0; c 480 third_party/sqlite/src/src/util.c for(i=0; &zNum[i]<zEnd && (c=zNum[i])>='0' && c<='9'; i+=incr){ c 481 third_party/sqlite/src/src/util.c u = u*10 + c - '0'; c 493 third_party/sqlite/src/src/util.c if( (c!=0 && &zNum[i]<zEnd) || (i==0 && zStart==zNum) || i>19*incr ){ c 503 third_party/sqlite/src/src/util.c c = compare2pow63(zNum, incr); c 504 third_party/sqlite/src/src/util.c if( c<0 ){ c 508 third_party/sqlite/src/src/util.c }else if( c>0 ){ c 531 third_party/sqlite/src/src/util.c int i, c; c 540 third_party/sqlite/src/src/util.c for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){ c 541 third_party/sqlite/src/src/util.c v = v*10 + c; c 349 third_party/sqlite/src/src/vdbe.c char c; c 351 third_party/sqlite/src/src/vdbe.c c = 'z'; c 354 third_party/sqlite/src/src/vdbe.c c = 't'; c 357 third_party/sqlite/src/src/vdbe.c c = 'e'; c 360 third_party/sqlite/src/src/vdbe.c c = 's'; c 363 third_party/sqlite/src/src/vdbe.c sqlite3_snprintf(100, zCsr, "%c", c); c 404 third_party/sqlite/src/src/vdbe.c u8 c = pMem->z[j]; c 405 third_party/sqlite/src/src/vdbe.c if( c>=0x20 && c<0x7f ){ c 406 third_party/sqlite/src/src/vdbe.c zBuf[k++] = c; c 2020 third_party/sqlite/src/src/vdbe.c int c; c 2023 third_party/sqlite/src/src/vdbe.c c = pOp->p3; c 2026 third_party/sqlite/src/src/vdbe.c c = sqlite3VdbeIntValue(pIn1)!=0; c 2028 third_party/sqlite/src/src/vdbe.c c = sqlite3VdbeRealValue(pIn1)!=0.0; c 2030 third_party/sqlite/src/src/vdbe.c if( pOp->opcode==OP_IfNot ) c = !c; c 2032 third_party/sqlite/src/src/vdbe.c if( c ){ c 540 third_party/sqlite/src/src/where.c u16 c; c 543 third_party/sqlite/src/src/where.c c = WO_IN; c 545 third_party/sqlite/src/src/where.c c = WO_ISNULL; c 548 third_party/sqlite/src/src/where.c c = (u16)(WO_EQ<<(op-TK_EQ)); c 550 third_party/sqlite/src/src/where.c assert( op!=TK_ISNULL || c==WO_ISNULL ); c 551 third_party/sqlite/src/src/where.c assert( op!=TK_IN || c==WO_IN ); c 552 third_party/sqlite/src/src/where.c assert( op!=TK_EQ || c==WO_EQ ); c 553 third_party/sqlite/src/src/where.c assert( op!=TK_LT || c==WO_LT ); c 554 third_party/sqlite/src/src/where.c assert( op!=TK_LE || c==WO_LE ); c 555 third_party/sqlite/src/src/where.c assert( op!=TK_GT || c==WO_GT ); c 556 third_party/sqlite/src/src/where.c assert( op!=TK_GE || c==WO_GE ); c 557 third_party/sqlite/src/src/where.c return c; c 650 third_party/sqlite/src/src/where.c int c; /* One character in z[] */ c 691 third_party/sqlite/src/src/where.c while( (c=z[cnt])!=0 && c!=wc[0] && c!=wc[1] && c!=wc[2] ){ c 696 third_party/sqlite/src/src/where.c *pisComplete = c==wc[0] && z[cnt+1]==0; c 1258 third_party/sqlite/src/src/where.c u8 c, *pC; /* Last character before the first wildcard */ c 1260 third_party/sqlite/src/src/where.c c = *pC; c 1268 third_party/sqlite/src/src/where.c if( c=='A'-1 ) isComplete = 0; /* EV: R-64339-08207 */ c 1271 third_party/sqlite/src/src/where.c c = sqlite3UpperToLower[c]; c 1273 third_party/sqlite/src/src/where.c *pC = c + 1; c 2334 third_party/sqlite/src/src/where.c int c; c 2348 third_party/sqlite/src/src/where.c c = pColl->xCmp(pColl->pUser, nSample, zSample, n, z); c 2353 third_party/sqlite/src/src/where.c c = pColl->xCmp(pColl->pUser, aSample[i].nByte, aSample[i].u.z, n, z); c 2355 third_party/sqlite/src/src/where.c if( c-roundUp>=0 ) break; c 152 third_party/sqlite/src/test/threadtest3.c register uint32 a, b, c, d; c 156 third_party/sqlite/src/test/threadtest3.c c = buf[2]; c 159 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7); c 160 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12); c 161 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17); c 162 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22); c 163 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7); c 164 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, d, a, b, c, in[ 5]+0x4787c62a, 12); c 165 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, c, d, a, b, in[ 6]+0xa8304613, 17); c 166 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, b, c, d, a, in[ 7]+0xfd469501, 22); c 167 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, a, b, c, d, in[ 8]+0x698098d8, 7); c 168 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, d, a, b, c, in[ 9]+0x8b44f7af, 12); c 169 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, c, d, a, b, in[10]+0xffff5bb1, 17); c 170 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, b, c, d, a, in[11]+0x895cd7be, 22); c 171 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, a, b, c, d, in[12]+0x6b901122, 7); c 172 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, d, a, b, c, in[13]+0xfd987193, 12); c 173 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, c, d, a, b, in[14]+0xa679438e, 17); c 174 third_party/sqlite/src/test/threadtest3.c MD5STEP(F1, b, c, d, a, in[15]+0x49b40821, 22); c 176 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, a, b, c, d, in[ 1]+0xf61e2562, 5); c 177 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, d, a, b, c, in[ 6]+0xc040b340, 9); c 178 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, c, d, a, b, in[11]+0x265e5a51, 14); c 179 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, b, c, d, a, in[ 0]+0xe9b6c7aa, 20); c 180 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, a, b, c, d, in[ 5]+0xd62f105d, 5); c 181 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, d, a, b, c, in[10]+0x02441453, 9); c 182 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, c, d, a, b, in[15]+0xd8a1e681, 14); c 183 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, b, c, d, a, in[ 4]+0xe7d3fbc8, 20); c 184 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, a, b, c, d, in[ 9]+0x21e1cde6, 5); c 185 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, d, a, b, c, in[14]+0xc33707d6, 9); c 186 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, c, d, a, b, in[ 3]+0xf4d50d87, 14); c 187 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, b, c, d, a, in[ 8]+0x455a14ed, 20); c 188 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, a, b, c, d, in[13]+0xa9e3e905, 5); c 189 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, d, a, b, c, in[ 2]+0xfcefa3f8, 9); c 190 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, c, d, a, b, in[ 7]+0x676f02d9, 14); c 191 third_party/sqlite/src/test/threadtest3.c MD5STEP(F2, b, c, d, a, in[12]+0x8d2a4c8a, 20); c 193 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, a, b, c, d, in[ 5]+0xfffa3942, 4); c 194 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, d, a, b, c, in[ 8]+0x8771f681, 11); c 195 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, c, d, a, b, in[11]+0x6d9d6122, 16); c 196 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, b, c, d, a, in[14]+0xfde5380c, 23); c 197 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, a, b, c, d, in[ 1]+0xa4beea44, 4); c 198 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, d, a, b, c, in[ 4]+0x4bdecfa9, 11); c 199 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, c, d, a, b, in[ 7]+0xf6bb4b60, 16); c 200 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, b, c, d, a, in[10]+0xbebfbc70, 23); c 201 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, a, b, c, d, in[13]+0x289b7ec6, 4); c 202 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, d, a, b, c, in[ 0]+0xeaa127fa, 11); c 203 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, c, d, a, b, in[ 3]+0xd4ef3085, 16); c 204 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, b, c, d, a, in[ 6]+0x04881d05, 23); c 205 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, a, b, c, d, in[ 9]+0xd9d4d039, 4); c 206 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, d, a, b, c, in[12]+0xe6db99e5, 11); c 207 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, c, d, a, b, in[15]+0x1fa27cf8, 16); c 208 third_party/sqlite/src/test/threadtest3.c MD5STEP(F3, b, c, d, a, in[ 2]+0xc4ac5665, 23); c 210 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, a, b, c, d, in[ 0]+0xf4292244, 6); c 211 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, d, a, b, c, in[ 7]+0x432aff97, 10); c 212 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, c, d, a, b, in[14]+0xab9423a7, 15); c 213 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, b, c, d, a, in[ 5]+0xfc93a039, 21); c 214 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, a, b, c, d, in[12]+0x655b59c3, 6); c 215 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, d, a, b, c, in[ 3]+0x8f0ccc92, 10); c 216 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, c, d, a, b, in[10]+0xffeff47d, 15); c 217 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, b, c, d, a, in[ 1]+0x85845dd1, 21); c 218 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, a, b, c, d, in[ 8]+0x6fa87e4f, 6); c 219 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, d, a, b, c, in[15]+0xfe2ce6e0, 10); c 220 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, c, d, a, b, in[ 6]+0xa3014314, 15); c 221 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, b, c, d, a, in[13]+0x4e0811a1, 21); c 222 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, a, b, c, d, in[ 4]+0xf7537e82, 6); c 223 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, d, a, b, c, in[11]+0xbd3af235, 10); c 224 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, c, d, a, b, in[ 2]+0x2ad7d2bb, 15); c 225 third_party/sqlite/src/test/threadtest3.c MD5STEP(F4, b, c, d, a, in[ 9]+0xeb86d391, 21); c 229 third_party/sqlite/src/test/threadtest3.c buf[2] += c; c 2520 third_party/sqlite/src/tool/lemon.c int c; c 2562 third_party/sqlite/src/tool/lemon.c for(cp=filebuf; (c= *cp)!=0; ){ c 2563 third_party/sqlite/src/tool/lemon.c if( c=='\n' ) lineno++; /* Keep track of the line number */ c 2564 third_party/sqlite/src/tool/lemon.c if( isspace(c) ){ cp++; continue; } /* Skip all white space */ c 2565 third_party/sqlite/src/tool/lemon.c if( c=='/' && cp[1]=='/' ){ /* Skip C++ style comments */ c 2567 third_party/sqlite/src/tool/lemon.c while( (c= *cp)!=0 && c!='\n' ) cp++; c 2570 third_party/sqlite/src/tool/lemon.c if( c=='/' && cp[1]=='*' ){ /* Skip C style comments */ c 2572 third_party/sqlite/src/tool/lemon.c while( (c= *cp)!=0 && (c!='/' || cp[-1]!='*') ){ c 2573 third_party/sqlite/src/tool/lemon.c if( c=='\n' ) lineno++; c 2576 third_party/sqlite/src/tool/lemon.c if( c ) cp++; c 2581 third_party/sqlite/src/tool/lemon.c if( c=='\"' ){ /* String literals */ c 2583 third_party/sqlite/src/tool/lemon.c while( (c= *cp)!=0 && c!='\"' ){ c 2584 third_party/sqlite/src/tool/lemon.c if( c=='\n' ) lineno++; c 2587 third_party/sqlite/src/tool/lemon.c if( c==0 ){ c 2595 third_party/sqlite/src/tool/lemon.c }else if( c=='{' ){ /* A block of C code */ c 2598 third_party/sqlite/src/tool/lemon.c for(level=1; (c= *cp)!=0 && (level>1 || c!='}'); cp++){ c 2599 third_party/sqlite/src/tool/lemon.c if( c=='\n' ) lineno++; c 2600 third_party/sqlite/src/tool/lemon.c else if( c=='{' ) level++; c 2601 third_party/sqlite/src/tool/lemon.c else if( c=='}' ) level--; c 2602 third_party/sqlite/src/tool/lemon.c else if( c=='/' && cp[1]=='*' ){ /* Skip comments */ c 2606 third_party/sqlite/src/tool/lemon.c while( (c= *cp)!=0 && (c!='/' || prevc!='*') ){ c 2607 third_party/sqlite/src/tool/lemon.c if( c=='\n' ) lineno++; c 2608 third_party/sqlite/src/tool/lemon.c prevc = c; c 2611 third_party/sqlite/src/tool/lemon.c }else if( c=='/' && cp[1]=='/' ){ /* Skip C++ style comments too */ c 2613 third_party/sqlite/src/tool/lemon.c while( (c= *cp)!=0 && c!='\n' ) cp++; c 2614 third_party/sqlite/src/tool/lemon.c if( c ) lineno++; c 2615 third_party/sqlite/src/tool/lemon.c }else if( c=='\'' || c=='\"' ){ /* String a character literals */ c 2617 third_party/sqlite/src/tool/lemon.c startchar = c; c 2619 third_party/sqlite/src/tool/lemon.c for(cp++; (c= *cp)!=0 && (c!=startchar || prevc=='\\'); cp++){ c 2620 third_party/sqlite/src/tool/lemon.c if( c=='\n' ) lineno++; c 2622 third_party/sqlite/src/tool/lemon.c else prevc = c; c 2626 third_party/sqlite/src/tool/lemon.c if( c==0 ){ c 2634 third_party/sqlite/src/tool/lemon.c }else if( isalnum(c) ){ /* Identifiers */ c 2635 third_party/sqlite/src/tool/lemon.c while( (c= *cp)!=0 && (isalnum(c) || c=='_') ) cp++; c 2637 third_party/sqlite/src/tool/lemon.c }else if( c==':' && cp[1]==':' && cp[2]=='=' ){ /* The operator "::=" */ c 2640 third_party/sqlite/src/tool/lemon.c }else if( (c=='/' || c=='|') && isalpha(cp[1]) ){ c 2642 third_party/sqlite/src/tool/lemon.c while( (c = *cp)!=0 && (isalnum(c) || c=='_') ) cp++; c 2648 third_party/sqlite/src/tool/lemon.c c = *cp; c 2651 third_party/sqlite/src/tool/lemon.c *cp = c; /* Restore the buffer */ c 3010 third_party/sqlite/src/tool/lemon.c char c; c 3018 third_party/sqlite/src/tool/lemon.c c = *cp; c 3022 third_party/sqlite/src/tool/lemon.c *cp = c; c 3034 third_party/sqlite/src/tool/lemon.c c = *cp; c 3037 third_party/sqlite/src/tool/lemon.c *cp = c; c 3038 third_party/sqlite/src/tool/lemon.c if( c==0 ) pathbuf[0] = 0; c 3259 third_party/sqlite/src/tool/lemon.c int c; c 3278 third_party/sqlite/src/tool/lemon.c c = *(zText++); c 3279 third_party/sqlite/src/tool/lemon.c if( c=='%' && n>0 && zText[0]=='d' ){ c 3287 third_party/sqlite/src/tool/lemon.c z[used++] = c; c 3572 third_party/sqlite/src/tool/lemon.c int c; c 3573 third_party/sqlite/src/tool/lemon.c c = p2->nAction - p1->nAction; c 3574 third_party/sqlite/src/tool/lemon.c if( c==0 ){ c 3575 third_party/sqlite/src/tool/lemon.c c = p2->iOrder - p1->iOrder; c 3577 third_party/sqlite/src/tool/lemon.c assert( c!=0 || p1==p2 ); c 3578 third_party/sqlite/src/tool/lemon.c return c; c 137 third_party/sqlite/src/tool/speedtest16.c char c = zSql[j+1]; c 140 third_party/sqlite/src/tool/speedtest16.c zSql[j+1] = c; c 207 third_party/sqlite/src/tool/speedtest8.c char c = zSql[j+1]; c 210 third_party/sqlite/src/tool/speedtest8.c zSql[j+1] = c; c 194 third_party/sqlite/src/tool/speedtest8inst1.c char c = zSql[j+1]; c 197 third_party/sqlite/src/tool/speedtest8inst1.c zSql[j+1] = c; c 191 third_party/talloc/libreplace/crypt.c #define ascii_to_bin(c) ((c)>='a'?(c-59):(c)>='A'?((c)-53):(c)-'.') c 192 third_party/talloc/libreplace/crypt.c #define bin_to_ascii(c) ((c)>=38?((c)-38+'a'):(c)>=12?((c)-12+'A'):(c)+'.') c 518 third_party/talloc/libreplace/crypt.c long c=ascii_to_bin(s2[i]); c 519 third_party/talloc/libreplace/crypt.c if(c < 0 || c > 63) c 520 third_party/talloc/libreplace/crypt.c c = 0; c 522 third_party/talloc/libreplace/crypt.c if((c >> j) & 0x1) c 235 third_party/talloc/libreplace/snprintf.c static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c); c 1102 third_party/talloc/libreplace/snprintf.c static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c) c 1105 third_party/talloc/libreplace/snprintf.c buffer[(*currlen)] = c; c 1138 third_party/talloc/libreplace/snprintf.c struct pr_chunk **c; c 1171 third_party/talloc/libreplace/snprintf.c c = (struct pr_chunk **)malloc(sizeof(struct pr_chunk *) * cnum); c 1173 third_party/talloc/libreplace/snprintf.c c = (struct pr_chunk **)realloc(l[i].chunks, sizeof(struct pr_chunk *) * cnum); c 1175 third_party/talloc/libreplace/snprintf.c if (c == NULL) { c 1181 third_party/talloc/libreplace/snprintf.c c[l[i].num] = chunk; c 1182 third_party/talloc/libreplace/snprintf.c l[i].chunks = c; c 929 third_party/talloc/libreplace/test/testsuite.c #define CMP_VAL(a,c,b) do { \ c 930 third_party/talloc/libreplace/test/testsuite.c if (a c b) { \ c 934 third_party/talloc/libreplace/test/testsuite.c #a, (int)a, #c, #b, (int)b); \ c 1270 third_party/talloc/talloc.c struct talloc_chunk *c, *tc; c 1290 third_party/talloc/talloc.c for (c=tc->child;c;c=c->next) { c 1291 third_party/talloc/talloc.c total += talloc_total_size(TC_PTR_FROM_CHUNK(c)); c 1305 third_party/talloc/talloc.c struct talloc_chunk *c, *tc; c 1323 third_party/talloc/talloc.c for (c=tc->child;c;c=c->next) { c 1324 third_party/talloc/talloc.c total += talloc_total_blocks(TC_PTR_FROM_CHUNK(c)); c 1357 third_party/talloc/talloc.c struct talloc_chunk *c, *tc; c 1377 third_party/talloc/talloc.c for (c=tc->child;c;c=c->next) { c 1378 third_party/talloc/talloc.c if (c->name == TALLOC_MAGIC_REFERENCE) { c 1379 third_party/talloc/talloc.c struct talloc_reference_handle *h = (struct talloc_reference_handle *)TC_PTR_FROM_CHUNK(c); c 1382 third_party/talloc/talloc.c talloc_report_depth_cb(TC_PTR_FROM_CHUNK(c), depth + 1, max_depth, callback, private_data); c 128 third_party/talloc/talloc.h #define talloc_append_string(c, s, a) (s?talloc_strdup_append(s,a):talloc_strdup(c, a)) c 217 third_party/tcmalloc/chromium/src/addressmap-inl.h for (Cluster* c = hashtable_[h]; c != NULL; c = c->next) { c 218 third_party/tcmalloc/chromium/src/addressmap-inl.h if (c->id == cluster_id) { c 219 third_party/tcmalloc/chromium/src/addressmap-inl.h return c; c 225 third_party/tcmalloc/chromium/src/addressmap-inl.h Cluster* c = New<Cluster>(1); c 226 third_party/tcmalloc/chromium/src/addressmap-inl.h c->id = cluster_id; c 227 third_party/tcmalloc/chromium/src/addressmap-inl.h c->next = hashtable_[h]; c 228 third_party/tcmalloc/chromium/src/addressmap-inl.h hashtable_[h] = c; c 229 third_party/tcmalloc/chromium/src/addressmap-inl.h return c; c 296 third_party/tcmalloc/chromium/src/addressmap-inl.h const Cluster* const c = FindCluster(num, false/*do not create*/); c 297 third_party/tcmalloc/chromium/src/addressmap-inl.h if (c != NULL) { c 298 third_party/tcmalloc/chromium/src/addressmap-inl.h for (Entry* e = c->blocks[BlockID(num)]; e != NULL; e = e->next) { c 310 third_party/tcmalloc/chromium/src/addressmap-inl.h Cluster* const c = FindCluster(num, true/*create*/); c 314 third_party/tcmalloc/chromium/src/addressmap-inl.h for (Entry* e = c->blocks[block]; e != NULL; e = e->next) { c 335 third_party/tcmalloc/chromium/src/addressmap-inl.h e->next = c->blocks[block]; c 336 third_party/tcmalloc/chromium/src/addressmap-inl.h c->blocks[block] = e; c 342 third_party/tcmalloc/chromium/src/addressmap-inl.h Cluster* const c = FindCluster(num, false/*do not create*/); c 343 third_party/tcmalloc/chromium/src/addressmap-inl.h if (c != NULL) { c 344 third_party/tcmalloc/chromium/src/addressmap-inl.h for (Entry** p = &c->blocks[BlockID(num)]; *p != NULL; p = &(*p)->next) { c 366 third_party/tcmalloc/chromium/src/addressmap-inl.h const Cluster* c = FindCluster(num, false/*do not create*/); c 367 third_party/tcmalloc/chromium/src/addressmap-inl.h if (c != NULL) { c 371 third_party/tcmalloc/chromium/src/addressmap-inl.h for (const Entry* e = c->blocks[block]; e != NULL; e = e->next) { c 411 third_party/tcmalloc/chromium/src/addressmap-inl.h for (const Cluster* c = hashtable_[h]; c != NULL; c = c->next) { c 413 third_party/tcmalloc/chromium/src/addressmap-inl.h for (Entry* e = c->blocks[b]; e != NULL; e = e->next) { c 51 third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.cc #define cpuid(a, b, c, d, inp) \ c 55 third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 57 third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.cc #define cpuid(a, b, c, d, inp) \ c 61 third_party/tcmalloc/chromium/src/base/atomicops-internals-x86.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 1867 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h int, c, long, a) c 1874 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h struct kernel_dirent*, d, int, c) c 1877 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h struct kernel_dirent64*, d, int, c) c 1906 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h void *, b, size_t, c) c 1909 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h struct kernel_sigaction*, o, size_t, c) c 1912 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h struct kernel_sigset_t*, o, size_t, c); c 1919 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h const void *, b, size_t, c) c 2191 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall2(long, socketcall, int, c, unsigned long*, a) c 83 third_party/tcmalloc/chromium/src/base/spinlock.cc int c = adaptive_spin_count; c 84 third_party/tcmalloc/chromium/src/base/spinlock.cc while (base::subtle::NoBarrier_Load(&lockword_) != kSpinLockFree && --c > 0) { c 582 third_party/tcmalloc/chromium/src/base/sysinfo.cc static bool ExtractUntilChar(char *text, int c, char **endptr) { c 586 third_party/tcmalloc/chromium/src/base/sysinfo.cc found = strchr(text, c); c 599 third_party/tcmalloc/chromium/src/base/sysinfo.cc static void SkipWhileWhitespace(char **text_pointer, int c) { c 600 third_party/tcmalloc/chromium/src/base/sysinfo.cc if (isspace(c)) { c 630 third_party/tcmalloc/chromium/src/base/sysinfo.cc char *text, int base, int c, char **endptr_result) { c 635 third_party/tcmalloc/chromium/src/base/sysinfo.cc if (!ExtractUntilChar(text, c, &endptr_extract)) c 641 third_party/tcmalloc/chromium/src/base/sysinfo.cc *endptr_extract = c; c 647 third_party/tcmalloc/chromium/src/base/sysinfo.cc SkipWhileWhitespace(endptr_result, c); c 653 third_party/tcmalloc/chromium/src/base/sysinfo.cc char *text, unsigned out_len, int c, char *out) { c 655 third_party/tcmalloc/chromium/src/base/sysinfo.cc if (!ExtractUntilChar(text, c, &endptr)) c 660 third_party/tcmalloc/chromium/src/base/sysinfo.cc *endptr = c; c 662 third_party/tcmalloc/chromium/src/base/sysinfo.cc SkipWhileWhitespace(&endptr, c); c 668 third_party/tcmalloc/chromium/src/base/sysinfo.cc T *outptr, char *text, int base, int c, char **endptr) { c 669 third_party/tcmalloc/chromium/src/base/sysinfo.cc *outptr = StringToIntegerUntilChar<T>(*endptr, base, c, endptr); c 162 third_party/tcmalloc/chromium/src/common.cc for (int c = 1; c < kNumClasses; c++) { c 163 third_party/tcmalloc/chromium/src/common.cc const int max_size_in_class = class_to_size_[c]; c 165 third_party/tcmalloc/chromium/src/common.cc class_array_[ClassIndex(s)] = c; c 79 third_party/tcmalloc/chromium/src/internal_logging.cc LogItem a, LogItem b, LogItem c, LogItem d) { c 89 third_party/tcmalloc/chromium/src/internal_logging.cc && state.Add(c) c 100 third_party/tcmalloc/chromium/src/internal_logging.h LogItem c = LogItem(), LogItem d = LogItem()); c 115 third_party/tcmalloc/chromium/src/system-alloc.cc u4 c; c 124 third_party/tcmalloc/chromium/src/system-alloc.cc x->a = x->b ^ rot(x->c, 17); c 125 third_party/tcmalloc/chromium/src/system-alloc.cc x->b = x->c + x->d; c 126 third_party/tcmalloc/chromium/src/system-alloc.cc x->c = x->d + e; c 134 third_party/tcmalloc/chromium/src/system-alloc.cc x->b = x->c = x->d = seed; c 175 third_party/tcmalloc/chromium/src/system-alloc.cc volatile char c; c 178 third_party/tcmalloc/chromium/src/system-alloc.cc uint32_t seed = (reinterpret_cast<uint64_t>(&c) >> 32) ^ c 179 third_party/tcmalloc/chromium/src/system-alloc.cc reinterpret_cast<uint64_t>(&c); c 323 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc void (*volatile run_hidden_ptr)(Closure* c, int n); c 326 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc static void DoRunHidden(Closure* c, int n) { c 329 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc (*run_hidden_ptr)(c, n-1); c 333 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc c->Run(); c 354 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc static void RunHidden(Closure* c) { c 355 third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc DoRunHidden(c, 15); c 125 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc char a, b, c, d, e; c 145 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc map.set(100, &c); c 152 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc CHECK(map.Next(42) == &c); c 153 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc CHECK(map.Next(63) == &c); c 154 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc CHECK(map.Next(64) == &c); c 155 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc CHECK(map.Next(65) == &c); c 156 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc CHECK(map.Next(99) == &c); c 157 third_party/tcmalloc/chromium/src/tests/pagemap_unittest.cc CHECK(map.Next(100) == &c); c 521 third_party/tcmalloc/chromium/src/tests/tcmalloc_unittest.cc const char c = static_cast<char>(r.Next()); c 522 third_party/tcmalloc/chromium/src/tests/tcmalloc_unittest.cc memset(object->ptr, c, object->size); c 217 third_party/tcmalloc/vendor/src/addressmap-inl.h for (Cluster* c = hashtable_[h]; c != NULL; c = c->next) { c 218 third_party/tcmalloc/vendor/src/addressmap-inl.h if (c->id == cluster_id) { c 219 third_party/tcmalloc/vendor/src/addressmap-inl.h return c; c 225 third_party/tcmalloc/vendor/src/addressmap-inl.h Cluster* c = New<Cluster>(1); c 226 third_party/tcmalloc/vendor/src/addressmap-inl.h c->id = cluster_id; c 227 third_party/tcmalloc/vendor/src/addressmap-inl.h c->next = hashtable_[h]; c 228 third_party/tcmalloc/vendor/src/addressmap-inl.h hashtable_[h] = c; c 229 third_party/tcmalloc/vendor/src/addressmap-inl.h return c; c 296 third_party/tcmalloc/vendor/src/addressmap-inl.h const Cluster* const c = FindCluster(num, false/*do not create*/); c 297 third_party/tcmalloc/vendor/src/addressmap-inl.h if (c != NULL) { c 298 third_party/tcmalloc/vendor/src/addressmap-inl.h for (Entry* e = c->blocks[BlockID(num)]; e != NULL; e = e->next) { c 310 third_party/tcmalloc/vendor/src/addressmap-inl.h Cluster* const c = FindCluster(num, true/*create*/); c 314 third_party/tcmalloc/vendor/src/addressmap-inl.h for (Entry* e = c->blocks[block]; e != NULL; e = e->next) { c 335 third_party/tcmalloc/vendor/src/addressmap-inl.h e->next = c->blocks[block]; c 336 third_party/tcmalloc/vendor/src/addressmap-inl.h c->blocks[block] = e; c 342 third_party/tcmalloc/vendor/src/addressmap-inl.h Cluster* const c = FindCluster(num, false/*do not create*/); c 343 third_party/tcmalloc/vendor/src/addressmap-inl.h if (c != NULL) { c 344 third_party/tcmalloc/vendor/src/addressmap-inl.h for (Entry** p = &c->blocks[BlockID(num)]; *p != NULL; p = &(*p)->next) { c 366 third_party/tcmalloc/vendor/src/addressmap-inl.h const Cluster* c = FindCluster(num, false/*do not create*/); c 367 third_party/tcmalloc/vendor/src/addressmap-inl.h if (c != NULL) { c 371 third_party/tcmalloc/vendor/src/addressmap-inl.h for (const Entry* e = c->blocks[block]; e != NULL; e = e->next) { c 411 third_party/tcmalloc/vendor/src/addressmap-inl.h for (const Cluster* c = hashtable_[h]; c != NULL; c = c->next) { c 413 third_party/tcmalloc/vendor/src/addressmap-inl.h for (Entry* e = c->blocks[b]; e != NULL; e = e->next) { c 51 third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.cc #define cpuid(a, b, c, d, inp) \ c 55 third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 57 third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.cc #define cpuid(a, b, c, d, inp) \ c 61 third_party/tcmalloc/vendor/src/base/atomicops-internals-x86.cc : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp)) c 1783 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h int, c, long, a) c 1790 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h struct kernel_dirent*, d, int, c) c 1793 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h struct kernel_dirent64*, d, int, c) c 1814 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h void *, b, size_t, c) c 1817 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h struct kernel_sigaction*, o, size_t, c) c 1820 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h struct kernel_sigset_t*, o, size_t, c); c 1827 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h const void *, b, size_t, c) c 2095 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall2(long, socketcall, int, c, unsigned long*, a) c 83 third_party/tcmalloc/vendor/src/base/spinlock.cc int c = adaptive_spin_count; c 84 third_party/tcmalloc/vendor/src/base/spinlock.cc while (base::subtle::NoBarrier_Load(&lockword_) != kSpinLockFree && --c > 0) { c 158 third_party/tcmalloc/vendor/src/common.cc for (int c = 1; c < kNumClasses; c++) { c 159 third_party/tcmalloc/vendor/src/common.cc const int max_size_in_class = class_to_size_[c]; c 161 third_party/tcmalloc/vendor/src/common.cc class_array_[ClassIndex(s)] = c; c 78 third_party/tcmalloc/vendor/src/internal_logging.cc LogItem a, LogItem b, LogItem c, LogItem d) { c 88 third_party/tcmalloc/vendor/src/internal_logging.cc && state.Add(c) c 100 third_party/tcmalloc/vendor/src/internal_logging.h LogItem c = LogItem(), LogItem d = LogItem()); c 323 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc void (*volatile run_hidden_ptr)(Closure* c, int n); c 326 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc static void DoRunHidden(Closure* c, int n) { c 329 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc (*run_hidden_ptr)(c, n-1); c 333 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc c->Run(); c 354 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc static void RunHidden(Closure* c) { c 355 third_party/tcmalloc/vendor/src/tests/heap-checker_unittest.cc DoRunHidden(c, 15); c 125 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc char a, b, c, d, e; c 145 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc map.set(100, &c); c 152 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc CHECK(map.Next(42) == &c); c 153 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc CHECK(map.Next(63) == &c); c 154 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc CHECK(map.Next(64) == &c); c 155 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc CHECK(map.Next(65) == &c); c 156 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc CHECK(map.Next(99) == &c); c 157 third_party/tcmalloc/vendor/src/tests/pagemap_unittest.cc CHECK(map.Next(100) == &c); c 521 third_party/tcmalloc/vendor/src/tests/tcmalloc_unittest.cc const char c = static_cast<char>(r.Next()); c 522 third_party/tcmalloc/vendor/src/tests/tcmalloc_unittest.cc memset(object->ptr, c, object->size); c 1474 third_party/wtl/include/atlctrlx.h int c[3] = { -1, -1, -1 }; c 1483 third_party/wtl/include/atlctrlx.h c[i] = T::_xttoi(lpstr); c 1488 third_party/wtl/include/atlctrlx.h if(c[i] == -1) c 1493 third_party/wtl/include/atlctrlx.h c[2] = T::_xttoi(lpstr); c 1495 third_party/wtl/include/atlctrlx.h return RGB(c[0], c[1], c[2]); c 1768 third_party/wtl/include/atlctrlx.h int c = (int)(_TUCHAR)*nptr++; c 1769 third_party/wtl/include/atlctrlx.h int sign = c; // save sign indication c 1770 third_party/wtl/include/atlctrlx.h if (c == _T('-') || c == _T('+')) c 1771 third_party/wtl/include/atlctrlx.h c = (int)(_TUCHAR)*nptr++; // skip sign c 1774 third_party/wtl/include/atlctrlx.h while((TCHAR)c >= _T('0') && (TCHAR)c <= _T('9')) c 1776 third_party/wtl/include/atlctrlx.h total = 10 * total + ((TCHAR)c - _T('0')); // accumulate digit c 1777 third_party/wtl/include/atlctrlx.h c = (int)(_TUCHAR)*nptr++; // get next char c 2641 third_party/wtl/include/atlmisc.h int c; // current char c 2648 third_party/wtl/include/atlmisc.h c = (int)(_TUCHAR)*nptr++; c 2649 third_party/wtl/include/atlmisc.h sign = c; // save sign indication c 2650 third_party/wtl/include/atlmisc.h if (c == _T('-') || c == _T('+')) c 2651 third_party/wtl/include/atlmisc.h c = (int)(_TUCHAR)*nptr++; // skip sign c 2655 third_party/wtl/include/atlmisc.h while (_cstrisdigit((TCHAR)c)) c 2657 third_party/wtl/include/atlmisc.h total = 10 * total + (c - '0'); // accumulate digit c 2658 third_party/wtl/include/atlmisc.h c = (int)(_TUCHAR)*nptr++; // get next char c 30 third_party/zlib/contrib/minizip/crypt.h #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) c 48 third_party/zlib/contrib/minizip/crypt.h static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c) c 50 third_party/zlib/contrib/minizip/crypt.h (*(pkeys+0)) = CRC32((*(pkeys+0)), c); c 57 third_party/zlib/contrib/minizip/crypt.h return c; c 76 third_party/zlib/contrib/minizip/crypt.h #define zdecode(pkeys,pcrc_32_tab,c) \ c 77 third_party/zlib/contrib/minizip/crypt.h (update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab))) c 79 third_party/zlib/contrib/minizip/crypt.h #define zencode(pkeys,pcrc_32_tab,c,t) \ c 80 third_party/zlib/contrib/minizip/crypt.h (t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), t^(c)) c 99 third_party/zlib/contrib/minizip/crypt.h int c; /* random byte */ c 117 third_party/zlib/contrib/minizip/crypt.h c = (rand() >> 7) & 0xff; c 118 third_party/zlib/contrib/minizip/crypt.h header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t); c 404 third_party/zlib/contrib/minizip/miniunz.c char c=*(filename_withoutpath-1); c 407 third_party/zlib/contrib/minizip/miniunz.c *(filename_withoutpath-1)=c; c 556 third_party/zlib/contrib/minizip/miniunz.c char c=*(p++);; c 557 third_party/zlib/contrib/minizip/miniunz.c if ((c=='l') || (c=='L')) c 559 third_party/zlib/contrib/minizip/miniunz.c if ((c=='v') || (c=='V')) c 561 third_party/zlib/contrib/minizip/miniunz.c if ((c=='x') || (c=='X')) c 563 third_party/zlib/contrib/minizip/miniunz.c if ((c=='e') || (c=='E')) c 565 third_party/zlib/contrib/minizip/miniunz.c if ((c=='o') || (c=='O')) c 567 third_party/zlib/contrib/minizip/miniunz.c if ((c=='d') || (c=='D')) c 573 third_party/zlib/contrib/minizip/miniunz.c if (((c=='p') || (c=='P')) && (i+1<argc)) c 266 third_party/zlib/contrib/minizip/minizip.c char c=*(p++);; c 267 third_party/zlib/contrib/minizip/minizip.c if ((c=='o') || (c=='O')) c 269 third_party/zlib/contrib/minizip/minizip.c if ((c=='a') || (c=='A')) c 271 third_party/zlib/contrib/minizip/minizip.c if ((c>='0') && (c<='9')) c 272 third_party/zlib/contrib/minizip/minizip.c opt_compress_level = c-'0'; c 273 third_party/zlib/contrib/minizip/minizip.c if ((c=='j') || (c=='J')) c 276 third_party/zlib/contrib/minizip/minizip.c if (((c=='p') || (c=='P')) && (i+1<argc)) c 214 third_party/zlib/contrib/minizip/unzip.c unsigned char c; c 215 third_party/zlib/contrib/minizip/unzip.c int err = (int)ZREAD64(*pzlib_filefunc_def,filestream,&c,1); c 218 third_party/zlib/contrib/minizip/unzip.c *pi = (int)c; c 351 third_party/zlib/contrib/minizip/zip.c unsigned char c; c 352 third_party/zlib/contrib/minizip/zip.c int err = (int)ZREAD64(*pzlib_filefunc_def,filestream,&c,1); c 355 third_party/zlib/contrib/minizip/zip.c *pi = (int)c; c 110 third_party/zlib/crc32.c unsigned long c; c 130 third_party/zlib/crc32.c c = (unsigned long)n; c 132 third_party/zlib/crc32.c c = c & 1 ? poly ^ (c >> 1) : c >> 1; c 133 third_party/zlib/crc32.c crc_table[0][n] = c; c 140 third_party/zlib/crc32.c c = crc_table[0][n]; c 141 third_party/zlib/crc32.c crc_table[4][n] = REV(c); c 143 third_party/zlib/crc32.c c = crc_table[0][c & 0xff] ^ (c >> 8); c 144 third_party/zlib/crc32.c crc_table[k][n] = c; c 145 third_party/zlib/crc32.c crc_table[k + 4][n] = REV(c); c 258 third_party/zlib/crc32.c #define DOLIT4 c ^= *buf4++; \ c 259 third_party/zlib/crc32.c c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \ c 260 third_party/zlib/crc32.c crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24] c 269 third_party/zlib/crc32.c register u4 c; c 272 third_party/zlib/crc32.c c = (u4)crc; c 273 third_party/zlib/crc32.c c = ~c; c 275 third_party/zlib/crc32.c c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8); c 291 third_party/zlib/crc32.c c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8); c 293 third_party/zlib/crc32.c c = ~c; c 294 third_party/zlib/crc32.c return (unsigned long)c; c 298 third_party/zlib/crc32.c #define DOBIG4 c ^= *++buf4; \ c 299 third_party/zlib/crc32.c c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \ c 300 third_party/zlib/crc32.c crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24] c 309 third_party/zlib/crc32.c register u4 c; c 312 third_party/zlib/crc32.c c = REV((u4)crc); c 313 third_party/zlib/crc32.c c = ~c; c 315 third_party/zlib/crc32.c c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8); c 333 third_party/zlib/crc32.c c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8); c 335 third_party/zlib/crc32.c c = ~c; c 336 third_party/zlib/crc32.c return (unsigned long)(REV(c)); c 165 third_party/zlib/deflate.c #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) c 280 third_party/zlib/deflate.h #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} c 324 third_party/zlib/deflate.h # define _tr_tally_lit(s, c, flush) \ c 325 third_party/zlib/deflate.h { uch cc = (c); \ c 342 third_party/zlib/deflate.h # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) c 482 third_party/zlib/gzread.c int ZEXPORT gzungetc(c, file) c 483 third_party/zlib/gzread.c int c; c 505 third_party/zlib/gzread.c if (c < 0) c 512 third_party/zlib/gzread.c state->next[0] = c; c 514 third_party/zlib/gzread.c return c; c 533 third_party/zlib/gzread.c state->next[0] = c; c 535 third_party/zlib/gzread.c return c; c 221 third_party/zlib/gzwrite.c int ZEXPORT gzputc(file, c) c 223 third_party/zlib/gzwrite.c int c; c 251 third_party/zlib/gzwrite.c strm->next_in[strm->avail_in++] = c; c 253 third_party/zlib/gzwrite.c return c; c 257 third_party/zlib/gzwrite.c buf[0] = c; c 260 third_party/zlib/gzwrite.c return c; c 168 third_party/zlib/trees.c # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len) c 172 third_party/zlib/trees.c # define send_code(s, c, tree) \ c 173 third_party/zlib/trees.c { if (z_verbose>2) fprintf(stderr,"\ncd %3d ",(c)); \ c 174 third_party/zlib/trees.c send_bits(s, tree[c].Code, tree[c].Len); } c 1300 third_party/zlib/zlib.h ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); c 1312 third_party/zlib/zlib.h ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); c 268 third_party/zlib/zutil.h # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;} c 269 third_party/zlib/zutil.h # define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;} c 275 third_party/zlib/zutil.h # define Tracec(c,x) c 276 third_party/zlib/zutil.h # define Tracecv(c,x) c 44 tools/android/forwarder2/pipe_notifier.cc char c; c 45 tools/android/forwarder2/pipe_notifier.cc int ret = HANDLE_EINTR(read(receiver_fd_, &c, 1)); c 51 tools/android/forwarder2/pipe_notifier.cc DCHECK_EQ('1', c); c 10 tools/clang/empty_string/tests/test-expected.cc void TestDeclarations() { std::string a, b("abc"), c; } c 16 tools/clang/empty_string/tests/test-expected.cc *c = new std::string, c 30 tools/clang/empty_string/tests/test-expected.cc std::string c; c 10 tools/clang/empty_string/tests/test-original.cc void TestDeclarations() { std::string a(""), b("abc"), c(""); } c 16 tools/clang/empty_string/tests/test-original.cc *c = new std::string(""), c 30 tools/clang/empty_string/tests/test-original.cc std::string c; c 11 tools/clang/plugins/tests/inline_copy_ctor.h int a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p , q, r, s, t, u, v, w, x; c 8 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc scoped_ptr<int> a, b(new int), c; c 14 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc *c = new scoped_ptr<int>; c 22 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc : b(new int), c(), f(static_cast<int*>(malloc(sizeof(int)))) {} c 27 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc scoped_ptr<int> c; c 34 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc scoped_ptr<int> c = c 8 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-original.cc scoped_ptr<int> a(NULL), b(new int), c(NULL); c 15 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-original.cc *c = new scoped_ptr<int>(NULL); c 23 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-original.cc : a(NULL), b(new int), c(), f(static_cast<int*>(malloc(sizeof(int)))) {} c 28 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-original.cc scoped_ptr<int> c; c 35 tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-original.cc scoped_ptr<int> c = c 143 tools/gn/builder_unittest.cc Target* c = new Target(&settings_, c_label); c 144 tools/gn/builder_unittest.cc c->set_output_type(Target::STATIC_LIBRARY); c 145 tools/gn/builder_unittest.cc builder_->ItemDefined(scoped_ptr<Item>(c)); c 72 tools/gn/filesystem_utils.cc inline char NormalizeWindowsPathChar(char c) { c 73 tools/gn/filesystem_utils.cc if (c == '/') c 75 tools/gn/filesystem_utils.cc return base::ToLowerASCII(c); c 18 tools/gn/input_file.cc void InputFile::SetContents(const std::string& c) { c 20 tools/gn/input_file.cc contents_ = c; c 47 tools/gn/input_file.h void SetContents(const std::string& c); c 224 tools/gn/parse_tree.h void set_condition(scoped_ptr<ParseNode> c) { c 225 tools/gn/parse_tree.h condition_ = c.Pass(); c 55 tools/gn/pattern_unittest.cc const Case& c = pattern_cases[i]; c 56 tools/gn/pattern_unittest.cc Pattern pattern(c.pattern); c 57 tools/gn/pattern_unittest.cc bool result = pattern.MatchesString(c.candidate); c 58 tools/gn/pattern_unittest.cc EXPECT_EQ(c.expected_match, result) << i << ": \"" << c.pattern c 59 tools/gn/pattern_unittest.cc << "\", \"" << c.candidate << "\""; c 120 tools/gn/target_unittest.cc Target c(&settings_, Label(SourceDir("//foo/"), "c")); c 121 tools/gn/target_unittest.cc c.set_output_type(Target::STATIC_LIBRARY); c 123 tools/gn/target_unittest.cc b.deps().push_back(LabelTargetPair(&c)); c 127 tools/gn/target_unittest.cc c.configs().push_back(LabelConfigPair(&config)); c 131 tools/gn/target_unittest.cc c.all_dependent_configs().push_back(LabelConfigPair(&all)); c 135 tools/gn/target_unittest.cc c.direct_dependent_configs().push_back(LabelConfigPair(&direct)); c 137 tools/gn/target_unittest.cc c.OnResolved(); c 159 tools/gn/target_unittest.cc b_fwd.deps().push_back(LabelTargetPair(&c)); c 160 tools/gn/target_unittest.cc b_fwd.forward_dependent_configs().push_back(LabelTargetPair(&c)); c 12 tools/gn/tokenizer.cc bool IsNumberChar(char c) { c 13 tools/gn/tokenizer.cc return c >= '0' && c <= '9'; c 16 tools/gn/tokenizer.cc bool CouldBeTwoCharOperatorBegin(char c) { c 17 tools/gn/tokenizer.cc return c == '<' || c == '>' || c == '!' || c == '=' || c == '-' || c 18 tools/gn/tokenizer.cc c == '+' || c == '|' || c == '&'; c 21 tools/gn/tokenizer.cc bool CouldBeTwoCharOperatorEnd(char c) { c 22 tools/gn/tokenizer.cc return c == '=' || c == '|' || c == '&'; c 25 tools/gn/tokenizer.cc bool CouldBeOneCharOperator(char c) { c 26 tools/gn/tokenizer.cc return c == '=' || c == '<' || c == '>' || c == '+' || c == '!' || c 27 tools/gn/tokenizer.cc c == ':' || c == '|' || c == '&' || c == '-'; c 30 tools/gn/tokenizer.cc bool CouldBeOperator(char c) { c 31 tools/gn/tokenizer.cc return CouldBeOneCharOperator(c) || CouldBeTwoCharOperatorBegin(c); c 34 tools/gn/tokenizer.cc bool IsScoperChar(char c) { c 35 tools/gn/tokenizer.cc return c == '(' || c == ')' || c == '[' || c == ']' || c == '{' || c == '}'; c 234 tools/gn/tokenizer.cc char c = cur_char(); c 235 tools/gn/tokenizer.cc if (!IsCurrentWhitespace() && !CouldBeOperator(c) && c 236 tools/gn/tokenizer.cc !IsScoperChar(c) && c != ',') { c 312 tools/gn/tokenizer.cc char c = input_[cur_]; c 314 tools/gn/tokenizer.cc return c == 0x0A || c == 0x0B || c == 0x0C || c == 0x0D || c == 0x20; c 34 tools/gn/tokenizer.h static bool IsIdentifierFirstChar(char c) { c 35 tools/gn/tokenizer.h return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c == '_'; c 38 tools/gn/tokenizer.h static bool IsIdentifierContinuingChar(char c) { c 40 tools/gn/tokenizer.h return IsIdentifierFirstChar(c) || (c >= '0' && c <= '9'); c 81 tools/gn/trace.cc Coalesced& c = coalesced[items[i]->name()]; c 82 tools/gn/trace.cc c.name_ptr = &items[i]->name(); c 83 tools/gn/trace.cc c.total_duration += items[i]->delta().InMillisecondsF(); c 84 tools/gn/trace.cc c.count++; c 52 tools/gn/trace.h void set_cmdline(const std::string& c) { cmdline_ = c; } c 338 tools/ipc_fuzzer/mutate/generate.cc GenerateParam(&p->c, generator); c 348 tools/ipc_fuzzer/mutate/generate.cc GenerateParam(&p->c, generator) && c 359 tools/ipc_fuzzer/mutate/generate.cc GenerateParam(&p->c, generator) && c 1272 tools/ipc_fuzzer/mutate/generate.cc #define IPC_MEMBERS_IN_3(p) p.a, p.b, p.c c 1273 tools/ipc_fuzzer/mutate/generate.cc #define IPC_MEMBERS_IN_4(p) p.a, p.b, p.c, p.d c 1274 tools/ipc_fuzzer/mutate/generate.cc #define IPC_MEMBERS_IN_5(p) p.a, p.b, p.c, p.d, p.e c 352 tools/ipc_fuzzer/mutate/mutate.cc FuzzParam(&p->c, fuzzer); c 361 tools/ipc_fuzzer/mutate/mutate.cc FuzzParam(&p->c, fuzzer); c 371 tools/ipc_fuzzer/mutate/mutate.cc FuzzParam(&p->c, fuzzer); c 569 tools/ipc_fuzzer/mutate/mutate.cc #define IPC_MEMBERS_IN_3(p) p.a, p.b, p.c c 570 tools/ipc_fuzzer/mutate/mutate.cc #define IPC_MEMBERS_IN_4(p) p.a, p.b, p.c, p.d c 571 tools/ipc_fuzzer/mutate/mutate.cc #define IPC_MEMBERS_IN_5(p) p.a, p.b, p.c, p.d, p.e c 72 tools/json_schema_compiler/test/idl_schemas_unittest.cc MyType1 c; c 73 tools/json_schema_compiler/test/idl_schemas_unittest.cc EXPECT_TRUE(MyType1::Populate(*f6_result_dict, &c)); c 74 tools/json_schema_compiler/test/idl_schemas_unittest.cc EXPECT_EQ(a.x, c.x); c 75 tools/json_schema_compiler/test/idl_schemas_unittest.cc EXPECT_EQ(a.y, c.y); c 40 tools/json_schema_compiler/test/test_util.cc base::Value* c) { c 42 tools/json_schema_compiler/test/test_util.cc list->Append(c); c 30 tools/json_schema_compiler/test/test_util.h std::vector<T> Vector(const T& a, const T& b, const T& c) { c 32 tools/json_schema_compiler/test/test_util.h arr.push_back(c); c 40 tools/json_schema_compiler/test/test_util.h base::Value* c); c 439 tools/traceline/traceline/assembler.h void jmp_rel_short(char c) { c 440 tools/traceline/traceline/assembler.h emit(0xeb); emit(c); c 516 tools/traceline/traceline/assembler.h void ret(short c) { c 517 tools/traceline/traceline/assembler.h if (c == 0) { c 520 tools/traceline/traceline/assembler.h emit(0xc2); emit_word(c); c 35 tools/traceline/traceline/main.cc unsigned char c = static_cast<unsigned char>(*it); c 36 tools/traceline/traceline/main.cc switch (c) { c 40 tools/traceline/traceline/main.cc out.push_back('\\'); out.push_back(c); c 43 tools/traceline/traceline/main.cc if (c < 20 || c >= 127) { c 45 tools/traceline/traceline/main.cc out.push_back(hextable[c >> 4]); out.push_back(hextable[c & 0xf]); c 48 tools/traceline/traceline/main.cc out.push_back(c); c 128 ui/app_list/app_list_item_list_unittest.cc bool VerifyItemOrder4(size_t a, size_t b, size_t c, size_t d) { c 131 ui/app_list/app_list_item_list_unittest.cc (GetItemId(c) == item_list_.item_at(2)->id()) && c 34 ui/app_list/cocoa/test/apps_grid_controller_test_helper.h void SimulateKeyAction(SEL c); c 191 ui/base/accelerators/accelerator.cc const uint16 c = GetCharacterFromKeyCode(key_code_, false); c 192 ui/base/accelerators/accelerator.cc if (c != 0) c 194 ui/base/accelerators/accelerator.cc static_cast<base::string16::value_type>(base::ToUpperASCII(c)); c 23 ui/base/ime/composition_underline.h CompositionUnderline(unsigned s, unsigned e, SkColor c, bool t) c 26 ui/base/ime/composition_underline.h color(c), c 735 ui/base/l10n/l10n_util.cc const base::string16& c) { c 736 ui/base/l10n/l10n_util.cc return base::UTF16ToUTF8(GetStringFUTF16(message_id, a, b, c)); c 742 ui/base/l10n/l10n_util.cc const base::string16& c, c 744 ui/base/l10n/l10n_util.cc return base::UTF16ToUTF8(GetStringFUTF16(message_id, a, b, c, d)); c 763 ui/base/l10n/l10n_util.cc const base::string16& c) { c 767 ui/base/l10n/l10n_util.cc replacements.push_back(c); c 774 ui/base/l10n/l10n_util.cc const base::string16& c, c 779 ui/base/l10n/l10n_util.cc replacements.push_back(c); c 787 ui/base/l10n/l10n_util.cc const base::string16& c, c 793 ui/base/l10n/l10n_util.cc replacements.push_back(c); c 114 ui/base/l10n/l10n_util.h const base::string16& c); c 118 ui/base/l10n/l10n_util.h const base::string16& c, c 123 ui/base/l10n/l10n_util.h const base::string16& c, c 134 ui/base/l10n/l10n_util.h const base::string16& c); c 138 ui/base/l10n/l10n_util.h const base::string16& c, c 131 ui/base/l10n/l10n_util_collator.h StringComparator<Element> c(collator.get()); c 135 ui/base/l10n/l10n_util_collator.h c); c 137 ui/base/l10n/l10n_util_collator.h sort(elements->begin() + begin_index, elements->begin() + end_index, c); c 40 ui/base/l10n/l10n_util_mac.h const base::string16& c); c 44 ui/base/l10n/l10n_util_mac.h const base::string16& c, c 68 ui/base/l10n/l10n_util_mac.h const base::string16& c); c 72 ui/base/l10n/l10n_util_mac.h const base::string16& c, c 113 ui/display/edid_parser.cc char c = (*human_readable_name)[i]; c 114 ui/display/edid_parser.cc if (!isascii(c) || !isprint(c)) { c 51 ui/events/gestures/gesture_recognizer_impl.h virtual GestureSequence* GetGestureSequenceForConsumer(GestureConsumer* c); c 46 ui/events/test/cocoa_test_event_utils.h NSEvent* KeyEventWithCharacter(unichar c); c 53 ui/events/test/cocoa_test_event_utils.h unichar c, c 31 ui/events/test/test_event_target.cc scoped_ptr<TestEventTarget> TestEventTarget::RemoveChild(TestEventTarget *c) { c 34 ui/events/test/test_event_target.cc c); c 37 ui/events/test/test_event_target.cc c->set_parent(NULL); c 38 ui/events/test/test_event_target.cc return scoped_ptr<TestEventTarget>(c); c 427 ui/gfx/color_analysis.cc SkColor c = SkUnPreMultiply::PMColorToColor(*current_color); c 428 ui/gfx/color_analysis.cc SkColor r = SkColorGetR(c); c 429 ui/gfx/color_analysis.cc SkColor g = SkColorGetG(c); c 430 ui/gfx/color_analysis.cc SkColor b = SkColorGetB(c); c 504 ui/gfx/color_analysis.cc SkColor c = SkUnPreMultiply::PMColorToColor(source_color_row[x]); c 505 ui/gfx/color_analysis.cc float r = SkColorGetR(c); c 506 ui/gfx/color_analysis.cc float g = SkColorGetG(c); c 507 ui/gfx/color_analysis.cc float b = SkColorGetB(c); c 530 ui/gfx/color_analysis.cc SkColor c = SkUnPreMultiply::PMColorToColor(source_color_row[x]); c 531 ui/gfx/color_analysis.cc float r = SkColorGetR(c); c 532 ui/gfx/color_analysis.cc float g = SkColorGetG(c); c 533 ui/gfx/color_analysis.cc float b = SkColorGetB(c); c 92 ui/gfx/color_utils.cc void SkColorToHSL(SkColor c, HSL* hsl) { c 93 ui/gfx/color_utils.cc double r = static_cast<double>(SkColorGetR(c)) / 255.0; c 94 ui/gfx/color_utils.cc double g = static_cast<double>(SkColorGetG(c)) / 255.0; c 95 ui/gfx/color_utils.cc double b = static_cast<double>(SkColorGetB(c)) / 255.0; c 100 ui/gfx/color_utils.cc if (SkColorGetR(c) == SkColorGetG(c) && SkColorGetR(c) == SkColorGetB(c)) { c 29 ui/gfx/color_utils.h GFX_EXPORT void SkColorToHSL(SkColor c, HSL* hsl); c 90 ui/gfx/geometry/cubic_bezier.cc double c = y1_; c 103 ui/gfx/geometry/cubic_bezier.cc t_1 = -c / b; c 107 ui/gfx/geometry/cubic_bezier.cc double discriminant = b * b - 4 * a * c; c 56 ui/gfx/geometry/matrix3_f.h void set_column(int i, const Vector3dF& c) { c 57 ui/gfx/geometry/matrix3_f.h data_[MatrixToArrayCoords(0, i)] = c.x(); c 58 ui/gfx/geometry/matrix3_f.h data_[MatrixToArrayCoords(1, i)] = c.y(); c 59 ui/gfx/geometry/matrix3_f.h data_[MatrixToArrayCoords(2, i)] = c.z(); c 16 ui/gfx/geometry/quad_unittest.cc PointF c(2, 2); c 21 ui/gfx/geometry/quad_unittest.cc QuadF q3(a, b, c, d); c 22 ui/gfx/geometry/quad_unittest.cc QuadF q4(BoundingRect(a, c)); c 29 ui/gfx/geometry/quad_unittest.cc EXPECT_EQ(q3.p3().ToString(), c.ToString()); c 34 ui/gfx/geometry/quad_unittest.cc q3.set_p2(c); c 38 ui/gfx/geometry/quad_unittest.cc EXPECT_EQ(q3.p2().ToString(), c.ToString()); c 44 ui/gfx/geometry/quad_unittest.cc q1 = BoundingRect(a, c); c 56 ui/gfx/geometry/quad_unittest.cc PointF c(2, 2); c 60 ui/gfx/geometry/quad_unittest.cc QuadF q1(a, b, c, d); c 70 ui/gfx/geometry/quad_unittest.cc QuadF q2(a, b, c, d); c 80 ui/gfx/geometry/quad_unittest.cc QuadF q3(a, b, c, d); c 83 ui/gfx/geometry/quad_unittest.cc EXPECT_EQ(QuadF(a, b, c, d).ToString(), q3.ToString()); c 90 ui/gfx/geometry/quad_unittest.cc PointF c(2, 2); c 95 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).IsRectilinear()); c 96 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE((QuadF(a, b, c, d) + v).IsRectilinear()); c 103 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a2, b, c, d).IsRectilinear()); c 104 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE((QuadF(a2, b, c, d) + v).IsRectilinear()); c 105 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b2, c, d).IsRectilinear()); c 106 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE((QuadF(a, b2, c, d) + v).IsRectilinear()); c 109 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d2).IsRectilinear()); c 110 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE((QuadF(a, b, c, d2) + v).IsRectilinear()); c 159 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a_off, b, c, d).IsRectilinear()); c 160 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE((QuadF(a_off, b, c, d) + v).IsRectilinear()); c 161 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b_off, c, d).IsRectilinear()); c 162 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE((QuadF(a, b_off, c, d) + v).IsRectilinear()); c 165 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d_off).IsRectilinear()); c 166 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE((QuadF(a, b, c, d_off) + v).IsRectilinear()); c 169 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b_off, c, d_off).IsRectilinear()); c 170 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE((QuadF(a, b_off, c, d_off) + v).IsRectilinear()); c 175 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a_off, b_off, c, d_off).IsRectilinear()); c 176 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE((QuadF(a_off, b_off, c, d_off) + v).IsRectilinear()); c 244 ui/gfx/geometry/quad_unittest.cc PointF c(1.8f, 6.2f); c 251 ui/gfx/geometry/quad_unittest.cc QuadF(a, b, c, d).BoundingBox().ToString()); c 257 ui/gfx/geometry/quad_unittest.cc PointF c(1.8f, 6.1f); c 263 ui/gfx/geometry/quad_unittest.cc Vector2dF ac_center = c - a; c 268 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(a + ac_center)); c 269 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(b + bd_center)); c 270 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(c - ac_center)); c 271 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(d - bd_center)); c 272 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(a - ac_center)); c 273 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(b - bd_center)); c 274 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(c + ac_center)); c 275 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(d + bd_center)); c 277 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(a)); c 278 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(a - epsilon_x)); c 279 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(a - epsilon_y)); c 280 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(a + epsilon_x)); c 281 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(a + epsilon_y)); c 283 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(b)); c 284 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(b - epsilon_x)); c 285 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(b - epsilon_y)); c 286 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(b + epsilon_x)); c 287 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(b + epsilon_y)); c 289 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(c)); c 290 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(c - epsilon_x)); c 291 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(c - epsilon_y)); c 292 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(c + epsilon_x)); c 293 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(c + epsilon_y)); c 295 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(d)); c 296 ui/gfx/geometry/quad_unittest.cc EXPECT_TRUE(QuadF(a, b, c, d).Contains(d - epsilon_x)); c 297 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(d - epsilon_y)); c 298 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(d + epsilon_x)); c 299 ui/gfx/geometry/quad_unittest.cc EXPECT_FALSE(QuadF(a, b, c, d).Contains(d + epsilon_y)); c 342 ui/gfx/geometry/quad_unittest.cc PointF c(1.8f, 6.1f); c 344 ui/gfx/geometry/quad_unittest.cc QuadF q1(a, b, c, d); c 349 ui/gfx/geometry/quad_unittest.cc PointF c_scaled = ScalePoint(c, 1.5f); c 342 ui/gfx/geometry/rect_base_impl.h Class c(x(), y(), width(), height()); c 343 ui/gfx/geometry/rect_base_impl.h c.Union(rect); c 349 ui/gfx/geometry/rect_base_impl.h Type x = std::max<Type>(0, c.width() - width() - rect.width() + kEpsilon); c 350 ui/gfx/geometry/rect_base_impl.h Type y = std::max<Type>(0, c.height() - height() - rect.height() + kEpsilon); c 21 ui/gfx/nine_image_painter.cc void Fill(Canvas* c, c 28 ui/gfx/nine_image_painter.cc c->DrawImageInt(i, 0, 0, i.width(), i.height(), x, y, w, h, false, paint); c 125 ui/gfx/render_text_win.cc bool IsUnicodeBidiControlCharacter(base::char16 c) { c 126 ui/gfx/render_text_win.cc return c == base::i18n::kRightToLeftMark || c 127 ui/gfx/render_text_win.cc c == base::i18n::kLeftToRightMark || c 128 ui/gfx/render_text_win.cc c == base::i18n::kLeftToRightEmbeddingMark || c 129 ui/gfx/render_text_win.cc c == base::i18n::kRightToLeftEmbeddingMark || c 130 ui/gfx/render_text_win.cc c == base::i18n::kPopDirectionalFormatting || c 131 ui/gfx/render_text_win.cc c == base::i18n::kLeftToRightOverride || c 132 ui/gfx/render_text_win.cc c == base::i18n::kRightToLeftOverride; c 735 ui/gfx/skbitmap_operations.cc SkColor c) { c 745 ui/gfx/skbitmap_operations.cc SkColorFilter::CreateModeFilter(c, SkXfermode::kSrcIn_Mode)); c 111 ui/gfx/skbitmap_operations.h static SkBitmap CreateColorMask(const SkBitmap& bitmap, SkColor c); c 23 ui/gfx/text_utils.cc int32 c = chars.get(); c 27 ui/gfx/text_utils.cc if (c != accelerator_char || escaped) { c 29 ui/gfx/text_utils.cc if (escaped && c != accelerator_char) { c 28 ui/gfx/transform_unittest.cc #define EXPECT_ROW1_EQ(a, b, c, d, transform) \ c 31 ui/gfx/transform_unittest.cc EXPECT_FLOAT_EQ((c), (transform).matrix().get(0, 2)); \ c 34 ui/gfx/transform_unittest.cc #define EXPECT_ROW2_EQ(a, b, c, d, transform) \ c 37 ui/gfx/transform_unittest.cc EXPECT_FLOAT_EQ((c), (transform).matrix().get(1, 2)); \ c 40 ui/gfx/transform_unittest.cc #define EXPECT_ROW3_EQ(a, b, c, d, transform) \ c 43 ui/gfx/transform_unittest.cc EXPECT_FLOAT_EQ((c), (transform).matrix().get(2, 2)); \ c 46 ui/gfx/transform_unittest.cc #define EXPECT_ROW4_EQ(a, b, c, d, transform) \ c 49 ui/gfx/transform_unittest.cc EXPECT_FLOAT_EQ((c), (transform).matrix().get(3, 2)); \ c 55 ui/gfx/transform_unittest.cc #define EXPECT_ROW1_NEAR(a, b, c, d, transform, errorThreshold) \ c 58 ui/gfx/transform_unittest.cc EXPECT_NEAR((c), (transform).matrix().get(0, 2), (errorThreshold)); \ c 61 ui/gfx/transform_unittest.cc #define EXPECT_ROW2_NEAR(a, b, c, d, transform, errorThreshold) \ c 64 ui/gfx/transform_unittest.cc EXPECT_NEAR((c), (transform).matrix().get(1, 2), (errorThreshold)); \ c 67 ui/gfx/transform_unittest.cc #define EXPECT_ROW3_NEAR(a, b, c, d, transform, errorThreshold) \ c 70 ui/gfx/transform_unittest.cc EXPECT_NEAR((c), (transform).matrix().get(2, 2), (errorThreshold)); \ c 2417 ui/gfx/transform_unittest.cc SkMScalar c; // row 2, column 1 c 2459 ui/gfx/transform_unittest.cc transform.matrix().set(1, 0, value.c); c 2478 ui/gfx/transform_unittest.cc transform.matrix().set(1, 0, value.c); c 2506 ui/gfx/transform_unittest.cc transform.matrix().set(1, 0, value.c); c 28 ui/views/controls/menu/menu_message_pump_dispatcher_linux.cc char c = ui::GetCharacterFromKeyCode(ui::KeyboardCodeFromNative(event), c 30 ui/views/controls/menu/menu_message_pump_dispatcher_linux.cc if (menu_controller_->SelectByChar(c)) c 39 ui/views/controls/message_box_view.cc bool IsParagraphSeparator(base::char16 c) { c 40 ui/views/controls/message_box_view.cc return ( c == 0x000A || c == 0x000D || c == 0x001C || c == 0x001D || c 41 ui/views/controls/message_box_view.cc c == 0x001E || c == 0x0085 || c == 0x2029); c 84 ui/views/controls/textfield/textfield_model.h void InsertChar(base::char16 c) { c 85 ui/views/controls/textfield/textfield_model.h InsertTextInternal(base::string16(&c, 1), true); c 95 ui/views/controls/textfield/textfield_model.h void ReplaceChar(base::char16 c) { c 96 ui/views/controls/textfield/textfield_model.h ReplaceTextInternal(base::string16(&c, 1), true); c 35 ui/views/controls/textfield/textfield_model_unittest.cc WordAndCursor(const wchar_t* w, size_t c) : word(w), cursor(c) {} c 571 url/gurl_unittest.cc GURL c("foo://bar/baz"); c 572 url/gurl_unittest.cc EXPECT_FALSE(c.IsStandard()); c 79 url/url_canon_etc.cc inline bool IsSchemeFirstChar(unsigned char c) { c 80 url/url_canon_etc.cc return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); c 59 url/url_canon_internal.h inline bool IsCharOfType(unsigned char c, SharedCharTypes type) { c 60 url/url_canon_internal.h return !!(kSharedCharTypeTable[c] & type); c 62 url/url_canon_internal.h inline bool IsQueryChar(unsigned char c) { c 63 url/url_canon_internal.h return IsCharOfType(c, CHAR_QUERY); c 65 url/url_canon_internal.h inline bool IsIPv4Char(unsigned char c) { c 66 url/url_canon_internal.h return IsCharOfType(c, CHAR_IPV4); c 68 url/url_canon_internal.h inline bool IsHexChar(unsigned char c) { c 69 url/url_canon_internal.h return IsCharOfType(c, CHAR_HEX); c 71 url/url_canon_internal.h inline bool IsComponentChar(unsigned char c) { c 72 url/url_canon_internal.h return IsCharOfType(c, CHAR_COMPONENT); c 99 url/url_canon_internal.h inline unsigned char HexCharToValue(unsigned char c) { c 100 url/url_canon_internal.h return c - kCharToHexLookup[c / 0x20]; c 297 url/url_canon_internal.h inline bool Is8BitChar(char c) { c 300 url/url_canon_internal.h inline bool Is8BitChar(base::char16 c) { c 301 url/url_canon_internal.h return c <= 255; c 576 url/url_parse_unittest.cc char c[] = "http://www.google.com?&foo=bar"; c 577 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(c, 1, "", "")); c 578 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(c, 2, "foo", "bar")); c 579 url/url_parse_unittest.cc EXPECT_TRUE(NthParameterIs(c, 3, NULL, NULL)); c 25 url/url_util.cc template <class Char> inline Char ToLowerASCII(Char c) { c 26 url/url_util.cc return (c >= 'A' && c <= 'Z') ? (c + ('a' - 'A')) : c; c 578 url/url_util.cc unsigned char c = static_cast<unsigned char>(input[i]); c 579 url/url_util.cc if (url_canon::IsComponentChar(c)) c 580 url/url_util.cc output->push_back(c); c 582 url/url_util.cc AppendEscapedChar(c, output); c 374 webkit/browser/quota/quota_manager_unittest.cc void set_additional_callback_count(int c) { additional_callback_count_ = c; }