HomeSort by relevance Sort by last modified time
    Searched refs:tokenCount (Results 1 - 7 of 7) sorted by null

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameLookupBuilder.java 100 int tokenCount = mSplitter.tokenize(mNames, name);
101 if (tokenCount == 0) {
105 for (int i = 0; i < tokenCount; i++) {
109 boolean tooManyTokens = tokenCount > MAX_NAME_TOKENS;
111 insertNameVariant(rawContactId, dataId, tokenCount, NameLookupType.NAME_EXACT, true);
114 Arrays.sort(mNames, 0, tokenCount, new Comparator<String>() {
124 for (int i = MAX_NAME_TOKENS; i < tokenCount; i++) {
130 tokenCount = MAX_NAME_TOKENS;
134 for (int i = 0; i < tokenCount; i++) {
138 insertNameVariants(rawContactId, dataId, 0, tokenCount, !tooManyTokens, true)
    [all...]
ContactLocaleUtils.java 94 final int tokenCount = tokens.size();
101 for (int i = tokenCount - 1; i >= 0; i--) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 105 int tokenCount = 0;
116 tokens[tokenCount++] = new Token(chars, start, end);
120 Token[] ret = new Token[tokenCount];
121 System.arraycopy(tokens, 0, ret, 0, tokenCount);
  /external/icu4c/tools/gennames/
gennames.c 38 * uint16_t tokenCount;
39 * uint16_t tokenTable[tokenCount];
45 * if(c>=tokenCount) write that character c directly
269 static uint32_t tokenCount;
820 tokenCount=i;
827 tokenCount=256-letterCount;
828 for(i=tokenCount; i<wordCount; ++i) {
834 uprv_sortArray(words+tokenCount, wordCount-tokenCount, sizeof(Word),
843 tokenCount=wordCount+letterCount+(LEADBYTE_LIMIT-1)
    [all...]
  /external/icu4c/common/
unames.c 263 uint16_t token, tokenCount=*tokens++, bufferPos=0;
272 if((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
297 if(c>=tokenCount) {
321 if ((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
356 uint16_t token, tokenCount=*tokens++;
366 if((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
391 if(c>=tokenCount) {
419 if ((uint8_t)';'>=tokenCount || tokens[(uint8_t)';']==(uint16_t)(-1)) {
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 595 int tokenCount = 0;
612 if (tokenCount >= maxTokenCount) {
619 allTokens[tokenCount] = (char*)malloc(strlen(SrcStr) + 1);
620 strcpy(allTokens[tokenCount++], SrcStr);
624 allTokens[tokenCount] = (char*)malloc(strlen(SrcStr) + 1);
625 strcpy(allTokens[tokenCount++], SrcStr);
629 allTokens[tokenCount] = (char*)malloc(strlen(SrcStr) + 1);
630 strcpy(allTokens[tokenCount++], SrcStr);
639 allTokens[tokenCount] = (char*)malloc(2);
640 strcpy(allTokens[tokenCount++], SrcStrName)
    [all...]
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java     [all...]

Completed in 79 milliseconds