Home
last modified time | relevance | path

Searched refs:result (Results 5651 - 5675 of 18070) sorted by relevance

1...<<221222223224225226227228229230>>...723

/third_party/node/deps/npm/node_modules/columnify/
H A Dindex.js81 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 Dindex.js22 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 Didnaconf.cpp156 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 Dhandles-inl.h153 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 Druntime-promise.cc159 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 Dtest_c_locale_coercion.py93 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 DCompositorNativeWindow11.cpp203 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 DxeExtractValues.cpp80 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 Dtransformation_replace_params_with_struct.cpp82 // 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 Dtransformation_replace_params_with_struct.cpp82 // 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 DSkPathOpsTSect.h133 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 DVulkanExtensions.cpp63 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 Dmain.c19 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 Dftcalc.h119 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...]
/third_party/skia/third_party/externals/piex/src/binary_parse/
H A Drange_checked_byte_ptr.cc145 std::string result; in substr() local
146 result.reserve(bytes.size()); in substr()
148 result.push_back(static_cast<char>(bytes[i])); in substr()
150 return result; in substr()
155 std::vector<unsigned char> result; in extractBytes() local
159 return result; in extractBytes()
161 result.reserve(length); in extractBytes()
163 result.push_back((*this)[pos + i]); in extractBytes()
165 return result; in extractBytes()
346 // For all practical purposes, the same result coul in Get32s()
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dbytestrie.cpp103 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 Dservls.cpp65 UObject* result = NULL; 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 != NULL) { in get()
90 return result; in get()
194 ServiceEnumeration* result = new ServiceEnumeration(service, status); in create() local
196 return result; in create()
198 delete result; in create()
H A Ducharstrie.cpp84 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()
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dlocid.h418 * requirement will be silently omitted from the result.
433 * requirement will be silently omitted from the result.
725 * NULL, will result in the keyword being removed. No error is given if
746 * NULL, will result in the keyword being removed. No error is given if
766 * NULL, 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
1175 StringClass result; toLanguageTag() local
1248 StringClass result; getKeywordValue() local
1257 StringClass result; getUnicodeKeywordValue() local
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringpiece.cc109 const char *result = std::search(ptr_ + pos, ptr_ + length_, in find() local
111 return result == ptr_ + length_ ? npos : result - ptr_; in find()
118 const char* result = static_cast<const char*>( in find() local
120 return result != nullptr ? result - ptr_ : npos; in find()
129 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_); in rfind() local
130 return result != last ? result - ptr_ : npos; in rfind()
/third_party/python/Lib/
H A Dtypes.py195 result = type(self)(fget, self.fset, self.fdel, fdoc or self.__doc__)
196 result.overwrite_doc = self.overwrite_doc
197 return result
200 result = type(self)(self.fget, fset, self.fdel, self.__doc__)
201 result.overwrite_doc = self.overwrite_doc
202 return result
205 result = type(self)(self.fget, self.fset, fdel, self.__doc__)
206 result.overwrite_doc = self.overwrite_doc
207 return result
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_replace_params_with_struct.cpp82 // 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...]
/foundation/ability/ability_runtime/frameworks/native/ability/native/ability_runtime/
H A Djs_ability_context.cpp495 napi_value result = nullptr; in OnStartAbility() local
497 AddFreeInstallObserver(env, want, lastParam, &result); in OnStartAbility()
502 CreateAsyncTaskWithLastParam(env, lastParam, std::move(execute), std::move(complete), &result)); in OnStartAbility()
504 return result; in OnStartAbility()
544 napi_value result = nullptr; in OnStartUIServiceExtension() local
546 env, CreateAsyncTaskWithLastParam(env, lastParam, std::move(execute), std::move(complete), &result)); in OnStartUIServiceExtension()
547 return result; in OnStartUIServiceExtension()
574 AAFwk::Want& want, napi_value callback, napi_value& result) in CheckConnectAlreadyExist()
584 std::unique_ptr<NapiAsyncTask> uasyncTask = CreateAsyncTaskWithLastParam(env, nullptr, nullptr, nullptr, &result); in CheckConnectAlreadyExist()
609 napi_value result in OnConnectUIServiceExtension() local
573 CheckConnectAlreadyExist(napi_env env, AAFwk::Want& want, napi_value callback, napi_value& result) CheckConnectAlreadyExist() argument
716 napi_value result = nullptr; OnDisconnectUIServiceExtension() local
739 napi_value result = nullptr; CreateOpenLinkTask() local
868 napi_value result = nullptr; OnOpenLinkInner() local
925 napi_value result = nullptr; OnStartAbilityAsCaller() local
1000 napi_value result = nullptr; OnStartAbilityWithAccount() local
1130 napi_value result = nullptr; OnStartAbilityForResult() local
1215 napi_value result = nullptr; OnStartAbilityForResultWithAccount() local
1303 napi_value result = nullptr; OnStartExtensionAbility() local
1348 napi_value result = nullptr; OnStartExtensionAbilityWithAccount() local
1391 napi_value result = nullptr; OnStopExtensionAbility() local
1437 napi_value result = nullptr; OnStopExtensionAbilityWithAccount() local
1489 napi_value result = nullptr; OnTerminateSelfWithResult() local
1541 napi_value result = nullptr; OnBackToCallerAbilityWithResult() local
1594 napi_value result = nullptr; OnConnectAbility() local
1659 napi_value result = nullptr; OnConnectAbilityWithAccount() local
1725 napi_value result = nullptr; OnDisconnectAbility() local
1763 napi_value result = nullptr; OnTerminateSelf() local
1805 napi_value result = nullptr; OnRequestDialogService() local
1867 napi_value result = nullptr; OnReportDrawnCompleted() local
1934 AddFreeInstallObserver(napi_env env, const AAFwk::Want &want, napi_value callback, napi_value *result, bool isAbilityResult, bool isOpenLink) AddFreeInstallObserver() argument
2325 napi_value result = nullptr; CallObjectMethod() local
2398 napi_value result = nullptr; OnSetMissionContinueState() local
2429 napi_value result = nullptr; SyncSetMissionContinueState() local
2478 napi_value result = nullptr; OnSetMissionLabel() local
2522 napi_value result = nullptr; OnSetMissionIcon() local
2578 napi_value result = nullptr; OnStartAbilityByType() local
2616 napi_value result = nullptr; OnRequestModalUIExtension() local
2657 napi_value result = nullptr; ChangeAbilityVisibility() local
2687 napi_value result = nullptr; OnMoveAbilityToBackground() local
2732 napi_value result = nullptr; OpenAtomicServiceInner() local
[all...]
/drivers/hdf_core/framework/support/posix/test/unittest/common/
H A Dhdf_osal_test_posix.cpp36 int32_t result = 0; in HdfOsalUserEntry() local
39 result = OsaTestBegin(0); in HdfOsalUserEntry()
41 result = OsaTestEnd(); in HdfOsalUserEntry()
43 result = OsaTestALLResult(); in HdfOsalUserEntry()
45 result = OsalGetTestResult(cmd); in HdfOsalUserEntry()
51 printf("HdfTestUser:osal test result[%d-%d]", result, cmd); in HdfOsalUserEntry()
53 return result; in HdfOsalUserEntry()
/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dhdi_wpa_common.c35 int result = 0; in Hex2Dec() local
38 result <<= HEX_TO_DEC_MOVING; in Hex2Dec()
40 result += *tmp - '0'; in Hex2Dec()
42 result += *tmp - 'A' + DEC_MAX_SCOPE; in Hex2Dec()
44 result += *tmp - 'a' + DEC_MAX_SCOPE; in Hex2Dec()
46 result = 0; in Hex2Dec()
51 return result; in Hex2Dec()

Completed in 28 milliseconds

1...<<221222223224225226227228229230>>...723