Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 5190) sorted by relevance

12345678910>>...208

/external/mesa3d/src/compiler/glsl/glcpp/tests/
D067-nested-ifdef-ifndef.c4 #define result success macro
9 #define result failure macro
17 #define result failure macro
23 #define result failure macro
27 #define result success macro
33 #define result failure macro
37 #define result success macro
/external/swiftshader/third_party/LLVM/cmake/modules/
DVersionFromVCS.cmake6 set(result ${${VERS}}) variable
8 set(result "${result}svn") variable
16 set(result "${result}-r${Project_WC_REVISION}") variable
20 set(result "${result}git") variable
31 set(result "${result}-${git_ref_id}") variable
40 set(result "${result}-svn-${git_svn_rev}") variable
/external/protobuf/src/google/protobuf/util/
Dtime_util.h204 Duration result; variable
210 Duration result = d1; variable
214 Duration result = d1; variable
233 Duration result = d1; variable
271 Timestamp result = t; variable
275 Timestamp result = t; variable
279 Timestamp result = t; variable
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapAsMapGetTester.java50 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesRemoveToMultimap() local
59 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesRemoveLastElementToMultimap() local
67 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesClearToMultimap() local
76 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testAddNullValue() local
84 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testRemoveNullValue() local
91 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testAddNullValueUnsupported() local
101 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testPropagatesAddToMultimap() local
115 Collection<V> result = multimap().asMap().get(k0); in testPropagatesRemoveThenAddToMultimap() local
139 Collection<V> result = multimap().asMap().get(sampleKeys().e0); in testReflectsMultimapRemove() local
DMultimapGetTester.java45 Collection<V> result = multimap().get(sampleKeys().e3); in testGetEmpty() local
52 Collection<V> result = multimap().get(sampleKeys().e0); in testGetNonEmpty() local
80 Collection<V> result = multimap().get(sampleKeys().e0); in testPropagatesRemoveToMultimap() local
89 Collection<V> result = multimap().get(sampleKeys().e0); in testPropagatesRemoveLastElementToMultimap() local
96 Collection<V> result = multimap().get(sampleKeys().e0); in testPropagatesAddToMultimap() local
105 Collection<V> result = multimap().get(sampleKeys().e0); in testPropagatesAddAllToMultimap() local
120 Collection<V> result = multimap().get(k0); in testPropagatesRemoveLastThenAddToMultimap() local
/external/mesa3d/src/mesa/program/
Dprog_execute.c404 GLfloat a[4], result[4]; in _mesa_execute_program() local
415 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
480 GLfloat a[4], b[4], c[4], result[4]; in _mesa_execute_program() local
500 GLfloat a[4], result[4]; in _mesa_execute_program() local
509 GLfloat result[4]; in _mesa_execute_program() local
517 GLfloat result[4]; in _mesa_execute_program() local
525 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
538 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
551 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
565 GLfloat a[4], b[4], result[4]; in _mesa_execute_program() local
[all …]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestIntervalSet.java72 String result = (s.and(s2)).toString(); in testSimpleAnd() local
80 String result = (s.and(s2)).toString(); in testRangeAndIsolatedElement() local
88 String result = (s.and(s2)).toString(); in testEmptyIntersection() local
96 String result = (s.and(s2)).toString(); in testEmptyIntersectionSingleElements() local
105 String result = (s.complement(vocabulary)).toString(); in testNotSingleElement() local
115 String result = (s.complement(vocabulary)).toString(); in testNotSet() local
123 String result = (s.complement(vocabulary)).toString(); in testNotEqualSet() local
131 String result = (s.complement(vocabulary)).toString(); in testNotSetEdgeElement() local
144 String result = (s.complement(vocabulary)).toString(); in testNotSetFragmentedVocabulary() local
152 String result = (s.subtract(s2)).toString(); in testSubtractOfCompletelyContainedRange() local
[all …]
/external/libchrome/base/time/
Dpr_time_unittest.cc92 PRStatus result = PR_ParseTimeString(time_buf, PR_FALSE, &parsed_time); in TEST_F() local
99 PRStatus result = PR_ParseTimeString("Mon, 15 Oct 2007 19:45:00 GMT", in TEST_F() local
107 PRStatus result = PR_ParseTimeString("15 Oct 07 12:45:00", PR_FALSE, in TEST_F() local
115 PRStatus result = PR_ParseTimeString("15 Oct 07 19:45 GMT", PR_FALSE, in TEST_F() local
123 PRStatus result = PR_ParseTimeString("Mon Oct 15 12:45 PDT 2007", in TEST_F() local
131 PRStatus result = PR_ParseTimeString("Monday, Oct 15, 2007 12:45 PM", in TEST_F() local
139 PRStatus result = PR_ParseTimeString("10/15/07 12:45:00 PM", PR_FALSE, in TEST_F() local
147 PRStatus result = PR_ParseTimeString("10/15/07 12:45:00. PM", PR_FALSE, in TEST_F() local
155 PRStatus result = PR_ParseTimeString("10/15/07 12:45:00.0 PM", PR_FALSE, in TEST_F() local
163 PRStatus result = PR_ParseTimeString("15-OCT-2007 12:45pm", PR_FALSE, in TEST_F() local
[all …]
/external/vboot_reference/tests/
Dtest_common.c21 int TEST_EQ(int result, int expected_result, const char* testname) { in TEST_EQ()
34 int TEST_NEQ(int result, int not_expected_result, const char* testname) { in TEST_NEQ()
47 int TEST_PTR_EQ(const void* result, const void* expected_result, in TEST_PTR_EQ()
61 int TEST_PTR_NEQ(const void* result, const void* not_expected_result, in TEST_PTR_NEQ()
75 int TEST_STR_EQ(const char* result, const char* expected_result, in TEST_STR_EQ()
96 int TEST_SUCC(int result, const char* testname) { in TEST_SUCC()
107 int TEST_TRUE(int result, const char* testname) { in TEST_TRUE()
118 int TEST_FALSE(int result, const char* testname) { in TEST_FALSE()
/external/gemmlowp/meta/
Dquantized_mul_kernels_arm_64.h32 uint8_t* result) { in Multiply()
105 uint8_t* result) { in Multiply()
181 uint8_t* result) { in Multiply()
263 uint8_t* result) { in Multiply()
347 uint8_t* result) { in Multiply()
444 uint8_t* result) { in Multiply()
544 uint8_t* result) { in Multiply()
649 uint8_t* result) { in Multiply()
756 uint8_t* result) { in Multiply()
845 uint8_t* result) { in Multiply()
[all …]
Dquantized_mul_kernels_arm_32.h32 uint8_t* result) { in Multiply()
106 uint8_t* result) { in Multiply()
184 uint8_t* result) { in Multiply()
268 uint8_t* result) { in Multiply()
356 uint8_t* result) { in Multiply()
457 uint8_t* result) { in Multiply()
562 uint8_t* result) { in Multiply()
673 uint8_t* result) { in Multiply()
788 uint8_t* result) { in Multiply()
877 uint8_t* result) { in Multiply()
[all …]
/external/conscrypt/platform/src/test/java/org/conscrypt/ct/
DCTVerifierTest.java63 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withOCSPResponse() local
73 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withTLSExtension() local
82 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withEmbeddedExtension() local
91 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withoutTimestamp() local
102 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withInvalidSignature() local
115 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withUnknownLog() local
129 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withInvalidEncoding() local
141 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withInvalidOCSPResponse() local
153 CTVerificationResult result = in test_verifySignedCertificateTimestamps_withMultipleTimestamps() local
/external/guava/guava-tests/test/com/google/common/math/
DBigIntegerMathTest.java90 int result = BigIntegerMath.log2(x, mode); in testLog2Floor() local
100 int result = BigIntegerMath.log2(x, mode); in testLog2Ceiling() local
123 int result = BigIntegerMath.log2(x, HALF_UP); in testLog2HalfUp() local
134 int result = BigIntegerMath.log2(x, HALF_DOWN); in testLog2HalfDown() local
178 int result = BigIntegerMath.log10(x, mode); in testLog10Floor() local
189 int result = BigIntegerMath.log10(x, mode); in testLog10Ceiling() local
214 int result = BigIntegerMath.log10(x, HALF_UP); in testLog10HalfUp() local
226 int result = BigIntegerMath.log10(x, HALF_DOWN); in testLog10HalfDown() local
276 BigInteger result = BigIntegerMath.sqrt(x, mode); in testSqrtFloor() local
288 BigInteger result = BigIntegerMath.sqrt(x, mode); in testSqrtCeiling() local
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DSyncResultTest.java20 SyncResult result = new SyncResult(); in testConstructor() local
26 SyncResult result = new SyncResult(); in hasSoftError() local
35 SyncResult result = new SyncResult(); in hasHardError() local
44 SyncResult result = new SyncResult(); in testMadeSomeProgress() local
52 SyncResult result = new SyncResult(); in testClear() local
/external/pdfium/core/fpdfdoc/
Dcpdf_filespec.cpp21 CFX_WideString result; in ChangeSlashToPlatform() local
38 CFX_WideString result; in ChangeSlashToPDF() local
68 CFX_WideString result; in DecodeFileName() local
74 CFX_WideString result; in DecodeFileName() local
126 CFX_WideString result; in EncodeFileName() local
139 CFX_WideString result; in EncodeFileName() local
147 CFX_WideString result; in EncodeFileName() local
/external/smali/util/src/main/java/org/jf/util/
DHex.java49 char[] result = new char[16]; in u8() local
65 char[] result = new char[8]; in u4() local
81 char[] result = new char[6]; in u3() local
97 char[] result = new char[4]; in u2() local
129 char[] result = new char[2]; in u1() local
145 char[] result = new char[1]; in uNibble() local
158 char[] result = new char[17]; in s8() local
182 char[] result = new char[9]; in s4() local
206 char[] result = new char[5]; in s2() local
230 char[] result = new char[3]; in s1() local
/external/libchrome/base/synchronization/
Dread_write_lock_posix.cc15 int result = pthread_rwlock_destroy(&native_handle_); in ~ReadWriteLock() local
20 int result = pthread_rwlock_rdlock(&native_handle_); in ReadAcquire() local
25 int result = pthread_rwlock_unlock(&native_handle_); in ReadRelease() local
30 int result = pthread_rwlock_wrlock(&native_handle_); in WriteAcquire() local
35 int result = pthread_rwlock_unlock(&native_handle_); in WriteRelease() local
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLRSAKeyFactory.java96 T result = (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent()); in engineGetKeySpec() local
106 T result = (T) new RSAPublicKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent()); in engineGetKeySpec() local
112 T result = (T) new RSAPrivateCrtKeySpec(rsaKey.getModulus(), rsaKey.getPublicExponent(), in engineGetKeySpec() local
121 T result = (T) new RSAPrivateKeySpec(rsaKey.getModulus(), rsaKey.getPrivateExponent()); in engineGetKeySpec() local
127 T result = (T) new RSAPrivateKeySpec(rsaKey.getModulus(), rsaKey.getPrivateExponent()); in engineGetKeySpec() local
140 T result = (T) new RSAPrivateCrtKeySpec(rsaKey.getModulus(), in engineGetKeySpec() local
156 T result = (T) new RSAPrivateKeySpec(rsaKey.getModulus(), rsaKey.getPrivateExponent()); in engineGetKeySpec() local
167 @SuppressWarnings("unchecked") T result = (T) new PKCS8EncodedKeySpec(encoded); in engineGetKeySpec() local
177 @SuppressWarnings("unchecked") T result = (T) new X509EncodedKeySpec(encoded); in engineGetKeySpec() local
/external/replicaisland/src/com/replica/replicaisland/
DDebugLog.java33 int result = 0; in v() local
41 int result = 0; in v() local
49 int result = 0; in d() local
57 int result = 0; in d() local
65 int result = 0; in i() local
73 int result = 0; in i() local
81 int result = 0; in w() local
89 int result = 0; in w() local
97 int result = 0; in w() local
105 int result = 0; in e() local
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DBaseDexReader.java54 int result; in readSleb128() local
98 int result; in readUleb128() local
155 int result; in readBigUleb128() local
214 int result = dexBuf.readSmallUint(o); in readSmallUint() local
221 int result = dexBuf.readOptionalUint(o); in readOptionalUint() local
232 int result = dexBuf.readUshort(offset); in readUshort() local
243 int result = dexBuf.readUbyte(offset); in readUbyte() local
250 long result = dexBuf.readLong(offset); in readLong() local
257 int result = dexBuf.readInt(offset); in readInt() local
264 int result = dexBuf.readShort(offset); in readShort() local
[all …]
/external/protobuf/src/google/protobuf/stubs/
Datomicops_internals_power.h41 Atomic32 result; in NoBarrier_CompareAndSwap() local
62 Atomic32 result; in NoBarrier_AtomicExchange() local
79 Atomic32 result; in NoBarrier_AtomicIncrement() local
107 Atomic32 result; in Barrier_AtomicIncrement() local
130 Atomic32 result; in Acquire_CompareAndSwap() local
154 Atomic32 result; in Release_CompareAndSwap() local
201 Atomic32 result; in Acquire_Load() local
220 Atomic32 result; in Release_Load() local
242 Atomic64 result; in NoBarrier_CompareAndSwap() local
264 Atomic64 result; in NoBarrier_AtomicExchange() local
[all …]
/external/clang/test/CodeGen/
Dbuiltins-overflow.c174 volatile int result; in test_add_overflow_volatile() local
183 unsigned result; in test_uadd_overflow() local
192 unsigned long result; in test_uaddl_overflow() local
201 unsigned long long result; in test_uaddll_overflow() local
210 unsigned result; in test_usub_overflow() local
219 unsigned long result; in test_usubl_overflow() local
228 unsigned long long result; in test_usubll_overflow() local
237 unsigned result; in test_umul_overflow() local
246 unsigned long result; in test_umull_overflow() local
255 unsigned long long result; in test_umulll_overflow() local
[all …]
/external/easymock/src/org/easymock/
DLogicalOperator.java23 public boolean matchResult(int result) { in matchResult()
28 public boolean matchResult(int result) { in matchResult()
33 public boolean matchResult(int result) { in matchResult()
38 public boolean matchResult(int result) { in matchResult()
43 public boolean matchResult(int result) { in matchResult()
58 public abstract boolean matchResult(int result); in matchResult()
/external/testng/src/main/java/org/testng/
DITestListener.java19 void onTestStart(ITestResult result); in onTestStart()
27 public void onTestSuccess(ITestResult result); in onTestSuccess()
35 public void onTestFailure(ITestResult result); in onTestFailure()
43 public void onTestSkipped(ITestResult result); in onTestSkipped()
53 public void onTestFailedButWithinSuccessPercentage(ITestResult result); in onTestFailedButWithinSuccessPercentage()
/external/testng/src/test/java/test/listeners/
DBaseListener.java10 public void onTestStart(ITestResult result) { in onTestStart()
15 public void onTestSuccess(ITestResult result) { in onTestSuccess()
19 public void onTestFailure(ITestResult result) { in onTestFailure()
23 public void onTestSkipped(ITestResult result) { in onTestSkipped()
27 public void onTestFailedButWithinSuccessPercentage(ITestResult result) { in onTestFailedButWithinSuccessPercentage()

12345678910>>...208