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

1 2

  /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/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/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())
EDToken.h 116 /// tokenize - Tokenizes a string using the platform- and syntax-specific
126 static int tokenize(std::vector<EDToken*> &tokens,
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.cpp 88 int EDToken::tokenize(std::vector<EDToken*> &tokens, function in class:EDToken
  /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/apache-xml/src/main/java/org/apache/xpath/compiler/
Lexer.java 96 void tokenize(String pat) throws javax.xml.transform.TransformerException method in class:Lexer
98 tokenize(pat, null); method
109 void tokenize(String pat, Vector targetStrings) method in class:Lexer
  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 66 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(text);
124 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(cs);
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 61 destination.setText(Rfc822Tokenizer.tokenize(entry.getDestination())[0].getAddress());
RecipientAlternatesAdapter.java 85 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(inAddresses.get(i).toLowerCase());
  /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/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);
  /external/libvpx/vp8/
vp8cx.mk 63 VP8_CX_SRCS-yes += encoder/tokenize.h
79 VP8_CX_SRCS-yes += encoder/tokenize.c
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameLookupBuilder.java 100 int tokenCount = mSplitter.tokenize(mNames, name);
143 int tokenCount = mSplitter.tokenize(mNames, name);
  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.h 135 size_t tokenize(const std::string& source, char delimiter,
logging.cc 277 tokenize(params, ' ', &tokens);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Address.java 120 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(addressList);
143 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(addressList);
  /external/e2fsprogs/e2fsck/
dict.c 1227 static int tokenize(char *string, ...) function
1322 if (tokenize(in+1, &tok1, &tok2, (char **) 0) != 2) {
    [all...]
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 86 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(text.toString().trim());
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 235 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize("Foo Bar (something) <foo@google.com>");
245 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize("\"Foo Bar\\");
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsEditor.java 341 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(number);

Completed in 1832 milliseconds

1 2