HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 76 - 100 of 27666) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libmojo/base/
base_paths.cc 13 bool PathProvider(int key, FilePath* result) {
18 PathService::Get(FILE_EXE, result);
19 *result = result->DirName();
22 PathService::Get(FILE_MODULE, result);
23 *result = result->DirName();
26 if (!GetTempDir(result))
30 *result = GetHomeDir();
41 *result = test_data_path
    [all...]
  /external/tensorflow/tensorflow/stream_executor/lib/
path.cc 31 string result; local
36 if (result.empty()) {
37 result = path.ToString();
41 if (result[result.size() - 1] == '/') {
43 StrAppend(&result, path.substr(1));
45 StrAppend(&result, path);
49 StrAppend(&result, path);
51 StrAppend(&result, "/", path);
56 return result;
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
GenericVisitorAdapter.java 37 * that returns a value will stop the visitation and be the end result.
46 R result; local
48 result = n.getMembers().accept(this, arg);
49 if (result != null)
50 return result;
53 result = n.getName().accept(this, arg);
54 if (result != null)
55 return result;
58 result = n.getAnnotations().accept(this, arg);
59 if (result != null
73 R result; local
105 R result; local
127 R result; local
154 R result; local
171 R result; local
193 R result; local
215 R result; local
237 R result; local
254 R result; local
266 R result; local
283 R result; local
305 R result; local
327 R result; local
339 R result; local
356 R result; local
398 R result; local
430 R result; local
462 R result; local
489 R result; local
536 R result; local
553 R result; local
575 R result; local
587 R result; local
599 R result; local
616 R result; local
648 R result; local
685 R result; local
712 R result; local
729 R result; local
756 R result; local
778 R result; local
805 R result; local
837 R result; local
864 R result; local
886 R result; local
908 R result; local
920 R result; local
932 R result; local
954 R result; local
966 R result; local
983 R result; local
1005 R result; local
1037 R result; local
1089 R result; local
1106 R result; local
1128 R result; local
1140 R result; local
1177 R result; local
1199 R result; local
1231 R result; local
1248 R result; local
1270 R result; local
1282 R result; local
1304 R result; local
1326 R result; local
1348 R result; local
1370 R result; local
1387 R result; local
1409 R result; local
1421 R result; local
1438 R result; local
1460 R result; local
1482 R result; local
1504 R result; local
1521 R result; local
1538 R result; local
1570 R result; local
1587 R result; local
1614 R result; local
1631 R result; local
1648 R result; local
1670 R result; local
1697 R result; local
1714 R result; local
1736 R result; local
1763 R result; local
1785 R result; local
1807 R result; local
1824 R result; local
1841 R result; local
1853 R result; local
1865 R result = ((Node) v).accept(this, arg); local
1876 R result; local
1903 R result; local
1920 R result; local
1942 R result; local
1964 R result; local
1981 R result; local
2003 R result; local
2015 R result; local
2041 R result; local
    [all...]
  /external/clang/test/CodeGen/
builtins-overflow.c 174 volatile int result; local
175 if (__builtin_add_overflow(x, y, &result))
177 return result;
183 unsigned result; local
184 if (__builtin_uadd_overflow(x, y, &result))
186 return result;
192 unsigned long result; local
193 if (__builtin_uaddl_overflow(x, y, &result))
195 return result;
201 unsigned long long result; local
210 unsigned result; local
219 unsigned long result; local
228 unsigned long long result; local
237 unsigned result; local
246 unsigned long result; local
255 unsigned long long result; local
264 int result; local
273 long result; local
282 long long result; local
291 int result; local
300 long result; local
309 long long result; local
318 int result; local
327 long result; local
336 long long result; local
    [all...]
  /external/tpm2/
HandleProcess.c 17 TPM_RC result = TPM_RC_SUCCESS; local
22 result = TPMI_DH_OBJECT_Unmarshal(
25 if (result != TPM_RC_SUCCESS) {
26 return result;
29 result = TPMI_DH_OBJECT_Unmarshal(
32 if (result != TPM_RC_SUCCESS) {
33 return result;
40 result = TPMI_DH_OBJECT_Unmarshal(
43 if (result != TPM_RC_SUCCESS) {
44 return result;
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SyncResultTest.java 20 SyncResult result = new SyncResult(); local
21 assertThat(result.stats, not(nullValue()));
26 SyncResult result = new SyncResult(); local
27 assertFalse(result.hasSoftError());
28 result.stats.numIoExceptions++;
29 assertTrue(result.hasSoftError());
30 assertTrue(result.hasError());
35 SyncResult result = new SyncResult(); local
36 assertFalse(result.hasHardError());
37 result.stats.numAuthExceptions++
44 SyncResult result = new SyncResult(); local
52 SyncResult result = new SyncResult(); local
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSyncResultTest.java 17 SyncResult result = new SyncResult(); local
18 assertThat(result.stats).isNotNull();
23 SyncResult result = new SyncResult(); local
24 assertFalse(result.hasSoftError());
25 result.stats.numIoExceptions++;
26 assertTrue(result.hasSoftError());
27 assertTrue(result.hasError());
32 SyncResult result = new SyncResult(); local
33 assertFalse(result.hasHardError());
34 result.stats.numAuthExceptions++
41 SyncResult result = new SyncResult(); local
49 SyncResult result = new SyncResult(); local
    [all...]
  /frameworks/wilhelm/src/
trace.h 35 #define SL_ENTER_GLOBAL SLresult result;
36 #define SL_LEAVE_GLOBAL return result;
37 #define SL_ENTER_INTERFACE SLresult result;
38 #define SL_LEAVE_INTERFACE return result;
42 #define XA_ENTER_GLOBAL XAresult result;
43 #define XA_LEAVE_GLOBAL return result;
44 #define XA_ENTER_INTERFACE XAresult result;
45 #define XA_LEAVE_INTERFACE return result;
50 extern void slTraceLeaveGlobal(const char *function, SLresult result);
52 extern void slTraceLeaveInterface(const char *function, SLresult result);
    [all...]
  /external/aac/libFDK/include/mips/
clz_mips.h 112 INT result; local
113 __asm__("clz %0,%1" : "=d"(result) : "d"(value));
115 return result;
122 INT result; local
123 __asm__("clz %[result], %[value]"
124 : [result] "=r"(result)
127 return result;
  /external/libmojo/base/android/java/src/org/chromium/base/
Callback.java 10 * A simple single-argument callback to handle the result of a computation.
12 * @param <T> The type of the computation's result.
16 * Invoked with the result of a computation.
18 public abstract void onResult(T result);
22 private void onResultFromNative(Object result) {
23 onResult((T) result);
28 private void onResultFromNative(boolean result) {
29 onResult((T) Boolean.valueOf(result));
34 private void onResultFromNative(int result) {
35 onResult((T) Integer.valueOf(result));
    [all...]
  /external/libmojo/base/android/
path_utils.h 19 // application. The result is placed in the FilePath pointed to by 'result'.
22 BASE_EXPORT bool GetDataDirectory(FilePath* result);
26 BASE_EXPORT bool GetDatabaseDirectory(FilePath* result);
28 // Retrieves the absolute path to the cache directory. The result is placed in
29 // the FilePath pointed to by 'result'. This method is dedicated for
32 BASE_EXPORT bool GetCacheDirectory(FilePath* result);
34 // Retrieves the path to the thumbnail cache directory. The result is placed
35 // in the FilePath pointed to by 'result'.
36 BASE_EXPORT bool GetThumbnailCacheDirectory(FilePath* result);
    [all...]
  /libnativehelper/tests/
JniInvocation_test.cpp 53 const char* result = local
55 EXPECT_FALSE(result == NULL);
56 if (result != NULL) {
57 EXPECT_TRUE(strcmp(result, kTestNonNull2) == 0);
58 EXPECT_FALSE(strcmp(result, kExpected) == 0);
61 result =
63 EXPECT_FALSE(result == NULL);
64 if (result != NULL) {
65 EXPECT_TRUE(strcmp(result, kTestNonNull) == 0);
66 EXPECT_FALSE(strcmp(result, kTestNonNull2) == 0)
78 const char* result = JniInvocation::GetLibrary(NULL, buffer, is_debuggable, nullptr); local
    [all...]
  /cts/tools/dasm/src/dasm/
parser.java     [all...]
  /art/test/110-field-access/src/
Main.java 33 int result = 0; local
35 result = intVal;
37 return result;
40 int result = 0; local
42 result = finalIntVal;
44 return result;
47 int result = 0; local
49 result = staticIntVal;
51 return result;
54 int result = 0 local
61 int result = 0; local
69 int result = 0; local
77 int result = 0; local
85 int result = 0; local
93 int result = 0; local
    [all...]
  /external/aac/libFDK/include/x86/
clz_x86.h 112 INT result; local
115 result = __builtin_clz(value);
117 result = 32;
119 return result;
123 INT result; local
130 result = fixnormz_D(value);
131 return result - 1;
142 unsigned long result = 0; local
144 err = _BitScanReverse(&result, value);
146 return 31 - result;
153 INT result; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.c 40 memset(&tests[i].result, 0, sizeof(tests[i].result));
41 tests[i].test_func(&tests[i].result);
43 tests[i].result.pass, tests[i].result.test_count);
44 if (tests[i].result.pass != tests[i].result.test_count) {
51 void test_begin(struct test_result * result)
53 result->test_count++;
56 void test_check(struct test_result * result, int cond
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
div_32.cpp 46 that the result will not saturate.
104 result = 32-bit quotient of of the division of two 32 bit integers
125 3. result = L_num * (1/L_denom).
179 Word32 result; local
187 result = Mpy_32_16(L_denom_hi, L_denom_lo, approx, pOverflow);
188 /* result is > 0 , and less than 1.0 */
189 result = 0x7fffffffL - result;
191 hi = (Word16)(result >> 16);
192 lo = (result >> 1) - (hi << 15)
    [all...]
shr.cpp 114 product = Shifted result limited to 16 bits (Word16)
127 -var2 with sign extension. Saturate the result in case of underflows or
207 Word16 result; local
216 result = ((var1 < 0) ? -1 : 0);
222 result = (~((~var1) >> var2));
226 result = (var1 >> var2);
241 result = (Word16)(temp_res);
243 if (temp_res != (Word32) result)
246 result = ((var1 > 0) ? MAX_16 : MIN_16);
253 result = var1
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DoubleBenchmark.java 24 long result = 123; local
26 result = Double.doubleToLongBits(d);
28 if (result != l) {
29 throw new RuntimeException(Long.toString(result));
34 long result = 123; local
36 result = Double.doubleToRawLongBits(d);
38 if (result != l) {
39 throw new RuntimeException(Long.toString(result));
44 double result = 123.0; local
46 result = Double.longBitsToDouble(l)
    [all...]
FloatBenchmark.java 24 int result = 123; local
26 result = Float.floatToIntBits(f);
28 if (result != i) {
29 throw new RuntimeException(Integer.toString(result));
34 int result = 123; local
36 result = Float.floatToRawIntBits(f);
38 if (result != i) {
39 throw new RuntimeException(Integer.toString(result));
44 float result = 123.0f; local
46 result = Float.intBitsToFloat(i)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 23 evaluate returns [result]: r=expression { $result = $r.result };
25 expression returns [result]:
26 r=mult { $result = $r.result }
28 '+' r2=mult { $result += $r2.result }
29 | '-' r2=mult { $result -= $r2.result }
    [all...]
  /external/eigen/doc/examples/
Tutorial_ArrayClass_interop_matrix.cpp 11 MatrixXf result(2,2);
18 result = m * n;
19 cout << "-- Matrix m*n: --" << endl << result << endl << endl;
20 result = m.array() * n.array();
21 cout << "-- Array m*n: --" << endl << result << endl << endl;
22 result = m.cwiseProduct(n);
23 cout << "-- With cwiseProduct: --" << endl << result << endl << endl;
24 result = m.array() + 4;
25 cout << "-- Array m + 4: --" << endl << result << endl << endl;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munlockall/
5-1.c 33 int result; local
35 result = munlockall();
37 if (result == 0) {
45 printf("munlockall() returns %i instead of zero.\n", result);
55 int result; local
64 result = munlockall();
66 if ((result == 0 && memlock > 0) || (result == -1 && memlock <= 0)) {
74 printf("munlockall() returns %i instead of zero.\n", result);
  /external/valgrind/none/tests/amd64/
aes.stdout.exp 1 aeskeygenassist 1 3c4fcf098815f7aba6d2ae2816157e2b result 34e4b524e5b52434018a84eb8b84eb01
2 aesenc 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result 95e5d7de584b108bc5a3db9f2f1c31a8
3 aesenclast 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result 11c6fd5325c47e1764598c931e88fbc7
4 aesdec 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result 2a3930b75eb98eb58727eafa42c38a13
5 aesdeclast 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result d093a5727b6310d4957f316bef91a3c5
6 aesimc 8dcab9dc035006bc8f57161e00cafd8d result 77575fc53bccc9eeae5e8b9267a635d6
7 aeskeygenassist 8 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa result acacacaca4acacacacacacaca4acacac
8 aesenc aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb result 17171717171717171717171717171717
9 aesenclast aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb result 17171717171717171717171717171717
10 aesdec aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb result d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
GenericVisitorAdapter.java 82 R result = n.getJavaDoc().accept(this, arg); local
83 if (result != null) {
84 return result;
91 R result = a.accept(this, arg); local
92 if (result != null) {
93 return result;
101 R result = member.accept(this, arg); local
102 if (result != null) {
103 return result;
115 R result = n.getJavaDoc().accept(this, arg) local
124 R result = a.accept(this, arg); local
132 R result = n.getType().accept(this, arg); local
139 R result = n.getDefaultValue().accept(this, arg); local
151 R result = n.getName().accept(this, arg); local
157 R result = n.getIndex().accept(this, arg); local
168 R result = n.getType().accept(this, arg); local
176 R result = dim.accept(this, arg); local
184 R result = n.getInitializer().accept(this, arg); local
198 R result = expr.accept(this, arg); local
211 R result = n.getCheck().accept(this, arg); local
218 R result = n.getMessage().accept(this, arg); local
230 R result = n.getTarget().accept(this, arg); local
236 R result = n.getValue().accept(this, arg); local
247 R result = n.getLeft().accept(this, arg); local
253 R result = n.getRight().accept(this, arg); local
266 R result = s.accept(this, arg); local
290 R result = n.getType().accept(this, arg); local
296 R result = n.getExpr().accept(this, arg); local
307 R result = n.getExcept().accept(this, arg); local
313 R result = n.getCatchBlock().accept(this, arg); local
330 R result = n.getType().accept(this, arg); local
342 R result = n.getJavaDoc().accept(this, arg); local
351 R result = a.accept(this, arg); local
361 R result = t.accept(this, arg); local
371 R result = c.accept(this, arg); local
382 R result = c.accept(this, arg); local
392 R result = member.accept(this, arg); local
406 R result = n.getScope().accept(this, arg); local
415 R result = t.accept(this, arg); local
429 R result = n.getPackage().accept(this, arg); local
438 R result = i.accept(this, arg); local
448 R result = typeDeclaration.accept(this, arg); local
461 R result = n.getCondition().accept(this, arg); local
467 R result = n.getThenExpr().accept(this, arg); local
473 R result = n.getElseExpr().accept(this, arg); local
485 R result = n.getJavaDoc().accept(this, arg); local
494 R result = a.accept(this, arg); local
504 R result = t.accept(this, arg); local
514 R result = p.accept(this, arg); local
524 R result = name.accept(this, arg); local
532 R result = n.getBlock().accept(this, arg); local
548 R result = n.getBody().accept(this, arg); local
554 R result = n.getCondition().accept(this, arg); local
571 R result = n.getJavaDoc().accept(this, arg); local
589 R result = n.getJavaDoc().accept(this, arg); local
601 R result = n.getInner().accept(this, arg); local
613 R result = n.getJavaDoc().accept(this, arg); local
622 R result = a.accept(this, arg); local
632 R result = e.accept(this, arg); local
642 R result = member.accept(this, arg); local
656 R result = n.getJavaDoc().accept(this, arg); local
665 R result = a.accept(this, arg); local
675 R result = c.accept(this, arg); local
685 R result = e.accept(this, arg); local
695 R result = member.accept(this, arg); local
710 R result = n.getExpr().accept(this, arg); local
720 R result = t.accept(this, arg); local
730 R result = e.accept(this, arg); local
743 R result = n.getExpression().accept(this, arg); local
754 R result = n.getScope().accept(this, arg); local
766 R result = n.getJavaDoc().accept(this, arg); local
775 R result = a.accept(this, arg); local
783 R result = n.getType().accept(this, arg); local
790 R result = var.accept(this, arg); local
802 R result = n.getVariable().accept(this, arg); local
808 R result = n.getIterable().accept(this, arg); local
814 R result = n.getBody().accept(this, arg); local
827 R result = e.accept(this, arg); local
836 R result = n.getCompare().accept(this, arg); local
845 R result = e.accept(this, arg); local
853 R result = n.getBody().accept(this, arg); local
864 R result = n.getCondition().accept(this, arg); local
870 R result = n.getThenStmt().accept(this, arg); local
877 R result = n.getElseStmt().accept(this, arg); local
889 R result = n.getName().accept(this, arg); local
901 R result = n.getJavaDoc().accept(this, arg); local
908 R result = n.getBlock().accept(this, arg); local
919 R result = n.getExpr().accept(this, arg); local
925 R result = n.getType().accept(this, arg); local
951 R result = n.getStmt().accept(this, arg); local
972 R result = n.getName().accept(this, arg); local
983 R result = n.getValue().accept(this, arg); local
995 R result = n.getScope().accept(this, arg); local
1004 R result = t.accept(this, arg); local
1014 R result = e.accept(this, arg); local
1028 R result = n.getJavaDoc().accept(this, arg); local
1037 R result = a.accept(this, arg); local
1047 R result = t.accept(this, arg); local
1055 R result = n.getType().accept(this, arg); local
1063 R result = p.accept(this, arg); local
1073 R result = name.accept(this, arg); local
1082 R result = n.getBody().accept(this, arg); local
1099 R result = n.getName().accept(this, arg); local
1107 R result = m.accept(this, arg); local
1126 R result = n.getScope().accept(this, arg); local
1135 R result = t.accept(this, arg); local
1143 R result = n.getType().accept(this, arg); local
1151 R result = e.accept(this, arg); local
1161 R result = member.accept(this, arg); local
1176 R result = a.accept(this, arg); local
1184 R result = n.getName().accept(this, arg); local
1197 R result = a.accept(this, arg); local
1205 R result = n.getType().accept(this, arg); local
1211 R result = n.getId().accept(this, arg); local
1224 R result = a.accept(this, arg); local
1233 R result = type.accept(this, arg); local
1240 R result = n.getId().accept(this, arg); local
1256 R result = n.getQualifier().accept(this, arg); local
1267 R result = n.getType().accept(this, arg); local
1279 R result = n.getExpr().accept(this, arg); local
1291 R result = n.getName().accept(this, arg); local
1297 R result = n.getMemberValue().accept(this, arg); local
1314 R result = n.getClassExpr().accept(this, arg); local
1327 R result = n.getLabel().accept(this, arg); local
1336 R result = s.accept(this, arg); local
1349 R result = n.getSelector().accept(this, arg); local
1357 R result = e.accept(this, arg); local
1372 R result = n.getExpr().accept(this, arg); local
1379 R result = n.getBlock().accept(this, arg); local
1391 R result = n.getClassExpr().accept(this, arg); local
1403 R result = n.getExpr().accept(this, arg); local
1416 R result = v.accept(this, arg); local
1424 R result = n.getTryBlock().accept(this, arg); local
1432 R result = c.accept(this, arg); local
1441 R result = n.getFinallyBlock().accept(this, arg); local
1453 R result = n.getTypeDeclaration().accept(this, arg); local
1466 R result = c.accept(this, arg); local
1479 R result = n.getExpr().accept(this, arg); local
1497 R result = a.accept(this, arg); local
1505 R result = n.getType().accept(this, arg); local
1512 R result = v.accept(this, arg); local
1524 R result = n.getId().accept(this, arg); local
1531 R result = n.getInit().accept(this, arg); local
1553 R result = n.getCondition().accept(this, arg); local
1559 R result = n.getBody().accept(this, arg); local
1571 R result = n.getExtends().accept(this, arg); local
1579 R result = n.getSuper().accept(this, arg); local
    [all...]

Completed in 960 milliseconds

1 2 34 5 6 7 8 91011>>