Home
last modified time | relevance | path

Searched refs:returnValue (Results 1 – 25 of 118) sorted by relevance

12345

/external/deqp/framework/egl/
DegluCallLogWrapper.inl11 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/swiftshader/src/OpenGL/compiler/
DConstantUnion.h244 ConstantUnion returnValue; variable
247 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
248 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break;
249 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
253 return returnValue;
258 ConstantUnion returnValue; variable
261 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
262 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break;
263 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
267 return returnValue;
[all …]
/external/oj-libjdwp/src/share/back/
Dinvoker.c228 if (request->returnValue.l != NULL) { in deletePotentiallySavedGlobalRefs()
229 tossGlobalRef(env, &(request->returnValue.l)); in deletePotentiallySavedGlobalRefs()
302 request->returnValue.j = 0; in fillInvokeRequest()
384 request->returnValue.l = NULL; in invokeConstructor()
386 saveGlobalRef(env, object, &(request->returnValue.l)); in invokeConstructor()
402 request->returnValue.l = NULL; in invokeStatic()
404 saveGlobalRef(env, object, &(request->returnValue.l)); in invokeStatic()
411 request->returnValue.b = JNI_FUNC_PTR(env,CallStaticByteMethodA)(env, in invokeStatic()
418 request->returnValue.c = JNI_FUNC_PTR(env,CallStaticCharMethodA)(env, in invokeStatic()
425 request->returnValue.f = JNI_FUNC_PTR(env,CallStaticFloatMethodA)(env, in invokeStatic()
[all …]
/external/proguard/src/proguard/optimize/info/
DMethodOptimizationInfo.java49 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/
DJDWPConstants.java125 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/
Dmemory_pool_win.h179 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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
DInvokeMethodTest.java216 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local
218 + returnValue.getIntValue()); in testInvokeMethod001()
224 assertTrue("returnValue must be != null", returnValue != null); in testInvokeMethod001()
225 assertEquals("Invalid returned value,", 345, returnValue.getIntValue()); in testInvokeMethod001()
250 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001()
252 + returnValue.getIntValue()); in testInvokeMethod001()
332 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local
334 + returnValue.getIntValue()); in testInvokeMethod002()
340 assertTrue("returnValue must be != null", returnValue != null); in testInvokeMethod002()
341 assertEquals("Invalid value,", 456, returnValue.getIntValue()); in testInvokeMethod002()
[all …]
DInvokeMethodDefaultTest.java145 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod() local
146 assertNotNull("Returned value is null", returnValue); in testInvokeMethod()
148 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethod()
150 + returnValue.getIntValue()); in testInvokeMethod()
164 InvokeMethodDefaultDebuggee.TestInterface.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethod()
166 + returnValue.getIntValue()); in testInvokeMethod()
DInvokeMethodDefault002Test.java145 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod() local
146 assertNotNull("Returned value is null", returnValue); in testInvokeMethod()
148 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethod()
150 + returnValue.getIntValue()); in testInvokeMethod()
164 InvokeMethodDefault002Debuggee.TestClass.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethod()
166 + returnValue.getIntValue()); in testInvokeMethod()
/external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DDecimalQuantity_SimpleStorage.java608 byte returnValue;
611 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
617 returnValue = 0;
623 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
631 returnValue = 0;
649 assert returnValue >= 0;
650 return returnValue;
739 byte returnValue;
741 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
747 returnValue = 0;
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DDecimalQuantity_SimpleStorage.java605 byte returnValue;
608 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
614 returnValue = 0;
620 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
628 returnValue = 0;
646 assert returnValue >= 0;
647 return returnValue;
736 byte returnValue;
738 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
744 returnValue = 0;
[all …]
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DExecutionListBenchmark.java196 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/annotation-tools/annotation-file-utilities/src/annotator/find/
DBoundLocationCriterion.java65 boolean returnValue = false; in isSatisfiedBy()
79 returnValue = parentCriterion.isSatisfiedBy(parentPath); in isSatisfiedBy()
86 returnValue = parentCriterion.isSatisfiedBy(path); in isSatisfiedBy()
90 returnValue = parentCriterion.isSatisfiedBy(parentPath); in isSatisfiedBy()
108 returnValue = true; in isSatisfiedBy()
114 if (!returnValue) { in isSatisfiedBy()
DExtImplsLocationCriterion.java60 boolean returnValue = false; in isSatisfiedBy()
71 returnValue = true; in isSatisfiedBy()
76 returnValue = true; in isSatisfiedBy()
81 if (!returnValue) { in isSatisfiedBy()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java789 String [] returnValue = null; in getMonths() local
794 returnValue = months; in getMonths()
798 returnValue = shortMonths; in getMonths()
801 returnValue = narrowMonths; in getMonths()
808 returnValue = standaloneMonths; in getMonths()
812 returnValue = standaloneShortMonths; in getMonths()
815 returnValue = standaloneNarrowMonths; in getMonths()
820 if (returnValue == null) { in getMonths()
823 return duplicate(returnValue); in getMonths()
916 String [] returnValue = null; in getWeekdays() local
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java772 String [] returnValue = null; in getMonths() local
777 returnValue = months; in getMonths()
781 returnValue = shortMonths; in getMonths()
784 returnValue = narrowMonths; in getMonths()
791 returnValue = standaloneMonths; in getMonths()
795 returnValue = standaloneShortMonths; in getMonths()
798 returnValue = standaloneNarrowMonths; in getMonths()
803 if (returnValue == null) { in getMonths()
806 return duplicate(returnValue); in getMonths()
893 String [] returnValue = null; in getWeekdays() local
[all …]
/external/swiftshader/src/OpenGL/libGL/
Dmain.h57 T &error(GLenum errorCode, T &returnValue) in error() argument
61 return returnValue; in error()
65 const T &error(GLenum errorCode, const T &returnValue) in error() argument
69 return returnValue; in error()
/external/swiftshader/src/OpenGL/libEGL/
Dmain.h63 const T &error(EGLint errorCode, const T &returnValue) in error() argument
67 return returnValue; in error()
71 const T &success(const T &returnValue) in success() argument
75 return returnValue; in success()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/
DInvokeMethodTest.java119 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethodStatic() local
120 assertNotNull("Returned value is null", returnValue); in testInvokeMethodStatic()
122 assertEquals("Invalid returned value,", 0, returnValue.getIntValue()); in testInvokeMethodStatic()
124 + returnValue.getIntValue()); in testInvokeMethodStatic()
138 InvokeMethodTestInterface.RETURN_VALUE, returnValue.getIntValue()); in testInvokeMethodStatic()
140 + returnValue.getIntValue()); in testInvokeMethodStatic()
/external/proguard/src/proguard/gui/
DMemberSpecificationsPanel.java79 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()
/external/v8/src/inspector/
Dv8-regex.cc63 v8::Local<v8::Value> returnValue; in match() local
66 .ToLocal(&returnValue)) in match()
76 DCHECK(!returnValue.IsEmpty()); in match()
77 if (!returnValue->IsArray()) return -1; in match()
79 v8::Local<v8::Array> result = returnValue.As<v8::Array>(); in match()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethodTest.java157 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local
158 assertNotNull("Returned value is null", returnValue); in testInvokeMethod001()
159 assertEquals("Invalid returned value,", 234, returnValue.getIntValue()); in testInvokeMethod001()
161 + returnValue.getIntValue()); in testInvokeMethod001()
187 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001()
189 + returnValue.getIntValue()); in testInvokeMethod001()
326 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local
327 if (returnValue != null) { in testInvokeMethod002()
329 + returnValue.getIntValue()); in testInvokeMethod002()
453 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod003() local
[all …]
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DDuckTypedPSKKeyManagerTest.java106 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation()
115 mockInvocationHandler.returnValue = identityHint; in testMethodInvocationDelegation()
124 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation()
133 mockInvocationHandler.returnValue = identity; in testMethodInvocationDelegation()
143 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation()
153 mockInvocationHandler.returnValue = key; in testMethodInvocationDelegation()
306 Object returnValue; field in DuckTypedPSKKeyManagerTest.MockInvocationHandler
314 return returnValue; in invoke()
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/
DParallelJIT.cpp281 void* returnValue; in main() local
282 result = pthread_join( add1Thread, &returnValue ); in main()
287 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main()
289 result = pthread_join( fibThread1, &returnValue ); in main()
294 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main()
296 result = pthread_join( fibThread2, &returnValue ); in main()
301 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()
/external/llvm/examples/ParallelJIT/
DParallelJIT.cpp303 void* returnValue; in main() local
304 result = pthread_join( add1Thread, &returnValue ); in main()
309 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main()
311 result = pthread_join( fibThread1, &returnValue ); in main()
316 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main()
318 result = pthread_join( fibThread2, &returnValue ); in main()
323 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()

12345