/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_text.h | 42 struct tgsi_token *tokens,
|
/external/llvm/tools/llvm-c-test/ |
llvm-c-test.h | 17 void tokenize_stdin(void (*cb)(char **tokens, int ntokens));
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_build.h | 62 struct tgsi_token *tokens, 76 struct tgsi_token *tokens, 90 struct tgsi_token *tokens, 107 struct tgsi_token *tokens,
|
tgsi_text.h | 42 struct tgsi_token *tokens,
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
StringUtils.java | 11 * Returns a string containing the tokens joined by delimiters. 15 public static String joinAndBidiFormat(String delimiter, Iterable<String> tokens) { 16 return joinAndBidiFormat(delimiter, tokens, BidiFormatter.getInstance()); 20 * Returns a string containing the tokens joined by delimiters. 25 String delimiter, Iterable<String> tokens, BidiFormatter bidiFormatter) { 28 for (String token : tokens) {
|
/external/chromium_org/chrome/browser/extensions/api/push_messaging/ |
sync_setup_helper.cc | 61 std::vector<std::string> tokens; 63 Tokenize(file_contents, delimiters, &tokens); 64 EXPECT_EQ(5U, tokens.size()) << "Password file \"" 67 if (5U != tokens.size()) 69 username_ = tokens[0]; 70 password_ = tokens[1]; 71 client_id_ = tokens[2]; 72 client_secret_ = tokens[3]; 73 refresh_token_ = tokens[4];
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMSettableTokenList.cpp | 54 void DOMSettableTokenList::add(const Vector<String>& tokens, ExceptionState& exceptionState) 56 DOMTokenList::add(tokens, exceptionState); 58 for (size_t i = 0; i < tokens.size(); ++i) { 60 m_tokens.set(AtomicString(tokens[i]), false); 62 m_tokens.add(AtomicString(tokens[i])); 75 void DOMSettableTokenList::remove(const Vector<String>& tokens, ExceptionState& exceptionState) 77 DOMTokenList::remove(tokens, exceptionState); 78 for (size_t i = 0; i < tokens.size(); ++i) 79 m_tokens.remove(AtomicString(tokens[i]));
|
DOMTokenList.cpp | 43 exceptionState.throwDOMException(InvalidCharacterError, "The token provided ('" + token + "') contains HTML space characters, which are not valid in tokens."); 50 bool DOMTokenList::validateTokens(const Vector<String>& tokens, ExceptionState& exceptionState) 52 for (size_t i = 0; i < tokens.size(); ++i) { 53 if (!validateToken(tokens[i], exceptionState)) 69 Vector<String> tokens; local 70 tokens.append(token.string()); 71 add(tokens, exceptionState); 76 void DOMTokenList::add(const Vector<String>& tokens, ExceptionState& exceptionState) 79 filteredTokens.reserveCapacity(tokens.size()); 80 for (size_t i = 0; i < tokens.size(); ++i) 98 Vector<String> tokens; local 167 Vector<String> tokens; local 196 Vector<String> tokens; local [all...] |
/hardware/qcom/display/msm8226/libqdutils/ |
mdp_version.cpp | 175 char *tokens[10]; local 176 memset(tokens, 0, sizeof(tokens)); 178 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens, 180 if(!strncmp(tokens[0], "pu_en", strlen("pu_en"))) { 181 mPanelInfo.mPartialUpdateEnable = atoi(tokens[1]); 186 if(!strncmp(tokens[0], "xstart", strlen("xstart"))) { 187 mPanelInfo.mLeftAlign = atoi(tokens[1]); 190 if(!strncmp(tokens[0], "walign", strlen("walign"))) { 191 mPanelInfo.mWidthAlign = atoi(tokens[1]) 252 char *tokens[10]; local [all...] |
/hardware/qcom/display/msm8084/libqdutils/ |
mdp_version.cpp | 169 char *tokens[10]; local 170 memset(tokens, 0, sizeof(tokens)); 172 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens, 174 if(!strncmp(tokens[0], "pu_en", strlen("pu_en"))) { 175 mPanelInfo.mPartialUpdateEnable = atoi(tokens[1]); 180 if(!strncmp(tokens[0], "xstart", strlen("xstart"))) { 181 mPanelInfo.mLeftAlign = atoi(tokens[1]); 184 if(!strncmp(tokens[0], "walign", strlen("walign"))) { 185 mPanelInfo.mWidthAlign = atoi(tokens[1]) 246 char *tokens[10]; local [all...] |
/frameworks/base/services/core/java/com/android/server/wm/ |
TaskGroup.java | 25 public ArrayList<IApplicationToken> tokens = new ArrayList<IApplicationToken>(); field in class:TaskGroup 29 return "id=" + taskId + " tokens=" + tokens;
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
MediaConditionTest.cpp | 42 Vector<MediaQueryToken> tokens; local 43 MediaQueryTokenizer::tokenize(testCases[i].input, tokens); 46 for (endToken = tokens.begin(); endToken != tokens.end() && endToken->type() != CommaToken; ++endToken) { } 47 RefPtrWillBeRawPtr<MediaQuerySet> mediaConditionQuerySet = MediaQueryParser::parseMediaCondition(tokens.begin(), endToken);
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
rhino-python.extensions | 33 tokens should be sent to the parser sometimes without a corresponding 48 This TokenStream normally just passes tokens through to the parser. 63 A queue of tokens is built up to hold multiple DEDENT tokens that 77 /** The queue of tokens */ 78 this.tokens = []; 117 if (this.tokens.length>0 ) { 118 var t = this.tokens[0]; 119 this.tokens.splice(0,1); 137 this.tokens = this.tokens.concat(hiddenTokens) [all...] |
/external/chromium_org/third_party/libwebp/utils/ |
huffman_encode.c | 262 HuffmanTreeToken* tokens, 266 tokens->code = value; 267 tokens->extra_bits = 0; 268 ++tokens; 275 tokens->code = value; 276 tokens->extra_bits = 0; 277 ++tokens; 281 tokens->code = 16; 282 tokens->extra_bits = repetitions - 3; 283 ++tokens; [all...] |
/external/webp/src/utils/ |
huffman_encode.c | 262 HuffmanTreeToken* tokens, 266 tokens->code = value; 267 tokens->extra_bits = 0; 268 ++tokens; 275 tokens->code = value; 276 tokens->extra_bits = 0; 277 ++tokens; 281 tokens->code = 16; 282 tokens->extra_bits = repetitions - 3; 283 ++tokens; [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
token.c | 113 VP8TBuffer* const tokens) { 116 if (!AddToken(tokens, last >= 0, base_id + 0)) { 124 if (!AddToken(tokens, v != 0, base_id + 1)) { 129 if (!AddToken(tokens, v > 1, base_id + 2)) { 132 if (!AddToken(tokens, v > 4, base_id + 3)) { 133 if (AddToken(tokens, v != 2, base_id + 4)) 134 AddToken(tokens, v == 4, base_id + 5); 135 } else if (!AddToken(tokens, v > 10, base_id + 6)) { 136 if (!AddToken(tokens, v > 6, base_id + 7)) { 137 AddConstantToken(tokens, v == 6, 159) 233 const token_t* const tokens = TOKEN_DATA(p); local 259 const token_t* const tokens = TOKEN_DATA(p); local [all...] |
/external/webp/src/enc/ |
token.c | 113 VP8TBuffer* const tokens) { 116 if (!AddToken(tokens, last >= 0, base_id + 0)) { 124 if (!AddToken(tokens, v != 0, base_id + 1)) { 129 if (!AddToken(tokens, v > 1, base_id + 2)) { 132 if (!AddToken(tokens, v > 4, base_id + 3)) { 133 if (AddToken(tokens, v != 2, base_id + 4)) 134 AddToken(tokens, v == 4, base_id + 5); 135 } else if (!AddToken(tokens, v > 10, base_id + 6)) { 136 if (!AddToken(tokens, v > 6, base_id + 7)) { 137 AddConstantToken(tokens, v == 6, 159) 233 const token_t* const tokens = TOKEN_DATA(p); local 259 const token_t* const tokens = TOKEN_DATA(p); local [all...] |
/external/qemu/qobject/ |
json-streamer.c | 57 qlist_append(parser->tokens, dict); 81 QDECREF(parser->tokens); 82 parser->tokens = NULL; 84 /* send current list of tokens to parser and reset tokenizer */ 87 parser->emit(parser, parser->tokens); 88 if (parser->tokens) { 89 QDECREF(parser->tokens); 91 parser->tokens = qlist_new(); 101 parser->tokens = qlist_new(); 121 QDECREF(parser->tokens); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
LegacyCommonTokenStream.cs | 43 * The most common stream of tokens is one where every token is buffered up 44 * and tokens are prefiltered for a certain channel (the parser will only 45 * see these tokens and cannot change the filter channel number during the 49 * <remarks>TODO: how to access the full token stream? How to track all tokens matched per rule?</remarks> 61 protected List<IToken> tokens; field in class:Antlr.Runtime.LegacyCommonTokenStream 63 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */ 66 /** <summary>Set<tokentype>; discard any tokens with this type</summary> */ 69 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */ 72 /** <summary>By default, track all incoming tokens</summary> */ 79 * The index into the tokens list of the current token (next toke [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
LegacyCommonTokenStream.cs | 41 * The most common stream of tokens is one where every token is buffered up 42 * and tokens are prefiltered for a certain channel (the parser will only 43 * see these tokens and cannot change the filter channel number during the 47 * <remarks>TODO: how to access the full token stream? How to track all tokens matched per rule?</remarks> 60 protected List<IToken> tokens; field in class:Antlr.Runtime.LegacyCommonTokenStream 62 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */ 65 /** <summary>Set<tokentype>; discard any tokens with this type</summary> */ 68 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */ 71 /** <summary>By default, track all incoming tokens</summary> */ 78 * The index into the tokens list of the current token (next toke [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
BufferedTokenStream.java | 35 /** Buffer all input tokens but do on-demand fetching of new tokens from 37 * proper lexing of future tokens. The ST template parser needs this, 43 * tokens to the parser. The stream can't ignore off-channel tokens. 47 * to confuse small moving window of tokens it uses for the full buffer. 57 protected List<Token> tokens = new ArrayList<Token>(100); field in class:BufferedTokenStream 62 /** The index into the tokens list of the current token (next token 63 * to consume). tokens[p] should be LT(1). p=-1 indicates need 108 public int size() { return tokens.size(); [all...] |
LegacyCommonTokenStream.java | 32 /** The most common stream of tokens is one where every token is buffered up 33 * and tokens are prefiltered for a certain channel (the parser will only 34 * see these tokens and cannot change the filter channel number during the 37 * TODO: how to access the full token stream? How to track all tokens matched per rule? 45 protected List tokens; field in class:LegacyCommonTokenStream 47 /** Map<tokentype, channel> to override some Tokens' channel numbers */ 50 /** Set<tokentype>; discard any tokens with this type */ 53 /** Skip tokens on any channel but this one; this is how we skip whitespace... */ 56 /** By default, track all incoming tokens */ 64 /** The index into the tokens list of the current token (next toke [all...] |
/external/chromium_org/net/tools/balsa/ |
balsa_headers_token_utils.h | 5 // Utility class that performs basic operations on header value tokens: parsing 6 // them out, checking for presense of certain tokens, and removing them. 29 // with that key, all of them will be tokenized and tokens will be added to 33 BalsaHeaders::HeaderTokenList* tokens); 42 // in some buffer, populates tokens list with beginning and end indices 43 // of all tokens present in the value string. 46 BalsaHeaders::HeaderTokenList* tokens); 53 BalsaHeaders::HeaderTokenList* tokens);
|
/external/jsmn/ |
jsmn.c | 9 jsmntok_t *tokens, size_t num_tokens) { 14 tok = &tokens[parser->toknext++]; 38 size_t len, jsmntok_t *tokens, size_t num_tokens) { 66 if (tokens == NULL) { 70 token = jsmn_alloc_token(parser, tokens, num_tokens); 87 size_t len, jsmntok_t *tokens, size_t num_tokens) { 100 if (tokens == NULL) { 103 token = jsmn_alloc_token(parser, tokens, num_tokens); 151 * Parse JSON string and fill tokens. 154 jsmntok_t *tokens, unsigned int num_tokens) [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameSplitter.java | 234 // Iterate over tokens, skipping over empty ones and marking tokens that 319 * Parses a full name and returns components as a list of tokens. 321 public int tokenize(String[] tokens, String fullName) { 335 tokens[count++] = tokenizer.mTokens[i]; 395 NameTokenizer tokens = new NameTokenizer(fullName); local 396 parsePrefix(name, tokens); 398 // If the name consists of just one or two tokens, treat them as first/last name, 400 if (tokens.mEndPointer > 2) { 401 parseSuffix(name, tokens); [all...] |