/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
ResourceValueCompleter.java | 86 * but computes complete results up front rather than dividing it up into 91 List<String> results = new ArrayList<String>(200); local 101 addMatches(repository, prefix, true /* isSystem */, results); 109 addMatches(repository, prefix, true /* isSystem */, results); 126 addMatches(repository, prefix, false /* isSystem */, results); 133 UiResourceAttributeNode.sortAttributeChoices(attributeDescriptor, results); 135 Collections.sort(results); 138 return results.toArray(new String[results.size()]); 142 List<String> results) { [all...] |
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_provider.cc | 149 WebKit::WebVector<WebKit::WebTextCheckingResult>* results) { 150 if (!results) 157 // UMA results seem to support that. Investigate, clean up if true. 159 spellcheck_->SpellCheckParagraph(text, results); 210 const std::vector<SpellCheckResult>& results) { 223 // Double-check the returned spellchecking results with our spellchecker to 229 results, 233 // Cache the request and the converted results. 264 const std::vector<SpellCheckResult>& results) { 276 results, [all...] |
spellcheck_provider.h | 79 WebKit::WebVector<WebKit::WebTextCheckingResult>* results) OVERRIDE; 99 const std::vector<SpellCheckResult>& results); 110 const std::vector<SpellCheckResult>& results); 118 // spellchecking results.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
BuildResultsElement.java | 11 package org.eclipse.test.internal.performance.results.model; 19 import org.eclipse.test.internal.performance.results.db.*; 20 import org.eclipse.test.internal.performance.results.utils.Util; 67 // Results category 69 BUILD_DATE_DESCRIPTOR.setCategory("Results"); 71 BUILD_BASELINE_DESCRIPTOR.setCategory("Results"); 73 BUILD_COMMENT_DESCRIPTOR.setCategory("Results"); 75 BUILD_SUMMARY_DESCRIPTOR.setCategory("Results"); 77 BUILD_IS_BASELINE_DESCRIPTOR.setCategory("Results"); 79 BUILD_TEST_FAILURE_DESCRIPTOR.setCategory("Results"); [all...] |
PerformanceResultsElement.java | 11 package org.eclipse.test.internal.performance.results.model; 21 import org.eclipse.test.internal.performance.results.db.*; 22 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 23 import org.eclipse.test.internal.performance.results.utils.Util; 65 : this.results == null 145 return (PerformanceResults) this.results; 149 String[] builds = this.results == null ? getBuildNames() : getPerformanceResults().getAllBuildNames(); 157 return super.isInitialized() && this.results.size() > 0; 169 this.results = new PerformanceResults(this.lastBuildName, null, null, System.out); 171 this.results = new PerformanceResults(buildName, null, null, System.out) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringTest.java | 174 String [] results = {"!\'123123.123?ello?orld!123123?ello?orld#", local 180 results[i], str.replaceAll(patterns[i], "?")); 196 String [] results = {"!'123123.123?elloWorld!123123helloworld#", local 202 results[i], str.replaceFirst(patterns[i], "?")); 216 String [][] results = {{"", "'","23", "23", "", "23HelloWorld", "", "23", local 222 patterns[i], Arrays.equals(results[i], str.split(patterns[i]))); 236 String [][] results = {{"", "'","23", "23.123HelloWorld!123123helloworld#"}, local 241 Arrays.equals(results[0], str.split(pattern, 4))); 243 Arrays.equals(results[1], str.split(pattern, 9))); 245 Arrays.equals(results[1], str.split(pattern, 0))) [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
mock_url_fetchers.cc | 23 const std::string& results, 49 const std::string& results, 71 const std::string& results, 92 const std::string& results, 123 const std::string& results, 167 const std::string& results,
|
/external/chromium_org/chrome/browser/chromeos/login/ |
mock_url_fetchers.cc | 24 const std::string& results, 50 const std::string& results, 67 const std::string& results, 84 const std::string& results, 111 const std::string& results, 151 const std::string& results,
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
suggestions_combiner_unittest.cc | 30 const char* results[8]; member in struct:__anon8948::TestDescription 203 // Keep the results of the db query here. 284 base::ListValue* results = combiner_->GetPageValues(); local 285 size_t result_count = results->GetSize(); 291 results->GetDictionary(j, &dictionary); 293 EXPECT_STREQ(description.results[j], value.c_str()) << 296 EXPECT_EQ(description.results[j], static_cast<const char*>(NULL)) <<
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
MockWebSpeechInputController.cpp | 50 WebSpeechInputResultArray results; local 51 results.assign(&res, 1); 52 return results; 172 // This would avoid generating the events used to check the results and the test would timeout. 180 vector<WebSpeechInputResult> results; local 181 results.push_back(res); 183 m_listener->setRecognitionResult(requestId, results);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
print-json-test-results | 12 parser = optparse.OptionParser(usage='%prog [path-to-results.json]') 18 help='include expected results along with unexpected') 42 results = json.loads(txt) 44 passes, failures, flakes = decode_results(results, options.expected) 60 results = json.loads(txt) 61 _, ignored_failures, _ = decode_results(results, options.expected) 75 def decode_results(results, include_expected=False): 76 tests = convert_trie_to_flat_paths(results['tests'])
|
/external/icu4c/i18n/ |
csr2022.cpp | 146 UBool CharsetRecog_2022JP::match(InputText *textIn, CharsetMatch *results) const { 151 results->set(textIn, this, confidence); 161 UBool CharsetRecog_2022KR::match(InputText *textIn, CharsetMatch *results) const { 166 results->set(textIn, this, confidence); 176 UBool CharsetRecog_2022CN::match(InputText *textIn, CharsetMatch *results) const { 181 results->set(textIn, this, confidence);
|
/external/junit/src/org/junit/runners/model/ |
TestClass.java | 95 ArrayList<Class<?>> results= new ArrayList<Class<?>>(); local 98 results.add(current); 101 return results; 142 List<T> results= new ArrayList<T>(); local 147 results.add(valueClass.cast(fieldValue)); 153 return results;
|
/build/tools/ |
findleaves.py | 62 Avoids returning results from inside any directory called <dirname> 92 results = list(set(perform_find(mindepth, prune, dirlist, filename))) 93 results.sort() 94 for r in results:
|
/external/chromium_org/build/android/pylib/monkey/ |
test_runner.py | 69 results = base_test_result.TestRunResults() 76 results.AddResult(result) 77 return results, False
|
/external/chromium_org/chrome/common/metrics/ |
entropy_provider_unittest.cc | 142 // significance of the results is checked. 187 // that have different names, normally generate different results. 208 // The trials are most likely to give different results since they have 216 // that have different names, normally generate different results. 238 // The trials are most likely to give different results since they have 272 const double results[] = { GenerateSHA1Entropy("hi", "1"), local 275 EXPECT_NE(results[0], results[1]); 276 for (size_t i = 0; i < arraysize(results); ++i) { 277 EXPECT_LE(0.0, results[i]) 288 const double results[] = { local [all...] |
/external/chromium_org/net/proxy/ |
mock_proxy_resolver.h | 29 ProxyInfo* results, 33 ProxyInfo* results() const { return results_; } function in class:net::MockAsyncProxyResolverBase::Request 77 ProxyInfo* results,
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
ui_unittests.js | 60 '<li class="ui-state-default ui-corner-top ui-state-disabled"><a href="#results">Results</a></li>' + 65 '<div id="results" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>' + 76 test("results.ResultsGrid", 1, function() { 77 var grid = new ui.results.ResultsGrid() 79 'http://example.com/layout-test-results/foo-bar-diff.txt', 80 'http://example.com/layout-test-results/foo-bar-expected.png', 81 'http://example.com/layout-test-results/foo-bar-actual.png', 82 'http://example.com/layout-test-results/foo-bar-diff.png', 95 '<td class="expected result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-expected.png"></td>' [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cfintst.c | 53 const static UCollationResult results[] = { variable 89 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 107 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
ficoll.cpp | 60 const Collator::EComparisonResult CollationFinnishTest::results[] = { member in class:CollationFinnishTest 74 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 82 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_queryobj.c | 38 * To avoid getting samples from another context's rendering in our results, 120 * to pick up the results. 132 /** Waits on the query object's BO and totals the results for this query */ 140 uint64_t *results; local 152 results = query->bo->virtual; 156 query->Base.Result += 80 * (results[1] - results[0]); 158 query->Base.Result += 1000 * ((results[1] >> 32) - (results[0] >> 32)); 179 query->Base.Result = 80 * (results[1] & 0xffffffff) [all...] |
/external/chromium_org/tools/perf/measurements/ |
loading_profile.py | 40 def MeasurePage(self, page, tab, results): 49 loading.LoadingMetric().AddResults(tab, results) 58 results.Add(function.replace('.', '_'), 'period', period)
|
/external/icu4c/test/cintltst/ |
cfintst.c | 53 const static UCollationResult results[] = { variable 89 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 107 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
/external/icu4c/test/intltest/ |
ficoll.cpp | 60 const Collator::EComparisonResult CollationFinnishTest::results[] = { member in class:CollationFinnishTest 74 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 82 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_queryobj.c | 38 * To avoid getting samples from another context's rendering in our results, 120 * to pick up the results. 132 /** Waits on the query object's BO and totals the results for this query */ 140 uint64_t *results; local 152 results = query->bo->virtual; 156 query->Base.Result += 80 * (results[1] - results[0]); 158 query->Base.Result += 1000 * ((results[1] >> 32) - (results[0] >> 32)); 179 query->Base.Result = 80 * (results[1] & 0xffffffff) [all...] |