/third_party/node/lib/internal/test_runner/mock/ |
H A D | mock_timers.js | 160 const result = await eventIt.next(); 161 const value = result.value[0]; 169 done: result.done, 181 #promisifyTimer({ timerFn, clearFn, ms, result, options }) { 201 return resolve(result); 215 #setImmediatePromisified(result, options) { 221 result, 226 #setTimeoutPromisified(ms, result, options) { 232 result,
|
H A D | mock.js | 376 let result; 380 result = ReflectApply(fn, thisArg, argList); 389 result, 397 return result; 401 let result; 405 result = ReflectConstruct(realTarget, argList, newTarget); 414 result, 418 this: result, 422 return result;
|
/third_party/node/deps/v8/tools/cppgc/ |
H A D | gen_cmake.py | 228 self.result = [] 232 self.result.append(f""" 315 self.result.extend( 318 self.result.append("\ninstall(TARGETS cppgc)") 326 self.result.append(comment) 327 self.result.extend(rules) 399 return '\n'.join(self.result) 499 result = FormatCMake(builder.GetResult()) 500 SaveContents(result, outfile)
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/import_export/ |
H A D | ec_importKey.https.any.js | 120 then(function(result) { 122 assert_true(equalBuffers(data[format], result), "Round trip works"); 124 assert_true(equalJwk(data[format], result), "Round trip works"); 198 var result = { 204 result.alg = "A" + (8 * keyData.byteLength).toString() + algorithm.name.substring(4); 206 result.alg = "HS" + algorithm.hash.substring(4); 208 return result; 269 var result = "(" + 277 return result;
|
H A D | rsa_importKey.https.any.js | 123 then(function(result) { 125 assert_true(equalBuffers(keyData[format], result), "Round trip works"); 127 assert_true(equalJwk(keyData[format], result), "Round trip works"); 196 var result = { 202 result.alg = "A" + (8 * keyData.byteLength).toString() + algorithm.name.substring(4); 204 result.alg = "HS" + algorithm.hash.substring(4); 206 return result; 267 var result = "(" + 275 return result;
|
/third_party/node/deps/icu-small/source/common/ |
H A D | bytestrie.cpp | 103 UStringTrieResult result; in branchNext() local 108 result=USTRINGTRIE_FINAL_VALUE; in branchNext() 132 result= node>=kMinValueLead ? valueResult(node) : USTRINGTRIE_NO_VALUE; in branchNext() 135 return result; in branchNext() 269 UStringTrieResult result=branchNext(pos, node, inByte); 270 if(result==USTRINGTRIE_NO_MATCH) { 276 return result; 280 return result; 285 if(result==USTRINGTRIE_FINAL_VALUE) {
|
H A D | ucharstrie.cpp | 84 UStringTrieResult result; in branchNext() local 88 result=USTRINGTRIE_FINAL_VALUE; in branchNext() 105 result= node>=kMinValueLead ? valueResult(node) : USTRINGTRIE_NO_VALUE; in branchNext() 108 return result; in branchNext() 239 UStringTrieResult result=branchNext(pos, node, uchar); in next() local 240 if(result==USTRINGTRIE_NO_MATCH) { in next() 246 return result; in next() 250 return result; in next() 255 if(result==USTRINGTRIE_FINAL_VALUE) { in next()
|
H A D | servls.cpp | 65 UObject* result = nullptr; in get() local 67 return result; in get() 77 result = getKey(*key, status); in get() 80 result = getKey(*key, &temp, status); in get() 82 if (result != nullptr) { in get() 90 return result; in get() 195 ServiceEnumeration* result = new ServiceEnumeration(service, status); in create() local 197 return result; in create() 199 delete result; in create()
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | locid.h | 418 * requirement will be silently omitted from the result. 433 * requirement will be silently omitted from the result. 725 * nullptr, will result in the keyword being removed. No error is given if 746 * nullptr, will result in the keyword being removed. No error is given if 766 * nullptr, will result in the keyword being removed. No error is given if 830 * displayLocale would result in "Anglais", while passing Locale::getGerman() 831 * for displayLocale would result in "Englisch". 857 * Locale::getFrench() for displayLocale would result in "", while 858 * passing Locale::getGerman() for displayLocale would result in 885 * Locale::getFrench() for displayLocale would result i 1187 StringClass result; toLanguageTag() local 1260 StringClass result; getKeywordValue() local 1269 StringClass result; getUnicodeKeywordValue() local [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | genX_blorp_exec.c | 85 VkResult result; in blorp_surface_reloc() local 88 result = anv_reloc_list_add_bo(&cmd_buffer->surface_relocs, in blorp_surface_reloc() 91 if (unlikely(result != VK_SUCCESS)) in blorp_surface_reloc() 92 anv_batch_set_error(&cmd_buffer->batch, result); in blorp_surface_reloc() 97 result = anv_reloc_list_add(&cmd_buffer->surface_relocs, in blorp_surface_reloc() 102 if (result != VK_SUCCESS) in blorp_surface_reloc() 103 anv_batch_set_error(&cmd_buffer->batch, result); in blorp_surface_reloc() 180 VkResult result = in blorp_alloc_binding_table() local 183 if (result != VK_SUCCESS) in blorp_alloc_binding_table()
|
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | columnify.js | 87 var result = Object.create(null); 90 result[columnName] = item[columnName] != null ? item[columnName] : ''; 92 result[columnName] = '' + result[columnName]; 95 result[columnName] = result[columnName].replace(/[^\S\n]/gmi, ' '); 98 result[columnName] = result[columnName].replace(/\s/gmi, ' '); 101 return result;
|
H A D | index.js | 81 let result = Object.create(null) 84 result[columnName] = item[columnName] != null ? item[columnName] : '' 86 result[columnName] = '' + result[columnName] 89 result[columnName] = result[columnName].replace(/[^\S\n]/gmi, ' ') 92 result[columnName] = result[columnName].replace(/\s/gmi, ' ') 95 return result
|
/third_party/node/deps/npm/node_modules/ignore-walk/lib/ |
H A D | index.js | 22 this.result = this.parent ? this.parent.result : new Set() 40 this.result = data 68 this.result.add(this.path.slice(this.root.length + 1)) 70 this.emit('done', this.result) 142 this.emit('done', this.result) 146 this.emit('done', this.result) 162 this.result.add(abs.slice(this.root.length + 1)) 305 const walkSync = opts => new WalkerSync(opts).start().result
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | idnaconf.cpp | 156 UChar result[200] = {0,}; // simple life in Call() local 161 uidna_IDNToASCII(p, p_len, result, 200, UIDNA_USE_STD3_RULES, NULL, &status); in Call() 163 uidna_IDNToASCII(p, p_len, result, 200, UIDNA_ALLOW_UNASSIGNED, NULL, &status); in Call() 165 uidna_IDNToUnicode(p, p_len, result, 200, UIDNA_USE_STD3_RULES, NULL, &status); in Call() 167 uidna_IDNToUnicode(p, p_len, result, 200, UIDNA_ALLOW_UNASSIGNED, NULL, &status); in Call() 175 if (namezone.compare(result, -1) == 0){ in Call() 177 logln(UnicodeString("namebase: ") + prettify(namebase) + UnicodeString(" result: ") + prettify(result)); in Call() 179 id.append(" no error, but result is not as expected."); in Call() 189 if (namebase.compare(result, in Call() [all...] |
/third_party/node/deps/v8/src/handles/ |
H A D | handles-inl.h | 153 Handle<T> result(value, isolate_); in CloseAndEscape() 159 return result; in CloseAndEscape() 165 Address* result = data->next; in CreateHandle() local 166 if (result == data->limit) { in CreateHandle() 167 result = Extend(isolate); in CreateHandle() 170 // and return the result. in CreateHandle() 171 DCHECK_LT(reinterpret_cast<Address>(result), in CreateHandle() 173 data->next = reinterpret_cast<Address*>(reinterpret_cast<Address>(result) + in CreateHandle() 175 *result = value; in CreateHandle() 176 return result; in CreateHandle() [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-promise.cc | 159 Handle<Object> result; in RUNTIME_FUNCTION() local 160 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, in RUNTIME_FUNCTION() 162 return *result; in RUNTIME_FUNCTION() 177 Handle<Object> result; in RUNTIME_FUNCTION() local 179 isolate, result, in RUNTIME_FUNCTION() 181 return *result; in RUNTIME_FUNCTION() 216 Handle<Object> result; in RUNTIME_FUNCTION() local 218 isolate, result, in RUNTIME_FUNCTION() 222 return *result; in RUNTIME_FUNCTION()
|
/third_party/python/Lib/test/ |
H A D | test_c_locale_coercion.py | 93 result, py_cmd = run_python_until_end("-c", cmd, PYTHONCOERCECLOCALE='') 94 return result.rc == 0 139 - stderr_lines: result of calling splitlines() on the stderr output 144 result, py_cmd = run_python_until_end( 148 if not result.rc == 0: 149 result.fail(py_cmd) 151 stdout_lines = result.out.decode("ascii").splitlines() 153 stderr_lines = result.err.decode("ascii").rstrip().splitlines() 218 expected_fs_encoding: expected sys.getfilesystemencoding() result 222 result [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/converged/ |
H A D | CompositorNativeWindow11.cpp | 203 INT32 result = -1; in IsSpriteVisual() local 204 hr = helper.WindowsCompareStringOrdinal(className, spriteClassName, &result); in IsSpriteVisual() 213 if (result == 0) in IsSpriteVisual() 306 auto result = RoInitialize(RO_INIT_MULTITHREADED); in RoHelper() 308 if (SUCCEEDED(result) || result == S_FALSE || result == RPC_E_CHANGED_MODE) in RoHelper() 412 HRESULT RoHelper::WindowsCompareStringOrdinal(HSTRING one, HSTRING two, int *result) in WindowsCompareStringOrdinal() argument 418 return mFpWindowsCompareStringOrdinal(one, two, result); in WindowsCompareStringOrdinal()
|
/third_party/vk-gl-cts/executor/tools/ |
H A D | xeExtractValues.cpp | 80 void add (const CaseValues& result) in add() argument 82 CaseValues* copy = new CaseValues(result); in add() 129 TagParser (BatchResultValues& result) in TagParser() argument 130 : m_result(result) in TagParser() 178 tagResult.statusDetails = "Test case result parsing failed"; in testCaseResultComplete() 241 const CaseValues& result = values[resultNdx]; in printTaggedValues() local 243 dst << result.casePath; in printTaggedValues() 245 dst << "," << xe::getTestStatusCodeName(result.statusCode); in printTaggedValues() 247 for (vector<Value>::const_iterator value = result.values.begin(); value != result in printTaggedValues() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | transformation_replace_params_with_struct.cpp | 82 // Check that |id| is a result id of one of the |function|'s parameters. in IsApplicable() 87 // Check that the parameter with result id |id| has supported type. in IsApplicable() 165 // +1 since the first in operand to OpFunctionCall is the result id of in Apply() 176 // +1 since the first in operand to OpFunctionCall is the result id of in Apply() 232 // +1 since the first in operand to OpTypeFunction is the result type id in Apply() 258 protobufs::Transformation result; in ToMessage() local 259 *result.mutable_replace_params_with_struct() = message_; in ToMessage() 260 return result; in ToMessage() 290 std::vector<uint32_t> result; in ComputeIndicesOfReplacedParameters() local 299 result in ComputeIndicesOfReplacedParameters() 307 std::unordered_set<uint32_t> result = {message_.fresh_function_type_id(), GetFreshIds() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | transformation_replace_params_with_struct.cpp | 82 // Check that |id| is a result id of one of the |function|'s parameters. in IsApplicable() 87 // Check that the parameter with result id |id| has supported type. in IsApplicable() 165 // +1 since the first in operand to OpFunctionCall is the result id of in Apply() 176 // +1 since the first in operand to OpFunctionCall is the result id of in Apply() 232 // +1 since the first in operand to OpTypeFunction is the result type id in Apply() 258 protobufs::Transformation result; in ToMessage() local 259 *result.mutable_replace_params_with_struct() = message_; in ToMessage() 260 return result; in ToMessage() 290 std::vector<uint32_t> result; in ComputeIndicesOfReplacedParameters() local 299 result in ComputeIndicesOfReplacedParameters() 307 std::unordered_set<uint32_t> result = {message_.fresh_function_type_id(), GetFreshIds() local [all...] |
/third_party/skia/src/pathops/ |
H A D | SkPathOpsTSect.h | 133 SkTSpan* result = oppT(t); in findOppT() local 134 SkOPASSERT(result); in findOppT() 135 return result; in findOppT() 283 SkTSpan* result = this->addOne(); in addSplitAt() local 284 SkDEBUGCODE(result->debugSetGlobalState(this->globalState())); in addSplitAt() 285 result->splitAt(span, t, &fHeap); in addSplitAt() 286 result->initBounds(fCurve); in addSplitAt() 288 return result; in addSplitAt() 313 SkTSpan* last, SkTSpan** result);
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | VulkanExtensions.cpp | 63 std::unordered_map<std::string, InstanceExt> result; 65 result[info.name] = info.index; 67 return result; 172 std::unordered_map<std::string, DeviceExt> result; 174 result[info.name] = info.index; 176 return result; 319 std::unordered_map<std::string, VulkanLayer> result; 321 result[info.name] = info.layer; 323 return result;
|
/third_party/optimized-routines/math/test/rtest/ |
H A D | main.c | 19 void vet_for_decline(Testable *fn, uint32 *args, uint32 *result, int got_errno_in); 148 * - "func=<function> op1=foo result=bar" will just output the line as-is in dofile() 199 uint32 ops[8], result[8]; in dofile() local 226 } else if (!strcmp(q, "result") || !strcmp(q, "resultr")) { in dofile() 227 get_operand(r, f, &result[0], &result[1]); in dofile() 230 get_operand(r, f, &result[4], &result[5]); in dofile() 233 get_operand(r, f, &result[2], &result[ in dofile() [all...] |
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | ftcalc.h | 119 FT_Int32 result; in FT_MulFix_i386() local 132 : "=a"(result), "=d"(b) in FT_MulFix_i386() 135 return result; in FT_MulFix_i386() 155 FT_Int32 result; in FT_MulFix_i386() local 170 mov result, eax in FT_MulFix_i386() local 172 return result; in FT_MulFix_i386() 216 long long result; in FT_MulFix_x86_64() 225 : "=&r"(result), "=&r"(wide_a) in FT_MulFix_x86_64() 229 return (FT_Int32)result; in FT_MulFix_x86_64() 271 * The result o [all...] |