/external/openssh/ |
mdoc2man.awk | 47 retval=retval words[++w] 74 nwords=split($0,words) 77 if(match(words[w],"^Li|Pf$")) { 79 } else if(match(words[w],"^Xo$")) { 84 } else if(match(words[w],"^Xc$")) { 90 } else if(match(words[w],"^Bd$")) { 92 if(match(words[w+1],"-literal")) { 97 } else if(match(words[w],"^Ed$")) { 100 } else if(match(words[w],"^Ns$")) { 105 } else if(match(words[w],"^No$")) [all...] |
/external/flac/libFLAC/ |
bitreader.c | 81 * This should be at least twice as large as the largest number of words 94 static const unsigned FLAC__BITREADER_DEFAULT_CAPACITY = 65536u / FLAC__BITS_PER_WORD; /* in words */ 140 unsigned capacity; /* in words */ 141 unsigned words; /* # of completed words in buffer */ member in struct:FLAC__BitReader 142 unsigned bytes; /* # of bytes in incomplete word at buffer[words] */ 143 unsigned consumed_words; /* #words ... */ 217 end = br->words + (br->bytes? 1:0); 220 br->words -= start; 227 bytes = (br->capacity - br->words) * FLAC__BYTES_PER_WORD - br->bytes [all...] |
bitwriter.c | 79 static const unsigned FLAC__BITWRITER_DEFAULT_CAPACITY = 32768u / sizeof(bwword); /* size in words */ 81 static const unsigned FLAC__BITWRITER_DEFAULT_INCREMENT = 4096u / sizeof(bwword); /* size in words */ 83 #define FLAC__WORDS_TO_BITS(words) ((words) * FLAC__BITS_PER_WORD) 84 #define FLAC__TOTAL_BITS(bw) (FLAC__WORDS_TO_BITS((bw)->words) + (bw)->bits) 105 unsigned capacity; /* capacity of buffer in words */ 106 unsigned words; /* # of complete words in buffer */ member in struct:FLAC__BitWriter 128 /* calculate total words needed to store 'bits_to_add' additional bits */ 129 new_capacity = bw->words + ((bw->bits + bits_to_add + FLAC__BITS_PER_WORD - 1) / FLAC__BITS_PER_WORD) [all...] |
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_utils.cc | 63 // Returns true if |text| contains each string in |words|. This is used when 66 const std::vector<base::string16>& words) { 67 for (size_t i = 0; i < words.size(); ++i) { 69 words[i], text, NULL, NULL)) { 76 // Returns true if |node|s title or url contains the strings in |words|. 79 const std::vector<base::string16>& words, 82 DoesBookmarkTextContainWords(node->GetTitle(), words) || 83 DoesBookmarkTextContainWords(UTF8ToUTF16(node->url().spec()), words) || 86 net::UnescapeRule::NORMAL, NULL, NULL, NULL), words); 224 std::vector<base::string16> words; local 226 parser.ParseQueryWords(base::i18n::ToLower(text), &words); local [all...] |
/external/bison/lib/ |
lbitset.c | 41 /* Number of words to use for each element. The larger the value the 66 bitset_word words[LBITSET_ELT_WORDS]; /* Bits that are set. */ member in struct:lbitset_elt_struct 84 ((lbitset_elt *) (void *) ((char *) (X) - offsetof (lbitset_elt, words))) 151 memset (elt->words, 0, sizeof (elt->words)); 189 bset->b.cdata = next->words; 194 bset->b.cdata = prev->words; 221 bset->b.cdata = elt->prev->words; 248 if (elt->words[i]) 314 bset->b.cdata = elt->words; [all...] |
/bionic/libc/arch-x86/string/ |
swab.S | 25 testl $7,%ecx # copy first group of 1 to 7 words 35 L2: shrl $3,%ecx # copy remainder 8 words at a time
|
/build/core/ |
device.mk | 62 $(if $(filter 1,$(words $(d))), \ 64 $(if $(filter 0,$(words $(d))), \
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
JsonUtils.java | 87 /* package */ static void writeJson(final SuggestedWords words, final JsonWriter jsonWriter) 90 jsonWriter.name("typedWordValid").value(words.mTypedWordValid); 92 .value(words.mWillAutoCorrect); 94 .value(words.mIsPunctuationSuggestions); 95 jsonWriter.name("isObsoleteSuggestions").value(words.mIsObsoleteSuggestions); 96 jsonWriter.name("isPrediction").value(words.mIsPrediction); 99 final int size = words.size(); 101 final SuggestedWordInfo wordInfo = words.getInfo(j);
|
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
expand.py | 80 words = line.split() 81 bucket = bucket_set.get(int(words[BUCKET_ID])) 90 precedence += '(alloc=%d) ' % int(words[ALLOC_COUNT]) 91 precedence += '(free=%d) ' % int(words[FREE_COUNT]) 96 int(words[COMMITTED]), sizes)
|
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
callclient.cc | 84 std::string GetWord(const std::vector<std::string>& words, 86 if (words.size() > index) { 87 return words[index]; 93 int GetInt(const std::vector<std::string>& words, size_t index, int def) { 95 if (words.size() > index && talk_base::FromString(words[index], &val)) { 141 std::vector<std::string> words; local 155 words.push_back(word); 163 const std::string& command = GetWord(words, 0, ""); 169 options.video_bandwidth = GetInt(words, 1, cricket::kAutoBandwidth) [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
BinaryDictionaryDecayingTests.java | 210 final ArrayList<String> words = new ArrayList<String>(); local 214 words.add(word); 220 final String word = words.get(random.nextInt(words.size())); 262 final ArrayList<String> words = new ArrayList<String>(); local 267 words.add(word); 270 final int word0Index = random.nextInt(words.size()); 271 int word1Index = random.nextInt(words.size() - 1); 275 final String word0 = words.get(word0Index); 276 final String word1 = words.get(word1Index) [all...] |
BinaryDictionaryTests.java | 240 final ArrayList<String> words = new ArrayList<String>(); local 249 words.add(word); 256 final String word0 = words.get(random.nextInt(wordCount)); 257 final String word1 = words.get(random.nextInt(wordCount)); 437 final ArrayList<String> words = new ArrayList<String>(); local 446 words.add(word); 453 final String word0 = words.get(random.nextInt(wordCount)); 454 final String word1 = words.get(random.nextInt(wordCount)); 505 final ArrayList<String> words = new ArrayList<String>(); local 513 words.add(word) 604 final ArrayList<String> words = new ArrayList<String>(); local 649 final ArrayList<String> words = new ArrayList<String>(); local [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
BinaryDictDecoderEncoderTests.java | 150 final List<String> words, final HashMap<String, List<String>> shortcutMap) { 152 final String word = words.get(i); 165 final List<String> words, 170 dict.setBigram(words.get(w1), words.get(w2), BIGRAM_FREQ); 206 private void checkDictionary(final FusionDictionary dict, final List<String> words, 212 for (final String word : words) { 222 words.get(w1)); 223 assertNotNull(words.get(w1) + "," + words.get(w2), ptNode.getBigram(words.get(w2))) 317 addUnigrams(words.size(), dict, words, shortcuts); local [all...] |
/external/chromium_org/chrome/browser/autocomplete/ |
shortcuts_provider.cc | 277 // First, convert |text| to a vector of the unique words in it. 283 std::vector<base::string16> words; 286 words.push_back(word_iter.GetString()); 288 if (words.empty()) 290 std::sort(words.begin(), words.end()); 291 words.erase(std::unique(words.begin(), words.end()), words.end()) [all...] |
/external/chromium_org/chrome/browser/ui/webui/options/ |
edit_dictionary_browsertest.js | 38 // Verify that users can add and remove words in the dictionary. 58 // Verify that users can search words in the dictionary. 91 // Verify that dictionary shows newly added words that arrived in a 108 // Backend notifies UI that the words 'bar' and 'baz' were added. UI shows 109 // these new words. 114 // Verify that dictionary hides newly removed words that arrived in a 117 // Begin with a dictionary with words 'foo', 'bar', 'baz', and 'baz'. The 132 // Backend notifies UI that words 'foo' and 'bar' have been removed. UI 133 // removes these words.
|
language_dictionary_overlay_handler.cc | 95 const chrome::spellcheck_common::WordSet& words = dictionary_->GetWords(); local 96 for (chrome::spellcheck_common::WordSet::const_iterator it = words.begin(); 97 it != words.end(); ++it) {
|
/external/chromium_org/chrome/browser/history/ |
in_memory_url_index_types.cc | 120 String16Vector words = local 123 for (String16Vector::const_iterator iter = words.begin(); iter != words.end(); 138 String16Vector words; local 140 return words; 153 words.push_back(word); 161 return words;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
clike.js | 166 function words(str) { 167 var obj = {}, words = str.split(" "); 168 for (var i = 0; i < words.length; ++i) obj[words[i]] = true; 211 keywords: words(cKeywords), 212 blockKeywords: words("case do else for if switch while struct"), 213 atoms: words("null"), 218 keywords: words(cKeywords + " asm dynamic_cast namespace reinterpret_cast try bool explicit new " + 222 blockKeywords: words("catch class do else finally for if struct switch try while"), 223 atoms: words("true false null") [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
dtoa.cpp | 150 uint32_t* words() function in struct:WTF::BigInt 155 const uint32_t* words() const function in struct:WTF::BigInt 177 uint32_t* x = b.words(); 272 b.words()[0] = i; 306 for (xc = c.words(), xa = xc + wc; xc < xa; xc++) 308 xa = a->words(); 310 xb = b->words(); 312 xc0 = c.words(); 358 for (xc0 = c.words(), xc = xc0 + wc; wc > 0 && !*--xc; --wc) { } 437 const uint32_t* srcStart = b.words(); [all...] |
/ndk/ |
GNUmakefile | 31 ifneq ($(words $(NDK_ROOT)),1)
|
/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
callclient.cc | 86 std::string GetWord(const std::vector<std::string>& words, 88 if (words.size() > index) { 89 return words[index]; 95 int GetInt(const std::vector<std::string>& words, size_t index, int def) { 97 if (words.size() > index && talk_base::FromString(words[index], &val)) { 169 std::vector<std::string> words; local 183 words.push_back(word); 191 const std::string& command = GetWord(words, 0, ""); 197 options.video_bandwidth = GetInt(words, 1, cricket::kAutoBandwidth) [all...] |
/external/chromium_org/content/common/android/ |
address_parser_internal.cc | 249 bool FindStateStartingInWord(WordList* words, 345 const Word& first_word = words->at(state_first_word); 384 if (!WordLowerCaseEqualsASCII(words->at(state_word).begin, 385 words->at(state_word).end, &state_names[state].string[pos])) 388 pos += words->at(state_word).end - words->at(state_word).begin + 1; 394 // Ran out of words, extract more from the tokenizer. 395 if (++state_word == words->size()) { 400 words->push_back(
|
/external/chromium_org/third_party/skia/include/core/ |
SkChecksum.h | 52 const size_t words = bytes/4; local 55 for (size_t i = 0; i < words; i++) {
|