Home
last modified time | relevance | path

Searched refs:argValue (Results 1 – 11 of 11) sorted by relevance

/third_party/node/test/node-api/test_reference_by_node_api_version/
Dtest_reference_by_node_api_version.c18 napi_value* argValue) { in GetArgValue() argument
21 napi_get_cb_info(env, info, &argc, argValue, NULL, NULL)); in GetArgValue()
30 napi_value argValue; in GetArgValueAsIndex() local
31 NODE_API_CHECK_STATUS(GetArgValue(env, info, &argValue)); in GetArgValueAsIndex()
34 NODE_API_CHECK_STATUS(napi_typeof(env, argValue, &valueType)); in GetArgValueAsIndex()
38 return napi_get_value_uint32(env, argValue, index); in GetArgValueAsIndex()
76 napi_value argValue; in CreateRef() local
77 NODE_API_CALL(env, GetArgValue(env, info, &argValue)); in CreateRef()
80 NODE_API_CALL(env, napi_typeof(env, argValue, &valueType)); in CreateRef()
86 napi_create_reference(env, argValue, 1, valueRefs + index)); in CreateRef()
/third_party/node/test/parallel/
Dtest-inspect-publish-uid.js15 async function testArg(argValue) { argument
16 console.log('Checks ' + argValue + '..');
17 const hasHttp = argValue.split(',').includes('http');
18 const hasStderr = argValue.split(',').includes('stderr');
22 `--inspect-publish-uid=${argValue}`,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
DCLKernelCL.cpp129 cl_int CLKernelCL::setArg(cl_uint argIndex, size_t argSize, const void *argValue) in setArg() argument
132 if (argValue != nullptr) in setArg()
138 cl_mem memory = *static_cast<const cl_mem *>(argValue); in setArg()
146 cl_sampler sampler = *static_cast<const cl_sampler *>(argValue); in setArg()
154 cl_command_queue queue = *static_cast<const cl_command_queue *>(argValue); in setArg()
165 argValue = &value; in setArg()
167 return mNative->getDispatch().clSetKernelArg(mNative, argIndex, argSize, argValue); in setArg()
DCLKernelCL.h26 cl_int setArg(cl_uint argIndex, size_t argSize, const void *argValue) override;
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
DMiniMessageFormatter.java127 String argValue=arg.toString(); in format() local
130 dest.append(argValue); in format()
140 } else if(msg.partSubstringMatches(part, argValue)) { in format()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DCLKernel.cpp18 cl_int Kernel::setArg(cl_uint argIndex, size_t argSize, const void *argValue) in setArg() argument
20 return mImpl->setArg(argIndex, argSize, argValue); in setArg()
DCLKernel.h22 cl_int setArg(cl_uint argIndex, size_t argSize, const void *argValue);
/third_party/skia/tools/trace/
DChromeTracingTracer.cpp152 uint64_t argValue, in trace_value_to_json() argument
156 value.as_uint = argValue; in trace_value_to_json()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DCLKernelImpl.h86 virtual cl_int setArg(cl_uint argIndex, size_t argSize, const void *argValue) = 0;
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp3622 TIntermTyped* argValue = argAggregate->getSequence()[2]->getAsTyped(); // value in decomposeStructBufferMethods() local
3667 rValue = argValue; in decomposeStructBufferMethods()
3669 rValue = intermediate.addIndex(EOpIndexDirect, argValue, idxConst, loc); in decomposeStructBufferMethods()
3670 const TType indexType(argValue->getType(), 0); in decomposeStructBufferMethods()
5242 TIntermTyped* argValue = node->getAsUnaryNode()->getOperand(); in decomposeIntrinsic() local
5244 const int vecSize = argValue->getType().getVectorSize(); in decomposeIntrinsic()
5265 TIntermTyped* component = argValue->getType().isVector() ? in decomposeIntrinsic()
5266 intermediate.addIndex(EOpIndexDirect, argValue, idxConst, loc) : argValue; in decomposeIntrinsic()
5268 if (component != argValue) in decomposeIntrinsic()
5269 component->setType(TType(argValue->getBasicType(), EvqTemporary)); in decomposeIntrinsic()
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DIntermNode.cpp2337 const TConstantUnion *argValue = typedArg->getConstantValue(); in fold() local
2342 if (argValue[i].getFConst() < 0.0f) in fold()