HomeSort by relevance Sort by last modified time
    Searched full:tokenize (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 46 from cpp import tokenize namespace
549 if parts[-1].token_type == tokenize.NAME:
579 if (type_name and type_name[-1].token_type == tokenize.NAME and
580 p.token_type == tokenize.NAME):
581 type_name.append(tokenize.Token(tokenize.SYNTAX, ' ', 0, 0))
738 if token.token_type == tokenize.NAME:
749 if next.token_type == tokenize.SYNTAX and next.name == '(':
754 syntax = tokenize.SYNTAX
763 new_temp = self._GetTokensUpTo(tokenize.SYNTAX, ';'
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_headers_token_utils.cc 23 // Tokenize
45 // Tokenize just that line.
83 // Tokenize just that line
99 // We may have more then 1 line with the same header key. Tokenize them all
balsa_headers_token_utils.h 50 // Helper function to tokenize a header line once we have its description.
  /external/llvm/lib/MC/MCDisassembler/
EDInst.cpp 165 int EDInst::tokenize() { function in class:EDInst
175 return TokenizeResult.setResult(EDToken::tokenize(Tokens,
183 if (tokenize())
189 if (tokenize())
197 if (tokenize())
EDInst.h 90 /// The result of the tokenize() function
156 /// tokenize - populates the Tokens member of the instruction, returning 0 on
158 int tokenize();
EDToken.h 116 /// tokenize - Tokenizes a string using the platform- and syntax-specific
126 static int tokenize(std::vector<EDToken*> &tokens,
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteFtsTest.java 61 prepareFtsTable(TEST_TABLE, "fts3", "tokenize=porter");
77 prepareFtsTable(TEST_TABLE, "fts3", "tokenize=simple");
91 prepareFtsTable(TEST_TABLE, "fts4", "tokenize=simple");
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 43 final Token[] queryTokens = tokenize(query);
44 final Token[] suggestionTokens = tokenize(suggestion);
99 Token[] tokenize(final String seq) { method in class:LevenshteinSuggestionFormatter
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 114 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize("");
118 tokens = Rfc822Tokenizer.tokenize(text);
124 tokens = Rfc822Tokenizer.tokenize(text);
130 Rfc822Tokenizer.tokenize(null);
  /external/chromium/chrome/browser/autofill/
contact_info.cc 202 Tokenize(text, kNameSplitChars, &text_tokens);
244 Tokenize(text, kNameSplitChars, &text_tokens);
278 Tokenize(first, kNameSplitChars, &first_tokens_);
288 Tokenize(middle, kNameSplitChars, &middle_tokens_);
298 Tokenize(last, kNameSplitChars, &last_tokens_);
307 Tokenize(full, ASCIIToUTF16(" "), &full_name_tokens);
address.cc 168 Tokenize(line1, kAddressSplitChars, &line1_tokens_);
177 Tokenize(line2, kAddressSplitChars, &line2_tokens_);
221 Tokenize(text, kAddressSplitChars, &text_tokens);
  /external/webkit/Source/WebCore/html/parser/
CSSPreloadScanner.h 60 inline void tokenize(UChar c);
CSSPreloadScanner.cpp 58 tokenize(*iter);
61 inline void CSSPreloadScanner::tokenize(UChar c) function in class:WebCore::CSSPreloadScanner
  /external/webp/src/utils/
huffman_encode.h 39 // Create an optimized tree, and tokenize it.
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 61 destination.setText(Rfc822Tokenizer.tokenize(entry.getDestination())[0].getAddress());
  /external/sqlite/android/
sqlite3_android.cpp 306 static void tokenize(sqlite3_context * context, int argc, sqlite3_value ** argv) function
308 //ALOGD("enter tokenize");
314 ALOGE("Tokenize requires 4 to 6 arguments");
381 // Get the raw bytes for the string to tokenize
497 err = sqlite3_create_function(handle, "_TOKENIZE", 4, SQLITE_UTF16, collator, tokenize, NULL, NULL);
501 err = sqlite3_create_function(handle, "_TOKENIZE", 5, SQLITE_UTF16, collator, tokenize, NULL, NULL);
505 err = sqlite3_create_function(handle, "_TOKENIZE", 6, SQLITE_UTF16, collator, tokenize, NULL, NULL);
  /frameworks/base/core/java/android/text/util/
Rfc822Tokenizer.java 45 public static void tokenize(CharSequence text, Collection<Rfc822Token> out) { method in class:Rfc822Tokenizer
171 public static Rfc822Token[] tokenize(CharSequence text) { method in class:Rfc822Tokenizer
173 tokenize(text, out); method
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
LevenshteinFormatterTest.java 44 Token[] tokens = mFormatter.tokenize(input);
94 Token[] sourceTokens = mFormatter.tokenize(source);
95 Token[] targetTokens = mFormatter.tokenize(target);
  /external/chromium/chrome/browser/sync/syncable/
syncable_enum_conversions.cc 14 // We can't tokenize expected_min/expected_max since it can be a
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
matcher.py 37 to tokenize line by line. We can have different patterns apply to different
  /external/libvpx/vp8/encoder/
asm_enc_offsets.c 19 #include "tokenize.h"
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmLexer.cpp 1 //===-- MBlazeAsmLexer.cpp - Tokenize MBlaze assembly to AsmTokens --------===//
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
android.text.util.Rfc822Tokenizer.html 87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/text/util/Rfc822Tokenizer.html#tokenize(java.lang.CharSequence, java.util.Collection<android.text.util.Rfc822Token>)" target="_top"><code>tokenize</code></A>(<code>CharSequence,</nobr> Collection&lt;Rfc822Token&gt;<nobr><nobr></code>)</nobr>
  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 66 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(text);
124 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(cs);
  /external/webkit/Source/WebCore/inspector/front-end/
SourceHTMLTokenizer.re2js 226 // Do not tokenize script tag contents, keep lexer state, even though processing "<".
247 // Do not tokenize style tag contents, keep lexer state, even though processing "<".
268 // Do not tokenize script and style tag contents, keep lexer state, even though processing "<".
287 // Do not tokenize script tag contents.
296 // Do not tokenize style tag contents.

Completed in 1421 milliseconds

1 2 3 4 5