/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/webrtc/src/system_wrappers/source/ |
D | aligned_malloc.cc | 61 AlignedMemory* returnValue = new AlignedMemory(); in AlignedMalloc() local 62 if(returnValue == NULL) in AlignedMalloc() 71 returnValue->memoryPointer = malloc(size + sizeof(uintptr_t) + in AlignedMalloc() 73 if(returnValue->memoryPointer == NULL) in AlignedMalloc() 75 delete returnValue; in AlignedMalloc() 81 uintptr_t alignStartPos = (uintptr_t)returnValue->memoryPointer; in AlignedMalloc() 89 returnValue->alignedBuffer = (void*)alignedPos; in AlignedMalloc() 96 uintptr_t headerValue = (uintptr_t)returnValue; in AlignedMalloc() 99 return returnValue->alignedBuffer; in AlignedMalloc()
|
D | atomic32_posix.cc | 42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value); in operator +=() local 43 returnValue += value; in operator +=() 44 return returnValue; in operator +=() 49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value); in operator -=() local 50 returnValue -= value; in operator -=() 51 return returnValue; in operator -=()
|
/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateFormatSymbols.java | 730 String [] returnValue = null; in getMonths() local 735 returnValue = months; in getMonths() 739 returnValue = shortMonths; in getMonths() 742 returnValue = narrowMonths; in getMonths() 749 returnValue = standaloneMonths; in getMonths() 753 returnValue = standaloneShortMonths; in getMonths() 756 returnValue = standaloneNarrowMonths; in getMonths() 761 if (returnValue == null) { in getMonths() 764 return duplicate(returnValue); in getMonths() 857 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 | InvokeMethod002Test.java | 152 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod_null_argument() local 153 assertNotNull("Returned value is null", returnValue); in testInvokeMethod_null_argument() 154 assertEquals("Invalid returned value,", 123, returnValue.getIntValue()); in testInvokeMethod_null_argument() 156 + returnValue.getIntValue()); in testInvokeMethod_null_argument()
|
D | InvokeMethod003Test.java | 156 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod_toString() local 157 assertNotNull("Returned value is null", returnValue); in testInvokeMethod_toString() 158 …assertEquals("Returned value tag is incorrect", JDWPConstants.Tag.STRING_TAG, returnValue.getTag()… in testInvokeMethod_toString() 159 long stringID = returnValue.getLongValue(); in testInvokeMethod_toString()
|
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | ExecutionListBenchmark.java | 198 int returnValue = 0; 204 returnValue += listenerLatch.getCount(); 207 returnValue += listenerLatch.getCount(); 209 return returnValue; 213 int returnValue = 0; 220 returnValue += listenerLatch.getCount(); 222 returnValue += listenerLatch.getCount(); 224 return returnValue; 241 int returnValue = 0; 249 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()
|
D | OptimizationsDialog.java | 52 private int returnValue; field in OptimizationsDialog 161 returnValue = APPROVE_OPTION; in OptimizationsDialog() 219 returnValue = CANCEL_OPTION; in showDialog() 227 return returnValue; in showDialog()
|
/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 | 286 void* returnValue; in main() local 287 result = pthread_join( add1Thread, &returnValue ); in main() 292 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main() 294 result = pthread_join( fibThread1, &returnValue ); in main() 299 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main() 301 result = pthread_join( fibThread2, &returnValue ); in main() 306 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/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) {
|
D | runant.pl | 143 my $returnValue = system $JAVACMD, @ARGS; 144 if ($returnValue eq 0)
|
/external/icu/icu4c/source/i18n/ |
D | dtfmtsym.cpp | 625 UnicodeString *returnValue = NULL; in getMonths() local 632 returnValue = fMonths; in getMonths() 637 returnValue = fShortMonths; in getMonths() 641 returnValue = fNarrowMonths; in getMonths() 651 returnValue = fStandaloneMonths; in getMonths() 656 returnValue = fStandaloneShortMonths; in getMonths() 660 returnValue = fStandaloneNarrowMonths; in getMonths() 669 return returnValue; in getMonths() 689 UnicodeString *returnValue = NULL; in getWeekdays() local 695 returnValue = fWeekdays; in getWeekdays() [all …]
|
/external/icu/icu4c/source/samples/ufortune/ |
D | ufortune.c | 154 int returnValue=0; in main() local 162 if (optionError != NULL) {returnValue = -1;} in main() 163 return returnValue; in main()
|
/external/skia/src/core/ |
D | SkFlate.cpp | 151 SkDEBUGCODE(int returnValue;) in do_deflate() 155 SkDEBUGCODE(returnValue =) deflate(zStream, flush); in do_deflate() 161 ? returnValue == Z_STREAM_END in do_deflate() 162 : returnValue == Z_OK); in do_deflate()
|