/dalvik/vm/arch/x86/ |
Hints386ABI.cpp | 64 unsigned int jniHints, wordCount; 67 wordCount = 0; 74 wordCount++; 77 wordCount++; 81 if (wordCount > 0xFFFF) { 85 jniHints = wordCount;
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
LatinImeStressTests.java | 37 final int wordCount = random.nextInt(maxWordCountToTypeInEachIteration); 38 for (int j = 0; j < wordCount; ++j) { 54 final int wordCount = random.nextInt(maxWordCountToTypeInEachIteration); 55 for (int j = 0; j < wordCount; ++j) {
|
BinaryDictionaryTests.java | 128 final int wordCount = 1000; 146 for (int i = 0; i < wordCount; ++i) { 224 final int wordCount = 100; 247 for (int i = 0; i < wordCount; ++i) { 256 final String word0 = words.get(random.nextInt(wordCount)); 257 final String word1 = words.get(random.nextInt(wordCount)); 420 final int wordCount = 100; 444 for (int i = 0; i < wordCount; ++i) { 453 final String word0 = words.get(random.nextInt(wordCount)); 454 final String word1 = words.get(random.nextInt(wordCount)); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CompletionDictionary.js | 63 wordCount: function(word) { } 126 wordCount: function(word)
|
CodeMirrorTextEditor.js | [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
Form35c.java | 93 return (wordCount(regs) >= 0); 131 private static int wordCount(RegisterSpecList regs) { 168 int wordCount = wordCount(orig); 171 if (wordCount == sz) { 175 RegisterSpecList result = new RegisterSpecList(wordCount);
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form35c.java | 94 return (wordCount(regs) >= 0); 148 private static int wordCount(RegisterSpecList regs) { 185 int wordCount = wordCount(orig); 188 if (wordCount == sz) { 192 RegisterSpecList result = new RegisterSpecList(wordCount);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
Form35c.java | 95 return (wordCount(regs) >= 0); 149 private static int wordCount(RegisterSpecList regs) { 186 int wordCount = wordCount(orig); 189 if (wordCount == sz) { 193 RegisterSpecList result = new RegisterSpecList(wordCount);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
thcoll.cpp | 95 int32_t wordCount = 0; 99 ++wordCount; 100 if (wordCount <= 8) { 102 logln((UnicodeString)"Word " + wordCount + ": " + IntlTest::prettify(word, str)); 114 logln((UnicodeString)"Words checked: " + wordCount); 142 int32_t wordCount = 0; 146 ++wordCount; 147 if (wordCount <= 8) { 149 logln((UnicodeString)"Word " + wordCount + ": " + IntlTest::prettify(word, str)); 196 logln((UnicodeString)"Words checked: " + wordCount); [all...] |
rbbitst.cpp | 673 int32_t wordCount; 699 wordCount = 0; 717 wordCount += 1; 728 if (wordCount < 50) { 729 errln("Word count (%d) unreasonably small\n", wordCount); 740 if (wordCount != (testCount = enumer1->count(status))) { 742 testCount, wordCount, u_errorName(status)); 759 if (wordCount != (testCount = enumer2->count(status))) { 761 testCount, wordCount, u_errorName(status)); 786 if (wordCount != (testCount = cloneEnum->count(status))) [all...] |
/external/icu4c/test/intltest/ |
thcoll.cpp | 96 int32_t wordCount = 0; 100 ++wordCount; 101 if (wordCount <= 8) { 103 logln((UnicodeString)"Word " + wordCount + ": " + IntlTest::prettify(word, str)); 115 logln((UnicodeString)"Words checked: " + wordCount); 143 int32_t wordCount = 0; 147 ++wordCount; 148 if (wordCount <= 8) { 150 logln((UnicodeString)"Word " + wordCount + ": " + IntlTest::prettify(word, str)); 195 logln((UnicodeString)"Words checked: " + wordCount); [all...] |
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Info.java | 42 int wordCount = 0; 47 ++wordCount; 60 System.out.println("Words in the dictionary : " + wordCount);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
CandidateTextView.java | 91 * @param wordCount candidate id 96 public CandidateTextView setCandidateTextView(WnnWord word, int wordCount, 101 setId(wordCount);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
TypeListItem.java | 168 int wordCount = 0; 170 wordCount += typeIdItem.getRegisterCount(); 172 return wordCount;
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/ |
ttsdebug.js | 300 var wordCount = 0; 318 var min = wordExpected[wordCount].min; 319 var max = wordExpected[wordCount].max; 325 if (wordCount != 4) { 337 wordCount++; 363 if (wordCount == 0) { 365 } else if (wordCount < wordExpected.length) { 367 } else if (wordCount > wordExpected.length) {
|
/frameworks/base/core/java/android/widget/ |
ArrayAdapter.java | 487 final int wordCount = words.length; 490 for (int k = 0; k < wordCount; k++) {
|
SimpleAdapter.java | 355 int wordCount = words.length; 357 for (int k = 0; k < wordCount; k++) {
|
SpellChecker.java | 591 int wordCount = 0; 670 if (wordCount >= MAX_NUMBER_OF_WORDS) { 712 wordCount++; [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
WebAXObjectProxy.cpp | 427 size_t wordCount = starts.size(); 428 BLINK_ASSERT(ends.size() == wordCount); 431 if (!wordCount) { 438 for (size_t j = 0; j < wordCount - 1; j++) { 447 wordStart = start + starts[wordCount - 1]; 448 wordEnd = start + ends[wordCount - 1]; [all...] |
/frameworks/base/core/java/android/app/ |
LauncherActivity.java | 213 int wordCount = words.length; 215 for (int k = 0; k < wordCount; k++) {
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
reapits.c | [all...] |
/external/icu4c/test/cintltst/ |
reapits.c | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar | |
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | |
/prebuilts/misc/common/ecj/ |
ecj.jar | |