Home
last modified time | relevance | path

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

12345

/third_party/glslang/glslang/Include/
DConstantUnion.h440 TConstUnion returnValue; variable
443 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
444 case EbtUint: returnValue.setUConst(uConst + constant.uConst); break;
445 case EbtDouble: returnValue.setDConst(dConst + constant.dConst); break;
446 case EbtInt8: returnValue.setI8Const(i8Const + constant.i8Const); break;
447 case EbtInt16: returnValue.setI16Const(i16Const + constant.i16Const); break;
448 case EbtInt64: returnValue.setI64Const(i64Const + constant.i64Const); break;
449 case EbtUint8: returnValue.setU8Const(u8Const + constant.u8Const); break;
450 case EbtUint16: returnValue.setU16Const(u16Const + constant.u16Const); break;
451 case EbtUint64: returnValue.setU64Const(u64Const + constant.u64Const); break;
[all …]
/third_party/vk-gl-cts/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 …]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DConstantUnion.h244 ConstantUnion returnValue; variable
247 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
248 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break;
249 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
253 return returnValue;
258 ConstantUnion returnValue; variable
261 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
262 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break;
263 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
267 return returnValue;
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DConstantUnion.cpp411 TConstantUnion returnValue; in add() local
419 returnValue.setIConst(gl::WrappingSum<int>(lhs.iConst, rhs.iConst)); in add()
422 returnValue.setUConst(gl::WrappingSum<unsigned int>(lhs.uConst, rhs.uConst)); in add()
425 returnValue.setFConst(CheckedSum(lhs.fConst, rhs.fConst, diag, line)); in add()
434 returnValue.setFConst(CheckedSum(lhs.getFConst(), rhs.getFConst(), diag, line)); in add()
437 return returnValue; in add()
446 TConstantUnion returnValue; in sub() local
454 returnValue.setIConst(gl::WrappingDiff<int>(lhs.iConst, rhs.iConst)); in sub()
457 returnValue.setUConst(gl::WrappingDiff<unsigned int>(lhs.uConst, rhs.uConst)); in sub()
460 returnValue.setFConst(CheckedDiff(lhs.fConst, rhs.fConst, diag, line)); in sub()
[all …]
/third_party/node/deps/npm/node_modules/chalk/source/
Dutilities.js10 let returnValue = '';
12 returnValue += string.slice(endIndex, index) + substring + replacer;
17 returnValue += string.slice(endIndex);
18 return returnValue;
23 let returnValue = '';
26returnValue += string.slice(endIndex, (gotCR ? index - 1 : index)) + prefix + (gotCR ? '\r\n' : '\…
31 returnValue += string.slice(endIndex);
32 return returnValue;
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
DFFMpegExtractor.cpp124 int returnValue = -1; // -1 indicates error in decode() local
141 return returnValue; in decode()
153 if (!createAVFormatContext(ioContext.get(), &tmp)) return returnValue; in decode()
157 if (!openAVFormatContext(formatContext.get())) return returnValue; in decode()
159 if (!getStreamInfo(formatContext.get())) return returnValue; in decode()
165 return returnValue; in decode()
174 return returnValue; in decode()
186 return returnValue; in decode()
194 return returnValue; in decode()
200 return returnValue; in decode()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java651 byte returnValue;
654 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
660 returnValue = 0;
666 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
674 returnValue = 0;
692 assert returnValue >= 0;
693 return returnValue;
782 byte returnValue;
784 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
790 returnValue = 0;
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java644 byte returnValue;
647 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
653 returnValue = 0;
659 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
667 returnValue = 0;
685 assert returnValue >= 0;
686 return returnValue;
775 byte returnValue;
777 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
783 returnValue = 0;
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java807 String [] returnValue = null; in getMonths() local
812 returnValue = months; in getMonths()
816 returnValue = shortMonths; in getMonths()
819 returnValue = narrowMonths; in getMonths()
826 returnValue = standaloneMonths; in getMonths()
830 returnValue = standaloneShortMonths; in getMonths()
833 returnValue = standaloneNarrowMonths; in getMonths()
838 if (returnValue == null) { in getMonths()
841 return duplicate(returnValue); in getMonths()
934 String [] returnValue = null; in getWeekdays() local
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DDateFormatSymbols.java775 String [] returnValue = null; in getMonths() local
780 returnValue = months; in getMonths()
784 returnValue = shortMonths; in getMonths()
787 returnValue = narrowMonths; in getMonths()
794 returnValue = standaloneMonths; in getMonths()
798 returnValue = standaloneShortMonths; in getMonths()
801 returnValue = standaloneNarrowMonths; in getMonths()
806 if (returnValue == null) { in getMonths()
809 return duplicate(returnValue); in getMonths()
896 String [] returnValue = null; in getWeekdays() local
[all …]
/third_party/node/deps/npm/node_modules/wrap-ansi/
Dindex.js106 let returnValue = ''; variable
170 returnValue += character;
186 returnValue += wrapAnsiHyperlink('');
190 returnValue += wrapAnsiCode(code);
194 returnValue += wrapAnsiCode(escapeCode);
198 returnValue += wrapAnsiHyperlink(escapeUrl);
203 return returnValue;
/third_party/node/deps/npm/node_modules/wrap-ansi-cjs/
Dindex.js108 let returnValue = ''; variable
172 returnValue += character;
188 returnValue += wrapAnsiHyperlink('');
192 returnValue += wrapAnsi(code);
196 returnValue += wrapAnsi(escapeCode);
200 returnValue += wrapAnsiHyperlink(escapeUrl);
205 return returnValue;
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dentry_points_gles_3_0_autogen.cpp357 GLenum returnValue; in GL_ClientWaitSync() local
366 returnValue = context->clientWaitSync(sync, flags, timeout); in GL_ClientWaitSync()
370 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLClientWaitSync, GLenum>(); in GL_ClientWaitSync()
372 ANGLE_CAPTURE(ClientWaitSync, isCallValid, context, sync, flags, timeout, returnValue); in GL_ClientWaitSync()
377 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLClientWaitSync, GLenum>(); in GL_ClientWaitSync()
379 return returnValue; in GL_ClientWaitSync()
847 GLsync returnValue; in GL_FenceSync() local
856 returnValue = context->fenceSync(condition, flags); in GL_FenceSync()
860 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLFenceSync, GLsync>(); in GL_FenceSync()
862 ANGLE_CAPTURE(FenceSync, isCallValid, context, condition, flags, returnValue); in GL_FenceSync()
[all …]
Dentry_points_gles_2_0_autogen.cpp399 GLenum returnValue; in GL_CheckFramebufferStatus() local
408 returnValue = context->checkFramebufferStatus(target); in GL_CheckFramebufferStatus()
412 returnValue = in GL_CheckFramebufferStatus()
415 ANGLE_CAPTURE(CheckFramebufferStatus, isCallValid, context, target, returnValue); in GL_CheckFramebufferStatus()
420 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLCheckFramebufferStatus, GLenum>(); in GL_CheckFramebufferStatus()
422 return returnValue; in GL_CheckFramebufferStatus()
724 GLuint returnValue; in GL_CreateProgram() local
732 returnValue = context->createProgram(); in GL_CreateProgram()
736 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLCreateProgram, GLuint>(); in GL_CreateProgram()
738 ANGLE_CAPTURE(CreateProgram, isCallValid, context, returnValue); in GL_CreateProgram()
[all …]
/third_party/node/test/fixtures/es-module-loaders/
Dhooks-input.mjs44 const returnValue = { variable
50 …writeSync(1, JSON.stringify(returnValue) + '\n'); // For the test to validate when it parses stdout
52 return returnValue;
81 const returnValue = { variable
87 …writeSync(1, JSON.stringify(returnValue) + '\n'); // For the test to validate when it parses stdout
89 return returnValue;
/third_party/node/test/node-api/test_buffer/
Dtest_buffer.c78 napi_value returnValue; in bufferHasInstance() local
79 NODE_API_CALL(env, napi_get_boolean(env, hasInstance, &returnValue)); in bufferHasInstance()
80 return returnValue; in bufferHasInstance()
90 napi_value returnValue; in bufferInfo() local
97 &returnValue)); in bufferInfo()
98 return returnValue; in bufferInfo()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
Dmain.h62 const T &error(EGLint errorCode, const T &returnValue) in error() argument
66 return returnValue; in error()
70 const T &success(const T &returnValue) in success() argument
74 return returnValue; in success()
/third_party/node/deps/v8/src/inspector/
Dv8-regex.cc77 v8::Local<v8::Value> returnValue; in match() local
80 .ToLocal(&returnValue)) in match()
90 DCHECK(!returnValue.IsEmpty()); in match()
91 if (!returnValue->IsArray()) return -1; in match()
93 v8::Local<v8::Array> result = returnValue.As<v8::Array>(); in match()
/third_party/typescript/tests/baselines/reference/
DspyComparisonChecking.types49 spyObj[methodName].and.returnValue(1);
50 >spyObj[methodName].and.returnValue(1) : any
51 >spyObj[methodName].and.returnValue : any
57 >returnValue : any
DspyComparisonChecking.errors.txt1 tests/cases/compiler/spyComparisonChecking.ts(20,32): error TS2339: Property 'returnValue' does not…
24 spyObj[methodName].and.returnValue(1);
26 !!! error TS2339: Property 'returnValue' does not exist on type 'Function'.
/third_party/skia/third_party/externals/angle2/src/libGL/
Dentry_points_gl_3_autogen.cpp287 GLenum returnValue; in GL_CheckFramebufferStatus() local
296 returnValue = context->checkFramebufferStatus(target); in GL_CheckFramebufferStatus()
300 returnValue = in GL_CheckFramebufferStatus()
303 ANGLE_CAPTURE(CheckFramebufferStatus, isCallValid, context, target, returnValue); in GL_CheckFramebufferStatus()
308 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLCheckFramebufferStatus, GLenum>(); in GL_CheckFramebufferStatus()
310 return returnValue; in GL_CheckFramebufferStatus()
970 GLint returnValue; in GL_GetFragDataLocation() local
981 returnValue = context->getFragDataLocation(programPacked, name); in GL_GetFragDataLocation()
985 returnValue = GetDefaultReturnValue<angle::EntryPoint::GLGetFragDataLocation, GLint>(); in GL_GetFragDataLocation()
987 ANGLE_CAPTURE(GetFragDataLocation, isCallValid, context, programPacked, name, returnValue); in GL_GetFragDataLocation()
[all …]
/third_party/skia/src/pdf/
DSkDeflate.cpp45 SkDEBUGCODE(int returnValue;) in do_deflate()
49 SkDEBUGCODE(returnValue =) deflate(zStream, flush); in do_deflate()
55 ? returnValue == Z_STREAM_END in do_deflate()
56 : returnValue == Z_OK); in do_deflate()
/third_party/musl/libc-test/src/functionalext/supplement/fortify/fortify_gtest/
Dfortify_recv_chk_test.cpp23 void* returnValue = nullptr; in ConnectFunc() local
37 returnValue = reinterpret_cast<void*>(-1); in ConnectFunc()
39 returnValue = reinterpret_cast<void*>(-1); in ConnectFunc()
43 return returnValue; in ConnectFunc()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
DPrecision.java406 Precision returnValue; in constructFractionSignificant() local
408 returnValue = COMPACT_STRATEGY; in constructFractionSignificant()
410 returnValue = new FracSigRounderImpl(base.minFrac, base.maxFrac, minSig, maxSig); in constructFractionSignificant()
412 return returnValue.withMode(base.mathContext); in constructFractionSignificant()
451 Precision returnValue; in constructFromCurrency() local
454 returnValue = constructIncrement(increment); in constructFromCurrency()
457 returnValue = constructFraction(minMaxFrac, minMaxFrac); in constructFromCurrency()
459 return returnValue.withMode(base.mathContext); in constructFromCurrency()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
DArabicShapingRegTest.java207 Object returnValue = m.invoke(null, testValue); in getStaticCharacterHelperFunctionValue() local
209 if (Integer.class.isInstance(returnValue)) { in getStaticCharacterHelperFunctionValue()
210 return (Integer)returnValue == 1; in getStaticCharacterHelperFunctionValue()
212 return (Boolean)returnValue; in getStaticCharacterHelperFunctionValue()

12345