Home
last modified time | relevance | path

Searched refs:resultValue (Results 1 – 10 of 10) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DActivityResultFacade.java54 @RpcParameter(name = "resultValue") Boolean resultValue) { in setResultBoolean()
56 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.booleanValue()); in setResultBoolean()
66 @RpcParameter(name = "resultValue") Byte resultValue) { in setResultByte()
68 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.byteValue()); in setResultByte()
78 @RpcParameter(name = "resultValue") Short resultValue) { in setResultShort()
80 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.shortValue()); in setResultShort()
90 @RpcParameter(name = "resultValue") Character resultValue) { in setResultChar()
92 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.charValue()); in setResultChar()
102 @RpcParameter(name = "resultValue") Integer resultValue) { in setResultInteger()
104 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.intValue()); in setResultInteger()
[all …]
/external/vogar/src/vogar/
DConsole.java157 String outcomeName, Result result, ResultValue resultValue, Expectation expectation) { in printResult() argument
159 if (result != Result.SUCCESS || resultValue != ResultValue.OK) { in printResult()
177 if (resultValue == ResultValue.OK) { in printResult()
179 } else if (resultValue == ResultValue.FAIL) { in printResult()
181 } else if (resultValue == ResultValue.IGNORE) { in printResult()
205 ResultValue resultValue = annotatedOutcome.getResultValue(); in summarizeOutcomes() local
206 if (resultValue == ResultValue.OK) { in summarizeOutcomes()
209 } else if (resultValue == ResultValue.FAIL) { in summarizeOutcomes()
212 } else if (resultValue == ResultValue.WARNING) { in summarizeOutcomes()
230 if (mostRecentResultValue != null && resultValue != mostRecentResultValue) { in summarizeOutcomes()
[all …]
DDriver.java229 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome() local
231 if (resultValue == ResultValue.OK) { in recordOutcome()
233 } else if (resultValue == ResultValue.FAIL) { in recordOutcome()
235 } else if (resultValue == ResultValue.WARNING) { in recordOutcome()
243 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome() local
/external/xmlrpcpp/src/
DXmlRpcServerConnection.cpp209 XmlRpcValue params, resultValue; in executeRequest() local
216 if ( ! executeMethod(methodName, params, resultValue) && in executeRequest()
217 ! executeMulticall(methodName, params, resultValue)) in executeRequest()
220 generateResponse(resultValue.toXml()); in executeRequest()
298 XmlRpcValue resultValue; in executeMulticall() local
299 resultValue.setSize(1); in executeMulticall()
301 if ( ! executeMethod(methodName, methodParams, resultValue[0]) && in executeMulticall()
302 ! executeMulticall(methodName, params, resultValue[0])) in executeMulticall()
308 result[i] = resultValue; in executeMulticall()
/external/v8/src/inspector/
Dinjected-script.cc138 v8::Local<v8::Value> resultValue = function.callWithoutExceptionHandling(); in getProperties() local
147 if (resultValue.IsEmpty()) return Response::InternalError(); in getProperties()
149 Response response = toProtocolValue(context, resultValue, &protocolValue); in getProperties()
384 v8::Local<v8::Value> resultValue; in wrapEvaluateResult() local
386 if (!maybeResultValue.ToLocal(&resultValue)) in wrapEvaluateResult()
388 Response response = wrapObject(resultValue, objectGroup, returnByValue, in wrapEvaluateResult()
392 m_lastEvaluationResult.Reset(m_context->isolate(), resultValue); in wrapEvaluateResult()
Dv8-debugger-agent-impl.cc561 v8::Local<v8::Value> resultValue; in restartFrame() local
564 &resultValue) || in restartFrame()
566 !resultValue->ToBoolean(scope.context()).ToLocal(&result) || in restartFrame()
/external/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.atomic_counter.txt88 resultValue
94 if incrementCounts[pos] > 0 and pos > resultValue:
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageAtomicOperationTests.cpp667 deInt32 resultValue = resultBuffer.getPixelInt(x, y, z).x(); in verifyResult() local
679 if (resultValue != reference) in verifyResult()
690 matchFound = (resultValue == getAtomicFuncArgument(m_operation, gid, extendedGridSize)); in verifyResult()
/external/deqp/modules/gles31/functional/
Des31fTextureBorderClampTests.cpp1134 …const tcu::Vec4 resultValue = (resultPixel - samplerParams.colorBias) / samplerParams.colorScal… in verifyTextureGatherResult() local
1142 … samplerParams.sampler, lookupPrecision, texCoord, 0, glu::getDefaultGatherOffsets(), resultValue)) in verifyTextureGatherResult()
1198 const tcu::Vec4 resultValue = renderedFrame.getPixel(px, py); in verifyTextureGatherCmpResult() local
1202 if (tcu::boolAny(tcu::logicalAnd(colorMask, tcu::notEqual(referenceValue, resultValue)))) in verifyTextureGatherCmpResult()
1204 …rParams.sampler, texComparePrecision, texCoord, glu::getDefaultGatherOffsets(), refZ, resultValue)) in verifyTextureGatherCmpResult()
1209 …mpler, lowQualityTexComparePrecision, texCoord, glu::getDefaultGatherOffsets(), refZ, resultValue)) in verifyTextureGatherCmpResult()
Des31fShaderImageLoadStoreTests.cpp2721 const deUint32 resultValue = resultSlice.getPixelUint(0, 0).x(); in operator ()() local
2722 if (!de::inRange(resultValue, m_min, m_max)) in operator ()()
2724 log << TestLog::Message << "// Failure: got value " << resultValue << TestLog::EndMessage; in operator ()()
2729 log << TestLog::Message << "// Success: got value " << resultValue << TestLog::EndMessage; in operator ()()