Home
last modified time | relevance | path

Searched refs:result (Results 4976 - 5000 of 11217) sorted by relevance

1...<<191192193194195196197198199200>>...449

/third_party/libuv/src/win/
H A Dreq-inl.h69 #define UV_SUCCEEDED_WITHOUT_IOCP(result) \
70 ((result) && (handle->flags & UV_HANDLE_SYNC_BYPASS_IOCP))
72 #define UV_SUCCEEDED_WITH_IOCP(result) \
73 ((result) || (GetLastError() == ERROR_IO_PENDING))
/third_party/libwebsockets/lib/plat/freertos/
H A Dfreertos-file.c130 char buf[64], result[64]; in lws_find_string_in_file() local
144 s = sizeof(result) - 1; in lws_find_string_in_file()
145 n = nvs_get_str(nvh, buf, result, &s); in lws_find_string_in_file()
151 return !strcmp(p + 1, result); in lws_find_string_in_file()
/third_party/mesa3d/.gitlab-ci/tests/utils/
H A Dtest_lava_log.py61 result = getattr(gs, method)()
62 assert result == expectation
163 result = yaml.safe_load(yaml_result)
165 assert result == expectation
/third_party/jerryscript/tests/jerry/es2015/
H A Dobject-assign.js164 var result = Object.assign ({}, obj);
165 assert (result[foo] == 7);
166 assert (result[asd] == 8);
167 assert (result[bar] == 9);
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-reflect.c281 ecma_value_t result = ecma_op_object_define_own_property (obj_p, in ecma_builtin_reflect_dispatch_routine() local
288 if (ECMA_IS_VALUE_ERROR (result)) in ecma_builtin_reflect_dispatch_routine()
290 return result; in ecma_builtin_reflect_dispatch_routine()
293 bool boolean_result = ecma_op_to_boolean (result); in ecma_builtin_reflect_dispatch_routine()
/third_party/libwebsockets/minimal-examples/crypto/minimal-crypto-x509/
H A Dmain.c58 int n, result = 1, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE; in main() local
188 result = 0; in main()
199 if (result) in main()
204 return result; in main()
/third_party/node/lib/internal/crypto/
H A Dscrypt.js57 job.ondone = (error, result) => {
60 const buf = Buffer.from(result);
75 const { 0: err, 1: result } = job.run();
80 const buf = Buffer.from(result);
/third_party/node/test/parallel/
H A Dtest-https-agent-create-connection.js23 let result = '';
29 result += chunk;
32 assert.match(result, expectedHeader);
33 assert.match(result, expectedBody);
H A Dtest-whatwg-transformstream.js41 const { 1: result } = await Promise.all([
46 assert.strictEqual(result.value, 'hello');
75 const { 1: result } = await Promise.all([
80 assert.strictEqual(result.value, 'HELLO');
/third_party/node/deps/v8/tools/
H A Drun-wasm-api-tests.py126 result = 0
160 if c: result = c
161 if result:
165 return result
/third_party/node/src/
H A Dnode_realm-inl.h73 T* result = static_cast<T*>(ptr.get()); in GetBindingData()
74 DCHECK_NOT_NULL(result); in GetBindingData()
75 DCHECK_EQ(result->realm(), GetCurrent(context)); in GetBindingData()
76 return result; in GetBindingData()
/third_party/node/deps/icu-small/source/common/
H A Drbbistbl.cpp145 UnicodeString result; in parseReference() local
154 return result; // Indicate failure with empty string in parseReference()
157 text.extractBetween(start, i, result); in parseReference()
158 return result; in parseReference()
/third_party/ninja/src/
H A Dbuild.h68 bool EdgeFinished(Edge* edge, EdgeResult result, std::string* err);
143 /// The result of waiting for a command.
152 virtual bool WaitForCommand(Result* result) = 0;
209 bool FinishCommand(CommandRunner::Result* result, std::string* err);
226 bool ExtractDeps(CommandRunner::Result* result, const std::string& deps_type,
/third_party/mesa3d/src/intel/vulkan/
H A Danv_bo_sync.c107 VkResult result; in anv_bo_sync_wait() local
140 result = anv_device_wait(device, sync->bo, rel_timeout); in anv_bo_sync_wait()
142 if (result != VK_SUCCESS) in anv_bo_sync_wait()
143 return result; in anv_bo_sync_wait()
/third_party/node/deps/npm/node_modules/exponential-backoff/dist/
H A Dbackoff.js7 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
/third_party/node/deps/npm/node_modules/exponential-backoff/dist/delay/skip-first/
H A Dskip-first.delay.js20 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
/third_party/node/deps/npm/node_modules/http-proxy-agent/dist/
H A Dindex.js20 var result = {};
21 if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22 __setModuleDefault(result, mod);
23 return result;
/third_party/node/deps/icu-small/source/i18n/
H A Dmeasunit_impl.h28 * identifier. The category is returned via `result`, which must initially be
68 void appendNeutralIdentifier(CharString &result, UErrorCode &status) const;
264 MeasureUnitImpl result; in forCurrencyCode() local
266 result.identifier.append(currencyCode, localStatus); in forCurrencyCode()
268 return result; in forCurrencyCode()
/third_party/node/deps/npm/node_modules/socks-proxy-agent/dist/
H A Dindex.js20 var result = {};
21 if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22 __setModuleDefault(result, mod);
23 return result;
/third_party/ltp/testcases/kernel/sched/hyperthreading/ht_affinity/
H A Dht_affinity.c53 int result = 1; in HT_SetAffinity() local
88 result = 0; in HT_SetAffinity()
117 result = 0; in HT_SetAffinity()
123 if (result) in HT_SetAffinity()
/third_party/node/deps/v8/src/date/
H A Ddate.h70 int result = (days + 4) % 7; in Weekday() local
71 return result >= 0 ? result : result + 7; in Weekday()
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-aix.cc89 std::vector<SharedLibraryAddress> result; in GetSharedLibraryAddresses() local
92 if (fd < 0) return result; in GetSharedLibraryAddresses()
122 result.push_back(SharedLibraryAddress(start_of_path, start, end)); in GetSharedLibraryAddresses()
125 return result; in GetSharedLibraryAddresses()
/third_party/node/deps/v8/src/heap/
H A Dweak-object-worklists.cc206 bool result = false; in ContainsYoungObjects() local
207 worklist.Iterate([&result](Type candidate) { in ContainsYoungObjects()
209 result = true; in ContainsYoungObjects()
212 return result; in ContainsYoungObjects()
/third_party/node/deps/v8/src/objects/
H A Dslots-inl.h84 Address result = base::AsAtomicPointer::Relaxed_CompareAndSwap( in Relaxed_CompareAndSwap() local
86 return Object(result); in Relaxed_CompareAndSwap()
90 Address result = base::AsAtomicPointer::Release_CompareAndSwap( in Release_CompareAndSwap() local
92 return Object(result); in Release_CompareAndSwap()
H A Djs-segmenter.cc108 // Now all properties are ready, so we can allocate the result object. in New()
131 Handle<JSObject> result = factory->NewJSObject(isolate->object_function()); in ResolvedOptions() local
145 JSObject::AddProperty(isolate, result, factory->locale_string(), locale, in ResolvedOptions()
147 JSObject::AddProperty(isolate, result, factory->granularity_string(), in ResolvedOptions()
150 return result; in ResolvedOptions()

Completed in 14 milliseconds

1...<<191192193194195196197198199200>>...449