Home
last modified time | relevance | path

Searched refs:result (Results 10301 - 10325 of 17105) sorted by relevance

1...<<411412413414415416417418419420>>...685

/third_party/node/test/sequential/
H A Dtest-http-econnrefused.js70 function afterPing(result) {
71 responses.push(result);
/third_party/node/deps/v8/src/wasm/
H A Dlocal-decl-encoder.cc52 uint32_t result = in AddLocals() local
60 return result; in AddLocals()
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/resources/
H A Ddifferential_fuzz_library.js60 const result = map.call(array, (value, index, array) => {
64 return `[${join.call(result, ", ")}]`;
/third_party/node/deps/v8/tools/debug_helper/
H A Ddebug-helper.h200 v8::debug_helper::ObjectPropertiesResult* result);
205 v8::debug_helper::StackFrameResult* result);
/third_party/node/deps/v8/tools/wasm/
H A Dwasm-import-profiler.js25 var result = orig_func(...args);
30 return result;
/third_party/node/test/addons/new-isolate-addon/
H A Dbinding.cc53 auto result = setup->context()->Global()->Set( in RunInSeparateIsolate() local
57 assert(!result.IsNothing()); in RunInSeparateIsolate()
/third_party/node/test/fixtures/wpt/html/webappapis/atob/
H A Dbase64.any.js156 const result = globalThis.atob(input);
158 assert_equals(result.charCodeAt(ii), output[ii]);
/third_party/musl/porting/linux/user/include/fortify/
H A Dfortify.h73 #define __DIAGNOSE__SIZE_MUL_OVERFLOW(a, b, result) __builtin_umull_overflow(a, b, result)
/third_party/musl/src/thread/powerpc/
H A Dsyscall_cp.s38 cmpwi cr7, 0, 0 #compare r0 with 0, store result in cr7.
55 #else negate result.
/third_party/node/deps/icu-small/source/common/unicode/
H A Dsimpleformatter.h50 * UnicodeString result;
53 * fmt.format("england", "paul", result, errorCode);
240 * Formats the given values, replacing the contents of the result string.
241 * May optimize by actually appending to the result if it is the same object
245 * An argument value may be the same object as result.
249 * @param result Gets its contents replaced by the formatted pattern and values.
257 * @return result
262 UnicodeString &result,
329 UnicodeString &result, const UnicodeString *resultCopy, UBool forbidResultAsValue,
/third_party/ninja/src/
H A Dutil.h70 /// Appends |input| to |*result|, escaping according to the whims of either
72 /// Appends the string directly to |result| without modification if we can
74 void GetShellEscapedString(const std::string& input, std::string* result);
75 void GetWin32EscapedString(const std::string& input, std::string* result);
/third_party/node/deps/icu-small/source/common/
H A Duset_props.cpp132 char16_t* result, int32_t resultCapacity, in uset_toPattern()
137 return pat.extract(result, resultCapacity, *ec); in uset_toPattern()
131 uset_toPattern(const USet* set, char16_t* result, int32_t resultCapacity, UBool escapeUnprintable, UErrorCode* ec) uset_toPattern() argument
/third_party/node/deps/icu-small/source/i18n/
H A Dnfrule.h78 Formattable& result) const;
82 void _appendRuleText(UnicodeString& result) const;
H A Dformat.cpp107 // Formats the obj and append the result in the buffer, toAppendTo.
140 // result object. Checks the parse position for errors.
144 Formattable& result, in parseObject()
150 parseObject(source, result, parsePosition); in parseObject()
143 parseObject(const UnicodeString& source, Formattable& result, UErrorCode& status) const parseObject() argument
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Ddtitvinf.h196 * The caller owns the result and should delete it when done.
272 * @param result output param to receive the pattern
274 * @return a reference to 'result'
279 UnicodeString& result,
284 * @param result output param to receive the pattern
285 * @return a reference to 'result'
288 UnicodeString& getFallbackIntervalPattern(UnicodeString& result) const;
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_fence.c153 const boolean result = (f->count >= f->rank); in lp_fence_timedwait() local
155 return result; in lp_fence_timedwait()
/third_party/icu/icu4c/source/i18n/unicode/
H A Ddtitvinf.h196 * The caller owns the result and should delete it when done.
272 * @param result output param to receive the pattern
274 * @return a reference to 'result'
279 UnicodeString& result,
284 * @param result output param to receive the pattern
285 * @return a reference to 'result'
288 UnicodeString& getFallbackIntervalPattern(UnicodeString& result) const;
/third_party/node/deps/v8/src/builtins/
H A Dgrowable-fixed-array-gen.cc63 const TNode<JSArray> result = in ToJSArray() local
65 return result; in ToJSArray()
/third_party/node/deps/v8/src/heap/cppgc/
H A Dheap-space.h74 Address result = start_; in Allocate() local
77 return result; in Allocate()
/third_party/node/deps/v8/src/heap/
H A Dincremental-marking-job.cc88 StepResult result = heap->incremental_marking()->AdvanceWithDeadline( in Step() local
93 return result; in Step()
/third_party/node/deps/v8/src/objects/
H A Djs-segment-iterator.cc56 // Now all properties are ready, so we can allocate the result object. in Create()
57 Handle<JSObject> result = isolate->factory()->NewJSObjectFromMap(map); in Create() local
60 Handle<JSSegmentIterator>::cast(result); in Create()
/third_party/node/deps/v8/src/runtime/
H A Druntime-numbers.cc47 double result = StringToInt(isolate, subject, radix32); in RUNTIME_FUNCTION() local
48 return *isolate->factory()->NewNumber(result); in RUNTIME_FUNCTION()
/third_party/musl/libc-test/src/functionalext/supplement/fortify/fortify_gtest/
H A Dfortify_recv_chk_test.cpp113 size_t result = static_cast<size_t>(__recv_chk(acceptFd, buf, len1, len1, 0)); in HWTEST_F() local
114 EXPECT_EQ(strlen(g_testRecv) + 1, result); in HWTEST_F()
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dutimes.c77 int result = utimes(path, tv); in utimes_0200() local
78 if (result != 0) { in utimes_0200()
/third_party/mesa3d/src/util/
H A Du_process.c207 int result = _NSGetExecutablePath(process_path, &bufSize); in util_get_process_exec_path()
209 return (result == 0) ? strlen(process_path) : 0; in util_get_process_exec_path()

Completed in 15 milliseconds

1...<<411412413414415416417418419420>>...685