HomeSort by relevance Sort by last modified time
    Searched defs:results (Results 126 - 150 of 1800) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformationStore.java 108 List results = new ArrayList(); local
114 results.addAll(match1);
121 results.addAll(match2);
124 return results;
  /external/easymock/src/org/easymock/internal/
Results.java 23 public class Results implements Serializable {
31 private final List<Result> results = new ArrayList<Result>(); field in class:Results
42 results.add(result);
51 return results.get(i);
56 return results.get(i);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TestUtility.java 44 StringBuffer results = new StringBuffer(); local
48 results.append(replacement);
51 results.append(source.charAt(i));
54 return results.toString();
58 StringBuffer results = new StringBuffer(); local
63 results.append(replacement);
65 UTF16.append(results, cp);
68 return results.toString();
  /external/icu/icu4c/source/test/cintltst/
cjaptst.c 60 const static UCollationResult results[] = { variable
132 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
encoll.c 144 const static UCollationResult results[] = { variable
281 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
322 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
341 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
  /external/icu/icu4c/source/test/intltest/
allcoll.cpp 52 const Collator::EComparisonResult CollationDummyTest::results[] = { member in class:CollationDummyTest
101 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
119 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
129 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
152 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
encoll.cpp 136 static const Collator::EComparisonResult results[] = { variable
252 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
289 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
299 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
frcoll.cpp 79 const Collator::EComparisonResult CollationFrenchTest::results[] = member in class:CollationFrenchTest
154 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
jacoll.cpp 58 const Collator::EComparisonResult CollationKanaTest::results[] = { member in class:CollationKanaTest
116 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TestUtility.java 41 StringBuffer results = new StringBuffer(); local
45 results.append(replacement);
48 results.append(source.charAt(i));
51 return results.toString();
55 StringBuffer results = new StringBuffer(); local
60 results.append(replacement);
62 UTF16.append(results, cp);
65 return results.toString();
  /external/junit/src/main/java/org/junit/internal/runners/
TestClass.java 43 List<Method> results = new ArrayList<Method>(); local
48 if (annotation != null && !isShadowed(eachMethod, results)) {
49 results.add(eachMethod);
54 Collections.reverse(results);
56 return results;
63 private boolean isShadowed(Method method, List<Method> results) {
64 for (Method each : results) {
88 ArrayList<Class<?>> results = new ArrayList<Class<?>>(); local
91 results.add(current);
94 return results;
    [all...]
  /external/libxcam/modules/isp/
isp_image_processor.cpp 78 IspImageProcessor::apply_3a_results (X3aResultList &results)
82 if (results.empty())
96 if ((ret = merge_results (results)) != XCAM_RETURN_NO_ERROR) {
101 if ((ret = apply_exposure_result (results)) != XCAM_RETURN_NO_ERROR) {
121 X3aResultList results; local
122 results.push_back (result);
123 ret = apply_3a_results (results);
128 IspImageProcessor::merge_results (X3aResultList &results)
130 if (results.empty())
133 for (X3aResultList::iterator iter = results.begin ()
    [all...]
  /external/libxcam/xcore/
smart_analyzer.cpp 138 X3aResultList results; local
152 ret = handler->analyze (buffer, results);
159 if (!results.empty ()) {
160 set_results_timestamp (results, buffer->get_timestamp ());
161 notify_calculation_done (results);
170 SmartAnalyzer::post_smart_results (X3aResultList &results, int64_t timestamp)
172 if (!results.empty ()) {
173 set_results_timestamp (results, timestamp);
174 notify_calculation_done (results);
  /external/libxml2/
testThreadsWin32.c 90 DWORD results[MAX_ARGC]; local
100 results[i] = 0;
121 ret = GetExitCodeThread (tid[i], &results[i]);
132 if (results[i] != (DWORD) Okay)
  /external/lisa/tools/analysis/
run_binder_throughput_analysis.py 31 For deserializing and plotting results obtained from binderThroughputTest
154 results = f.read().split("\n\n")[:-1] variable
155 results = list(map(deserialize, results)) variable
157 latency = [r["avg_latency"] for r in results]
158 throughput = [r["iters"] for r in results]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_queryobj.c 51 * counters, the CS stall guarantees that the results will be
168 uint64_t *results = query->bo->virtual; local
174 query->Base.Result += 80 * (results[1] - results[0]);
194 * The query BO contains a single timestamp value in results[0].
196 query->Base.Result = 80 * (results[0] & 0xffffffff);
204 query->Base.Result += results[1] - results[0];
209 if (results[0] != results[1]
    [all...]
  /external/pdfium/xfa/fde/
cfde_texteditengine_unittest.cpp 540 std::vector<const wchar_t*> results; member in struct:__anon31530
566 for (const auto* res : t.results) {
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAutoCompleteTextViewTest.java 47 FilterResults results = new FilterResults(); local
49 results.count = 2;
50 results.values = new ArrayList<>(Arrays.asList("Foo", "Bar"));
52 return results;
56 protected void publishResults(CharSequence text, FilterResults results) {
57 if (results != null) {
59 adapter.addAll((List<String>) results.values);
  /external/skia/tests/
DashPathEffectTest.cpp 70 SkPathEffect::PointData results; local
76 bool actualResult = dash->asPoints(&results, src, rec, mats[i], &cull);
  /external/skqp/tests/
DashPathEffectTest.cpp 70 SkPathEffect::PointData results; local
76 bool actualResult = dash->asPoints(&results, src, rec, mats[i], &cull);
  /external/tensorflow/tensorflow/contrib/lite/kernels/
add_test.cc 131 std::vector<std::initializer_list<float>> results = { local
142 results[i], kQuantizedTolerance)))
153 std::vector<std::initializer_list<float>> results = {{-0.2, 0.6, 1.0, -0.1}, local
164 results[i], kQuantizedTolerance)))
  /frameworks/base/core/java/android/os/health/
SystemHealthManager.java 123 final HealthStats[] results = new HealthStats[uids.length]; local
126 results[i] = parcelers[i].getHealthStats();
128 return results;
  /frameworks/base/core/java/android/widget/
CursorFilter.java 24 * and convert the results into String that can be used by auto-completion
51 FilterResults results = new FilterResults(); local
53 results.count = cursor.getCount();
54 results.values = cursor;
56 results.count = 0;
57 results.values = null;
59 return results;
63 protected void publishResults(CharSequence constraint, FilterResults results) {
66 if (results.values != null && results.values != oldCursor)
    [all...]
  /frameworks/base/location/java/android/location/
Geocoder.java 75 * @param locale the desired Locale for the query results
105 * The results are a best guess and are not guaranteed to be meaningful or
132 List<Address> results = new ArrayList<Address>(); local
134 mParams, results);
138 return results;
155 * The results are a best guess and are not guaranteed to be meaningful or
160 * @param maxResults max number of results to return. Smaller numbers (1 to 5) are recommended
174 List<Address> results = new ArrayList<Address>(); local
176 0, 0, 0, 0, maxResults, mParams, results);
180 return results;
    [all...]
  /frameworks/support/cursoradapter/src/main/java/androidx/cursoradapter/widget/
CursorFilter.java 25 * delegate methods to run the queries and convert the results into String
52 FilterResults results = new FilterResults(); local
54 results.count = cursor.getCount();
55 results.values = cursor;
57 results.count = 0;
58 results.values = null;
60 return results;
64 protected void publishResults(CharSequence constraint, FilterResults results) {
67 if (results.values != null && results.values != oldCursor)
    [all...]

Completed in 658 milliseconds

1 2 3 4 56 7 8 91011>>