Home
last modified time | relevance | path

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

123456

/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.h254 ConstantUnion returnValue; variable
257 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
258 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break;
259 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
263 return returnValue;
268 ConstantUnion returnValue; variable
271 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
272 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break;
273 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
277 return returnValue;
[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 …]
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()
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()
/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/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/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/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/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/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/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()
DClassSpecificationsPanel.java70 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()
DClassPathPanel.java97 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/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()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DInvokeMethodTest.java178 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod001() local
179 assertNotNull("Returned value is null", returnValue); in testInvokeMethod001()
180 assertEquals("Invalid returned value,", 234, returnValue.getIntValue()); in testInvokeMethod001()
182 + returnValue.getIntValue()); in testInvokeMethod001()
208 returnValue = reply.getNextValueAsValue(); in testInvokeMethod001()
210 + returnValue.getIntValue()); in testInvokeMethod001()
347 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod002() local
348 if (returnValue != null) { in testInvokeMethod002()
350 + returnValue.getIntValue()); in testInvokeMethod002()
474 Value returnValue = reply.getNextValueAsValue(); in testInvokeMethod003() local
[all …]
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
DJavassistHelper.java52 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/
DSkDeflate.cpp42 SkDEBUGCODE(int returnValue;) in do_deflate()
46 SkDEBUGCODE(returnValue =) deflate(zStream, flush); in do_deflate()
52 ? returnValue == Z_STREAM_END in do_deflate()
53 : returnValue == Z_OK); in do_deflate()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java109 code.returnValue(localResult); in testNewInstance()
158 code.returnValue(localResult); in testInvokeStatic()
206 code.returnValue(localResult); in testInvokeVirtual()
235 directCode.returnValue(localA); in testInvokeDirect()
242 code.returnValue(localB); in testInvokeDirect()
270 superHashCode.returnValue(localResult); in testInvokeSuper()
276 generatedHashCode.returnValue(localZero); in testInvokeSuper()
299 code.returnValue(localResult); in testInvokeInterface()
324 code.returnValue(result); in testInvokeVoidMethodIgnoresTargetLocal()
371 code.returnValue(localResult); in testInvokeTypeSafety()
[all …]

123456