/external/deqp/framework/egl/ |
D | egluCallLogWrapper.inl | 11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api); local 13 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes… 14 return returnValue; 21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer); local 23 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes… 24 return returnValue; 31 …eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_conf… local 34 …m_log << TestLog::Message << "// configs = " << getPointerStr(configs, (num_config && returnValue)… 38 …m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMes… 39 return returnValue; [all …]
|
/external/proguard/src/proguard/optimize/info/ |
D | MethodOptimizationInfo.java | 49 private Value returnValue; field in MethodOptimizationInfo 258 public void generalizeReturnValue(Value returnValue) in generalizeReturnValue() argument 260 this.returnValue = this.returnValue != null ? in generalizeReturnValue() 261 this.returnValue.generalize(returnValue) : in generalizeReturnValue() 262 returnValue; in generalizeReturnValue() 268 return returnValue; in getReturnValue() 273 public void setReturnValue(Value returnValue) in setReturnValue() argument 275 this.returnValue = returnValue; in setReturnValue()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | JDWPConstants.java | 125 String returnValue = ""; in getName() local 127 returnValue += "|VERIFIED"; in getName() 129 returnValue += "|PREPARED"; in getName() 131 returnValue += "|INITIALIZED"; in getName() 133 returnValue += "|ERROR"; in getName() 135 returnValue += "|ARRAY"; in getName() 137 returnValue += "|PRIMITIVE"; in getName() 139 if (returnValue.equals("")) { in getName() 140 returnValue = "NONE"; in getName() 142 returnValue = returnValue.substring(1); in getName() [all …]
|
/external/webrtc/webrtc/modules/audio_conference_mixer/source/ |
D | memory_pool_win.h | 179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*) in CreateMemory() local 182 if(returnValue == NULL) in CreateMemory() 187 returnValue->payload = new MemoryPoolItemPayload<MemoryType>(); in CreateMemory() 188 if(returnValue->payload == NULL) in CreateMemory() 190 delete returnValue; in CreateMemory() local 193 returnValue->payload->base = returnValue; in CreateMemory() 195 return returnValue; in CreateMemory()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateFormatSymbols.java | 731 String [] returnValue = null; in getMonths() local 736 returnValue = months; in getMonths() 740 returnValue = shortMonths; in getMonths() 743 returnValue = narrowMonths; in getMonths() 750 returnValue = standaloneMonths; in getMonths() 754 returnValue = standaloneShortMonths; in getMonths() 757 returnValue = standaloneNarrowMonths; in getMonths() 762 if (returnValue == null) { in getMonths() 765 return duplicate(returnValue); in getMonths() 858 String [] returnValue = null; in getWeekdays() local [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateFormatSymbols.java | 714 String [] returnValue = null; in getMonths() local 719 returnValue = months; in getMonths() 723 returnValue = shortMonths; in getMonths() 726 returnValue = narrowMonths; in getMonths() 733 returnValue = standaloneMonths; in getMonths() 737 returnValue = standaloneShortMonths; in getMonths() 740 returnValue = standaloneNarrowMonths; in getMonths() 745 if (returnValue == null) { in getMonths() 748 return duplicate(returnValue); in getMonths() 835 String [] returnValue = null; in getWeekdays() local [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | InvokeMethodTest.java | 215 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local 217 + returnValue.getIntValue()); in testInvokeMethod001() 223 assertTrue("returnValue must be != null", returnValue != null); in testInvokeMethod001() 224 assertEquals("Invalid returned value,", 345, returnValue.getIntValue()); in testInvokeMethod001() 249 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() 251 + returnValue.getIntValue()); in testInvokeMethod001() 331 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local 333 + returnValue.getIntValue()); in testInvokeMethod002() 339 assertTrue("returnValue must be != null", returnValue != null); in testInvokeMethod002() 340 assertEquals("Invalid value,", 456, returnValue.getIntValue()); in testInvokeMethod002() [all …]
|
D | InvokeMethodDefault002Test.java | 144 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod() local 145 assertNotNull("Returned value is null", returnValue); in testInvokeMethod() 147 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethod() 149 + returnValue.getIntValue()); in testInvokeMethod() 163 InvokeMethodDefault002Debuggee.TestClass.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethod() 165 + returnValue.getIntValue()); in testInvokeMethod()
|
D | InvokeMethodDefaultTest.java | 144 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod() local 145 assertNotNull("Returned value is null", returnValue); in testInvokeMethod() 147 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethod() 149 + returnValue.getIntValue()); in testInvokeMethod() 163 InvokeMethodDefaultDebuggee.TestInterface.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethod() 165 + returnValue.getIntValue()); in testInvokeMethod()
|
/external/v8/test/mjsunit/harmony/ |
D | do-expressions.js | 9 function returnValue(v) { return v; } function 15 assertEquals(512, returnValue(do { 21 assertEquals("spooky halloween", returnValue(do { 26 assertEquals(undefined, returnValue(do {})); 27 assertEquals(undefined, returnValue(do { var x = 99; })); 28 assertEquals(undefined, returnValue(do { function f() {}; })); 29 assertEquals(undefined, returnValue(do { let z = 33; }));
|
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | ExecutionListBenchmark.java | 196 int returnValue = 0; 202 returnValue += listenerLatch.getCount(); 205 returnValue += listenerLatch.getCount(); 207 return returnValue; 211 int returnValue = 0; 218 returnValue += listenerLatch.getCount(); 220 returnValue += listenerLatch.getCount(); 222 return returnValue; 239 int returnValue = 0; 247 returnValue = (int) listenerLatch.getCount(); [all …]
|
/external/proguard/src/proguard/gui/ |
D | MemberSpecificationsPanel.java | 79 int returnValue = fieldSpecificationDialog.showDialog(); in addAddFieldButton() 80 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addAddFieldButton() 101 int returnValue = methodSpecificationDialog.showDialog(); in addAddMethodButton() 102 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addAddMethodButton() 131 int returnValue = memberSpecificationDialog.showDialog(); in addEditButton() 132 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION) in addEditButton()
|
D | ClassSpecificationsPanel.java | 70 int returnValue = classSpecificationDialog.showDialog(); in addAddButton() 71 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION) in addAddButton() 94 int returnValue = classSpecificationDialog.showDialog(); in addEditButton() 95 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION) in addEditButton()
|
D | ClassPathPanel.java | 97 int returnValue = chooser.showOpenDialog(owner); in addAddButton() 98 if (returnValue == JFileChooser.APPROVE_OPTION) in addAddButton() 147 int returnValue = chooser.showOpenDialog(owner); in addEditButton() 148 if (returnValue == JFileChooser.APPROVE_OPTION) in addEditButton() 190 int returnValue = filterDialog.showDialog(); in addFilterButton() 191 if (returnValue == FilterDialog.APPROVE_OPTION) in addFilterButton()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/ |
D | InvokeMethodTest.java | 122 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethodStatic() local 123 assertNotNull("Returned value is null", returnValue); in testInvokeMethodStatic() 125 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethodStatic() 127 + returnValue.getIntValue()); in testInvokeMethodStatic() 141 InvokeMethodTestInterface.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethodStatic() 143 + returnValue.getIntValue()); in testInvokeMethodStatic()
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | DuckTypedPSKKeyManagerTest.java | 104 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation() 113 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation() 122 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation() 131 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation() 141 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation() 151 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation() 303 Object returnValue; field in DuckTypedPSKKeyManagerTest.MockInvocationHandler 311 return returnValue; in invoke()
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 287 void* returnValue; in main() local 288 result = pthread_join( add1Thread, &returnValue ); in main() 293 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main() 295 result = pthread_join( fibThread1, &returnValue ); in main() 300 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main() 302 result = pthread_join( fibThread2, &returnValue ); in main() 307 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
D | InvokeMethodTest.java | 177 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local 178 assertNotNull("Returned value is null", returnValue); in testInvokeMethod001() 179 assertEquals("Invalid returned value,", 234, returnValue.getIntValue()); in testInvokeMethod001() 181 + returnValue.getIntValue()); in testInvokeMethod001() 207 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() 209 + returnValue.getIntValue()); in testInvokeMethod001() 346 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local 347 if (returnValue != null) { in testInvokeMethod002() 349 + returnValue.getIntValue()); in testInvokeMethod002() 473 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod003() local [all …]
|
D | InvokeMethod003Test.java | 124 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod_null_argument() local 125 assertNotNull("Returned value is null", returnValue); in testInvokeMethod_null_argument() 126 assertEquals("Invalid returned value,", 123, returnValue.getIntValue()); in testInvokeMethod_null_argument() 128 + returnValue.getIntValue()); in testInvokeMethod_null_argument()
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
D | JavassistHelper.java | 52 public static String returnValue(CtBehavior method) throws NotFoundException { in returnValue() method in JavassistHelper 54 String returnValue = ""; in returnValue() local 56 returnValue = " returns: \" + $_ + \"."; in returnValue() 58 return returnValue; in returnValue()
|
/external/skia/src/pdf/ |
D | SkDeflate.cpp | 46 SkDEBUGCODE(int returnValue;) in do_deflate() 50 SkDEBUGCODE(returnValue =) deflate(zStream, flush); in do_deflate() 56 ? returnValue == Z_STREAM_END in do_deflate() 57 : returnValue == Z_OK); in do_deflate()
|
/external/v8/test/mjsunit/wasm/ |
D | ffi.js | 168 function returnValue(val) { function 181 testCallFFI(returnValue(undefined), checkReturn(0)); 182 testCallFFI(returnValue(null), checkReturn(0)); 183 testCallFFI(returnValue("0"), checkReturn(0)); 184 testCallFFI(returnValue("-77"), checkReturn(-77)); 188 testCallFFI(returnValue(objWithValueOf), checkReturn(198));
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 98 code.returnValue(localResult); in testNewInstance() 145 code.returnValue(localResult); in testInvokeStatic() 191 code.returnValue(localResult); in testInvokeVirtual() 219 directCode.returnValue(localA); in testInvokeDirect() 226 code.returnValue(localB); in testInvokeDirect() 253 superHashCode.returnValue(localResult); in testInvokeSuper() 259 generatedHashCode.returnValue(localZero); in testInvokeSuper() 281 code.returnValue(localResult); in testInvokeInterface() 305 code.returnValue(result); in testInvokeVoidMethodIgnoresTargetLocal() 351 code.returnValue(localResult); in testInvokeTypeSafety() [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
D | antRun.pl | 58 my $returnValue = system $ANT_RUN_CMD, @ARGV; 59 if ($returnValue eq 0) {
|
/external/testng/src/test/java/test/privatemethod/ |
D | PrivateMethodTest.java | 19 int returnValue = pmt.privateMethod(); in testPrivateMethod() local 21 Assert.assertEquals(returnValue, 1); in testPrivateMethod()
|