Searched refs:returnValue (Results 1 - 25 of 143) sorted by relevance

123456

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A DantRun.pl58 my $returnValue = system $ANT_RUN_CMD, @ARGV;
59 if ($returnValue eq 0) {
H A Drunant.pl143 my $returnValue = system $JAVACMD, @ARGS;
144 if ($returnValue eq 0)
/external/deqp/framework/egl/
H A DegluCallLogWrapper.inl11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api);
13 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
14 return returnValue;
21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer);
23 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
24 return returnValue;
31 eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_config);
34 m_log << TestLog::Message << "// configs = " << getPointerStr(configs, (num_config && returnValue) ? deMin32(config_size, *num_config) : 0) << TestLog::EndMessage;
38 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
39 return returnValue;
[all...]
/external/swiftshader/src/OpenGL/compiler/
H A DConstantUnion.h254 ConstantUnion returnValue; local
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; local
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;
282 ConstantUnion returnValue; local
296 ConstantUnion returnValue; local
309 ConstantUnion returnValue; local
322 ConstantUnion returnValue; local
338 ConstantUnion returnValue; local
351 ConstantUnion returnValue; local
364 ConstantUnion returnValue; local
377 ConstantUnion returnValue; local
389 ConstantUnion returnValue; local
[all...]
/external/swiftshader/src/OpenGL/libGLES_CM/
H A Dmain.h37 const T &error(GLenum errorCode, const T &returnValue) argument
41 return returnValue;
/external/testng/src/test/java/test/privatemethod/
H A DPrivateMethodTest.java19 int returnValue = pmt.privateMethod();
21 Assert.assertEquals(returnValue, 1);
/external/proguard/src/proguard/optimize/info/
H A DMethodOptimizationInfo.java49 private Value returnValue; field in class:MethodOptimizationInfo
258 public void generalizeReturnValue(Value returnValue) argument
260 this.returnValue = this.returnValue != null ?
261 this.returnValue.generalize(returnValue) :
262 returnValue;
268 return returnValue;
273 public void setReturnValue(Value returnValue) argument
275 this.returnValue
[all...]
/external/swiftshader/src/OpenGL/libGLESv2/
H A Dmain.h39 const T &error(GLenum errorCode, const T &returnValue) argument
43 return returnValue;
/external/swiftshader/src/OpenGL/libEGL/
H A Dmain.h63 const T &error(EGLint errorCode, const T &returnValue) argument
67 return returnValue;
71 const T &success(const T &returnValue) argument
75 return returnValue;
/external/swiftshader/src/OpenGL/libGL/
H A Dmain.h57 T &error(GLenum errorCode, T &returnValue) argument
61 return returnValue;
65 const T &error(GLenum errorCode, const T &returnValue) argument
69 return returnValue;
/external/webrtc/webrtc/modules/audio_conference_mixer/source/
H A Dmemory_pool_win.h179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*) local
182 if(returnValue == NULL)
187 returnValue->payload = new MemoryPoolItemPayload<MemoryType>();
188 if(returnValue->payload == NULL)
190 delete returnValue;
193 returnValue->payload->base = returnValue;
195 return returnValue;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DJDWPConstants.java125 String returnValue = "";
127 returnValue += "|VERIFIED";
129 returnValue += "|PREPARED";
131 returnValue += "|INITIALIZED";
133 returnValue += "|ERROR";
135 returnValue += "|ARRAY";
137 returnValue += "|PRIMITIVE";
139 if (returnValue.equals("")) {
140 returnValue = "NONE";
142 returnValue
[all...]
/external/v8/src/inspector/
H A Dv8-regex.cc63 v8::Local<v8::Value> returnValue; local
66 .ToLocal(&returnValue))
76 DCHECK(!returnValue.IsEmpty());
77 if (!returnValue->IsArray()) return -1;
79 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/
H A DInvokeMethodTest.java119 Value returnValue = reply.getNextValueAsValue();
120 assertNotNull("Returned value is null", returnValue);
122 assertEquals("Invalid returned value,", 0, returnValue.getIntValue());
123 logWriter.println(" InterfaceType.InvokeMethod: returnValue.getIntValue()="
124 + returnValue.getIntValue());
138 InvokeMethodTestInterface.RETURN_VALUE, returnValue.getIntValue());
139 logWriter.println(" InterfaceType.InvokeMethod: returnValue.getIntValue()="
140 + returnValue.getIntValue());
/external/proguard/src/proguard/gui/
H A DMemberSpecificationsPanel.java79 int returnValue = fieldSpecificationDialog.showDialog();
80 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
101 int returnValue = methodSpecificationDialog.showDialog();
102 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
131 int returnValue = memberSpecificationDialog.showDialog();
132 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
H A DClassSpecificationsPanel.java70 int returnValue = classSpecificationDialog.showDialog();
71 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION)
94 int returnValue = classSpecificationDialog.showDialog();
95 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION)
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java49 Value returnValue);
47 exitMethod(Clazz clazz, Method method, Value returnValue) argument
/external/skia/src/pdf/
H A DSkDeflate.cpp42 SkDEBUGCODE(int returnValue;)
46 SkDEBUGCODE(returnValue =) deflate(zStream, flush);
52 ? returnValue == Z_STREAM_END
53 : returnValue == Z_OK);
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
H A DJavassistHelper.java52 public static String returnValue(CtBehavior method) throws NotFoundException { method in class:JavassistHelper
54 String returnValue = "";
56 returnValue = " returns: \" + $_ + \".";
58 return returnValue;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethodTest.java216 Value returnValue = reply.getNextValueAsValue();
217 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
218 + returnValue.getIntValue());
224 assertTrue("returnValue must be != null", returnValue != null);
225 assertEquals("Invalid returned value,", 345, returnValue.getIntValue());
250 returnValue = reply.getNextValueAsValue();
251 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
252 + returnValue.getIntValue());
332 Value returnValue
[all...]
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp303 void* returnValue; local
304 result = pthread_join( add1Thread, &returnValue );
309 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
311 result = pthread_join( fibThread1, &returnValue );
316 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
318 result = pthread_join( fibThread2, &returnValue );
323 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/
H A DParallelJIT.cpp281 void* returnValue; local
282 result = pthread_join( add1Thread, &returnValue );
287 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
289 result = pthread_join( fibThread1, &returnValue );
294 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
296 result = pthread_join( fibThread2, &returnValue );
301 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
/external/icu/icu4c/source/samples/ufortune/
H A Dufortune.c160 int returnValue=0; local
168 if (optionError != NULL) {returnValue = -1;}
169 return returnValue;
/external/mockito/src/test/java/org/mockitousage/debugging/
H A DInvocationListenerCallbackTest.java80 assertThat(toBeAsserted.returnValue).isEqualTo(returned);
90 Object returnValue; field in class:InvocationListenerCallbackTest.RememberingListener
95 this.returnValue = mcr.getReturnedValue();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DInvokeMethod003Test.java125 Value returnValue = reply.getNextValueAsValue();
126 assertNotNull("Returned value is null", returnValue);
127 assertEquals("Invalid returned value,", 123, returnValue.getIntValue());
128 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
129 + returnValue.getIntValue());

Completed in 780 milliseconds

123456