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

1 2 3 4 5 6

  /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.
  /packages/apps/ContactsCommon/res/values/
integers.xml 23 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-land/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-sw580dp-land/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-sw680dp/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-sw680dp-land/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /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);
  /packages/apps/ContactsCommon/res/values-sw580dp/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /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);
  /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 258 static void tokenize(sqlite3_context * context, int argc, sqlite3_value ** argv) function
260 //ALOGD("enter tokenize");
266 ALOGE("Tokenize requires 4 to 6 arguments");
333 // Get the raw bytes for the string to tokenize
449 err = sqlite3_create_function(handle, "_TOKENIZE", 4, SQLITE_UTF16, collator, tokenize, NULL, NULL);
453 err = sqlite3_create_function(handle, "_TOKENIZE", 5, SQLITE_UTF16, collator, tokenize, NULL, NULL);
457 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/libvpx/vp8/encoder/
asm_enc_offsets.c 18 #include "tokenize.h"
  /external/libvpx/generic/
libvpx_srcs.txt 121 vp8/encoder/tokenize.c
122 vp8/encoder/tokenize.h
  /external/libvpx/libvpx/vp8/
vp8cx.mk 60 VP8_CX_SRCS-yes += encoder/tokenize.h
74 VP8_CX_SRCS-yes += encoder/tokenize.c

Completed in 3130 milliseconds

1 2 3 4 5 6