Home
last modified time | relevance | path

Searched refs:resultValue (Results 1 – 12 of 12) 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.java225 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome() local
227 if (resultValue == ResultValue.OK) { in recordOutcome()
229 } else if (resultValue == ResultValue.FAIL) { in recordOutcome()
231 } else if (resultValue == ResultValue.WARNING) { in recordOutcome()
239 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome() local
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmComputeShaderTestUtil.hpp180 const deUint32 resultValue = *reinterpret_cast<deUint32*>(outputAllocs[0]->getHostPtr()); in compareWithRetvals() local
182 if (!compareRetVals<OpAtomic>(inputValues, inputValuesCount, resultValue, values)) in compareWithRetvals()
206 …t deUint32* inputValues, const size_t inputValuesCount, const deUint32 resultValue, const deUint32… in compareRetVals() argument
213 deUint32 currentResult = resultValue; in compareRetVals()
/external/v8/src/inspector/
Dinjected-script.cc347 v8::Local<v8::Value> resultValue = function.callWithoutExceptionHandling(); in getProperties() local
356 if (resultValue.IsEmpty()) return Response::InternalError(); in getProperties()
358 Response response = toProtocolValue(context, resultValue, &protocolValue); in getProperties()
613 v8::Local<v8::Value> resultValue; in wrapEvaluateResult() local
615 if (!maybeResultValue.ToLocal(&resultValue)) in wrapEvaluateResult()
617 Response response = wrapObject(resultValue, objectGroup, returnByValue, in wrapEvaluateResult()
621 m_lastEvaluationResult.Reset(m_context->isolate(), resultValue); in wrapEvaluateResult()
/external/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.atomic_counter.txt88 resultValue
94 if incrementCounts[pos] > 0 and pos > resultValue:
/external/deqp/external/openglcts/modules/glesext/texture_buffer/
DesextcTextureBufferTextureBufferRange.hpp250 const char* resultValue);
DesextcTextureBufferTextureBufferRange.cpp1218 const char* exptectedValue, const char* resultValue) in logError() argument
1224 << "Result value: " << resultValue << "\n" in logError()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageAtomicOperationTests.cpp661 deInt32 resultValue = resultBuffer.getPixelInt(x, y, z).x(); in verifyResult() local
673 if (resultValue != reference) in verifyResult()
684 matchFound = (resultValue == getAtomicFuncArgument(m_operation, gid, extendedGridSize)); in verifyResult()
698 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 ()()
/external/cldr/tools/java/org/unicode/cldr/util/props/
DUnicodeProperty.java490 String resultValue = (String) result.getValue(i); in _getUnicodeMap() local
491 if (!value.equals(resultValue)) { in _getUnicodeMap()