/external/chromium_org/v8/src/ |
token.cc | 35 const char* const Token::name_[NUM_TOKENS] = { 42 const char* const Token::string_[NUM_TOKENS] = { 49 const int8_t Token::precedence_[NUM_TOKENS] = {
|
token.h | 192 NUM_TOKENS 199 ASSERT(tok < NUM_TOKENS); // tok is unsigned 295 ASSERT(tok < NUM_TOKENS); // tok is unsigned. 302 ASSERT(tok < NUM_TOKENS); // tok is unsigned. 307 static const char* const name_[NUM_TOKENS]; 308 static const char* const string_[NUM_TOKENS]; 309 static const int8_t precedence_[NUM_TOKENS]; 310 static const char token_type[NUM_TOKENS];
|
/external/v8/src/ |
token.cc | 35 const char* const Token::name_[NUM_TOKENS] = { 42 const char* const Token::string_[NUM_TOKENS] = { 49 const int8_t Token::precedence_[NUM_TOKENS] = {
|
token.h | 190 NUM_TOKENS 197 ASSERT(tok < NUM_TOKENS); // tok is unsigned 276 ASSERT(tok < NUM_TOKENS); // tok is unsigned. 283 ASSERT(tok < NUM_TOKENS); // tok is unsigned. 288 static const char* const name_[NUM_TOKENS]; 289 static const char* const string_[NUM_TOKENS]; 290 static const int8_t precedence_[NUM_TOKENS]; 291 static const char token_type[NUM_TOKENS];
|
/external/clang/lib/Format/ |
FormatToken.h | 208 tok::TokenKind K4, tok::TokenKind K5 = tok::NUM_TOKENS, 209 tok::TokenKind K6 = tok::NUM_TOKENS, 210 tok::TokenKind K7 = tok::NUM_TOKENS, 211 tok::TokenKind K8 = tok::NUM_TOKENS, 212 tok::TokenKind K9 = tok::NUM_TOKENS, 213 tok::TokenKind K10 = tok::NUM_TOKENS, 214 tok::TokenKind K11 = tok::NUM_TOKENS, 215 tok::TokenKind K12 = tok::NUM_TOKENS) const {
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_text.h | 43 uint num_tokens );
|
tgsi_parse.c | 318 * Allocate memory for num_tokens tokens. 321 tgsi_alloc_tokens(unsigned num_tokens) 323 unsigned bytes = num_tokens * sizeof(struct tgsi_token);
|
tgsi_parse.h | 156 tgsi_alloc_tokens(unsigned num_tokens);
|
tgsi_scan.h | 41 uint num_tokens; member in struct:tgsi_shader_info
|
tgsi_dump.c | 209 unsigned num_tokens, 217 assert( num_tokens <= 4 ); 218 for (i = 0; i < num_tokens; i++) { 233 if (i < num_tokens - 1)
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_text.h | 43 uint num_tokens );
|
tgsi_parse.c | 318 * Allocate memory for num_tokens tokens. 321 tgsi_alloc_tokens(unsigned num_tokens) 323 unsigned bytes = num_tokens * sizeof(struct tgsi_token);
|
tgsi_parse.h | 156 tgsi_alloc_tokens(unsigned num_tokens);
|
tgsi_scan.h | 41 uint num_tokens; member in struct:tgsi_shader_info
|
tgsi_dump.c | 209 unsigned num_tokens, 217 assert( num_tokens <= 4 ); 218 for (i = 0; i < num_tokens; i++) { 233 if (i < num_tokens - 1)
|
/external/clang/lib/Basic/ |
TokenKinds.cpp | 26 assert(Kind < tok::NUM_TOKENS);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
shaders_cache.c | 76 static INLINE struct tgsi_token *tokens_from_assembly(const char *txt, int num_tokens) 80 tokens = (struct tgsi_token *) MALLOC(num_tokens * sizeof(tokens[0])); 82 tgsi_text_translate(txt, tokens, num_tokens); 432 const char *txt, int num_tokens, 437 struct tgsi_token *tokens = tokens_from_assembly(txt, num_tokens);
|
shaders_cache.h | 113 const char *txt, int num_tokens,
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data_provider_aurax11.cc | 199 size_t num_tokens = Tokenize(unparsed, ASCIIToUTF16("\n"), &tokens); local 200 if (num_tokens > 0) { 201 if (num_tokens > 1) 216 size_t num_tokens = Tokenize(unparsed, "\n", &tokens); local 217 if (!num_tokens) {
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
shaders_cache.c | 76 static INLINE struct tgsi_token *tokens_from_assembly(const char *txt, int num_tokens) 80 tokens = (struct tgsi_token *) MALLOC(num_tokens * sizeof(tokens[0])); 82 tgsi_text_translate(txt, tokens, num_tokens); 432 const char *txt, int num_tokens, 437 struct tgsi_token *tokens = tokens_from_assembly(txt, num_tokens);
|
shaders_cache.h | 113 const char *txt, int num_tokens,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_state_vs.c | 82 unsigned num_tokens; local 93 tokens = ureg_get_tokens(ureg, &num_tokens);
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_state_vs.c | 82 unsigned num_tokens; local 93 tokens = ureg_get_tokens(ureg, &num_tokens);
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_oauth2_token_service_unittest.cc | 142 void AssertConsumerTokensAndErrors(int num_tokens, int num_errors); 169 int num_tokens, 171 ASSERT_EQ(num_tokens, consumer_.number_of_successful_tokens_);
|
/external/clang/include/clang/Lex/ |
TokenConcatenation.h | 57 char TokenInfo[tok::NUM_TOKENS];
|