|   /prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ | 
| tcp.h  | 55  __u32 words[5];  member in union:tcp_word_hdr  58 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /system/core/debuggerd/ | 
| tombstone.c  | 251         int scopeFlags, uintptr_t* sp, size_t words, int label) { 252     for (size_t i = 0; i < words; i++) { 318     // Dump a few words before the first frame. 322     // Dump a few words from all successive frames. 339             size_t words = frame->stack_size / sizeof(uint32_t);  local  340             if (words == 0) { 341                 words = 1; 342             } else if (words > STACK_WORDS) { 343                 words = STACK_WORDS; 345             dump_stack_segment(context, log, tid, scopeFlags, &sp, words, i)     [all...] | 
|   /external/chromium/chrome/browser/history/ | 
| in_memory_url_index.cc  | 181   // Split URL into individual, unique words then add in the title words. 185   String16Set words;  local  188                  std::insert_iterator<String16Set>(words, words.begin())); 189   for (String16Set::iterator word_iter = words.begin(); 190        word_iter != words.end(); ++word_iter) 405   // Break the terms down into individual terms (words), get the candidate 409   // is four words: 'http', 'www', 'somewebsite', and 'com'. 411   String16Set words = WordSetFromString16(uni_string)  local  475  String16Vector words = WordVectorFromString16(uni_string, false);  local  489  String16Vector words;  local      [all...] | 
|   /external/icu4c/common/ | 
| unistr.cpp  | 380     int32_t words = (int32_t)(((sizeof(int32_t) + (capacity + 1) * U_SIZEOF_UCHAR + 15) & ~15) >> 2);  local  381     int32_t *array = (int32_t*) uprv_malloc( sizeof(int32_t) * words ); 388       fUnion.fFields.fCapacity = (int32_t)((words - 1) * (sizeof(int32_t) / U_SIZEOF_UCHAR));     [all...] | 
|   /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ | 
| ShadowTextView.java  | 221         String[] words = text.toString().split("\\s+");  local  223         for (String word : words) {
  | 
|   /external/svox/pico/tts/ | 
| com_svox_picottsengine.cpp  | 750  *  Wrap all individual words in <phoneme> tags. 777         char * words[numWords];  local  781                 words[j]    = new char[i+1-start+17]; 782                 words[j][0] = '\0'; 783                 strcat( words[j], PICO_PHONEME_OPEN_TAG); 784                 strncat(words[j], xsampa+start, i-start); 785                 strcat( words[j], PICO_PHONEME_CLOSE_TAG); 788                 totalLength += strlen(words[j-1]); 791         words[j]    = new char[i+1-start+17]; 792         words[j][0] = '\0'     [all...] | 
|   /external/webkit/Source/WebKit/android/content/ | 
| address_detector.cpp  | 59 // Minimum number of words in an address after the house number 64 // Maximum number of words allowed in an address between the house number 76 // Maximum number of words after the house number in which the location name 171   // detected. Start tokenizing the following words to find a valid 186     std::vector<Word> words;  local  187     words.push_back(house_number); 199       if (next_word == words.size()) { 214         words.push_back(Word(tokenizer.token_begin(), tokenizer.token_end())); 219       const Word& current_word = words[next_word]; 230       // of words is exceeded     [all...] | 
|   /packages/apps/VoiceDialer/src/com/android/voicedialer/ | 
| CommandRecognizerEngine.java  | 252             // scan list, adding complete phrases, as well as individual words 267                 // split it into individual words, and insert them 268                 String[] words = label.split(" ");  local  269                 if (words.length > 1) { 270                     for (String word : words) { 272                         // words must be three characters long, or two if capitalized 339             // the we store our own mapping table between words and component 1058  String[] words = literal.trim().split(" ");  local      [all...] | 
|   /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ | 
| BinaryDictIOUtils.java  | 70             final Map<Integer, String> words, final Map<Integer, Integer> frequencies, 114                 words.put(info.mOriginalAddress, new String(pushedChars, 0, index)); 149      * @param words the map to store the address as a key and the word as a value. 156             final Map<Integer, String> words, final Map<Integer, Integer> frequencies, 161         readUnigramsAndBigramsBinaryInner(buffer, header.mHeaderSize, words, frequencies, bigrams,     [all...] | 
|   /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ | 
| OpenWnnDictionaryImpl.java  | 96     /** The max words of user dictionary */ 98     /** The max words of learning dictionary */ 491             /* If the cursor is not exist or the type of query is changed, compile the query string and query words */ 511             /* If the cursor is exist, bind new arguments and re-query words (DO NOT recompile the query string) */ 521             /* If querying is succeed, count the number of words */ 712                 /* Count all words in the user dictionary */ 721                     /* Retrieve all words in the user dictionary */ 722                     WnnWord[] words = new WnnWord[ numOfWords ];  local  726                         words[ i ] = new WnnWord(); 727                         words[ i ].stroke       = cursor.getString( 0 ) 931  WnnWord[] words = new WnnWord[1];  local  981  WnnWord[] words = new WnnWord[1];  local      [all...] | 
|   /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ | 
| CodeGenerator.java  | 586         long[] words = null;  local  588 			words = new long[1]; 593 			words = bits.toPackedArray(); 597 		String[] wordStrings = new String[words.length]; 598 		for (int j = 0; j < words.length; j++) { 599 			long w = words[j];     [all...] | 
|   /external/kernel-headers/original/linux/ | 
| tcp.h  | 65 	__u32 		  words[5];  member in union:tcp_word_hdr  68 #define tcp_flag_word(tp) ( ((union tcp_word_hdr *)(tp))->words [3]) 
  | 
|   /external/ping6/ | 
| ping6.c  | 1909  u_int16_t words; \/*32bit count*\/  member in struct:cbit      [all...] |