/third_party/node/test/parallel/ |
H A D | test-vm-run-in-new-context.js | 33 const result = vm.runInNewContext('\'passed\';'); 34 assert.strictEqual(result, 'passed');
|
/third_party/node/test/addons/request-interrupt/ |
H A D | binding.cc | 54 Maybe<bool> result = ctx->Global()->Set(ctx, str, str); in ScheduleInterruptWithJS() 56 if (!result.IsNothing()) { in ScheduleInterruptWithJS()
|
/third_party/node/test/addons/zlib-binding/ |
H A D | binding.cc | 35 auto result = node::Buffer::Copy(info.GetIsolate(), in CompressBytes() local 41 info.GetReturnValue().Set(result.ToLocalChecked()); in CompressBytes()
|
/third_party/musl/src/thread/powerpc/ |
H A D | clone.s | 46 neg 3, 3 #negate the result (errno) 48 # compare sc result with 0
|
/third_party/musl/src/thread/ |
H A D | pthread_join.c | 45 if (res) *res = t->result; in __pthread_timedjoin_np() 57 if (res) *res = t->result; in __pthread_timedjoin_np()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uniquecharstr.h | 45 CharString *result = strings; in orphanCharStrings() local 47 return result; in orphanCharStrings()
|
H A D | schriter.cpp | 116 StringCharacterIterator::getText(UnicodeString& result) { in getText() argument 117 result = text; in getText()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | strmatch.h | 126 * @param result Output param to receive the pattern. 128 * @return A reference to 'result'. 130 virtual UnicodeString& toPattern(UnicodeString& result, 179 * result of calling this function is passed to the appropriate 182 * @param result the string to receive the pattern. Previous 188 * @return a reference to 'result'. 190 virtual UnicodeString& toReplacerPattern(UnicodeString& result,
|
H A D | nfsubs.h | 97 * Replaces result with the string describing the substitution. 98 * @param result Output param which will receive the string. 100 virtual void toString(UnicodeString& result) const; 110 * either ruleSet or decimalFormat, and inserts the result into 113 * @param toInsertInto The string we insert the result into 122 * either ruleSet or decimalFormat, and inserts the result into 125 * @param toInsertInto The string we insert the result into 135 * mathematical operation on the number. The result of this operation 137 * substitution refers to, and the result is inserted into the result [all...] |
H A D | number_grouping.cpp | 23 const char16_t* result = ures_getStringByKeyWithFallback( in getMinGroupingForLocale() local 32 return result[0] - u'0'; in getMinGroupingForLocale()
|
H A D | zonemeta.h | 74 * @return A reference to the result country 81 static UnicodeString& U_EXPORT2 getMetazoneID(const UnicodeString &tzid, UDate date, UnicodeString &result); 85 static UnicodeString& U_EXPORT2 getZoneIdByMetazone(const UnicodeString &mzid, const UnicodeString ®ion, UnicodeString &result);
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | basictz.h | 48 * The caller owns the result and should delete it when done. 58 * @param result Receives the first transition after the base time. 62 virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0; 68 * @param result Receives the most recent transition before the base time. 72 virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const = 0;
|
/third_party/icu/icu4c/source/i18n/ |
H A D | zonemeta.h | 63 * @return A reference to the result country 70 static UnicodeString& U_EXPORT2 getMetazoneID(const UnicodeString &tzid, UDate date, UnicodeString &result); 74 static UnicodeString& U_EXPORT2 getZoneIdByMetazone(const UnicodeString &mzid, const UnicodeString ®ion, UnicodeString &result);
|
/third_party/icu/icu4c/source/samples/layout/ |
H A D | ScriptCompositeFontInstance.cpp | 80 const LEFontInstance *result = fFontMap->getScriptFont(script, success); in getSubFont() local 87 return result; in getSubFont()
|
/third_party/ltp/testcases/kernel/kvm/ |
H A D | kvm_svm03.c | 32 int ret, *result = (int *)KVM_RESULT_BASEADDR; in guest_clgi() local 35 * Make sure that result page is present in memory. CLGI may disable in guest_clgi() 39 ret = *result; in guest_clgi()
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | asyoutypeformatter.h | 69 const string& InputDigit(char32 next_char, string* result); 77 const string& InputDigitAndRememberPosition(char32 next_char, string* result); 125 // shorter NDD doesn't result in a number we can format, we try to see if we 137 // The result will be stored in phone_number.
|
/third_party/node/deps/v8/src/heap/ |
H A D | local-heap-inl.h | 74 AllocationResult result = AllocateRaw(object_size, type, origin, alignment); in AllocateRawOrFail() local 76 if (result.To(&object)) return object.address(); in AllocateRawOrFail()
|
H A D | remembered-set-inl.h | 43 SlotCallbackResult result = callback(FullMaybeObjectSlot(&new_target)); in UpdateTypedSlot() local 48 return result; in UpdateTypedSlot()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_query_sw.c | 77 bool wait, union pipe_query_result *result) in etna_sw_get_query_result() 81 result->u64 = sq->end_value - sq->begin_value; in etna_sw_get_query_result() 76 etna_sw_get_query_result(struct etna_context *ctx, struct etna_query *q, bool wait, union pipe_query_result *result) etna_sw_get_query_result() argument
|
/third_party/mesa3d/src/util/ |
H A D | mesa-sha1.c | 32 _mesa_sha1_compute(const void *data, size_t size, unsigned char result[20]) in _mesa_sha1_compute() argument 38 _mesa_sha1_final(&ctx, result); in _mesa_sha1_compute()
|
/third_party/musl/libc-test/src/functionalext/sigchain/ |
H A D | sigchain_intercept_pthread_sigmask.c | 167 int result = pthread_sigmask(SIG_BLOCK, NULL, NULL); in sigchain_intercept_pthread_sigmask_004() local 168 if (result != 0) { in sigchain_intercept_pthread_sigmask_004()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | rename.c | 80 int result = rename(oldname, newname); in rename_0300() local 81 EXPECT_EQ("rename_0300", result, 0); in rename_0300()
|
H A D | vfwscanf.c | 38 int result = vfwscanf(fp, format, args); in read_from_file() local 40 return result; in read_from_file() 64 t_error("%s vfwscanf in %d get result is %ls are not want %ls\n", __func__, i, str, names[i]); in vfwscanf_0100() 74 * @tc.desc : Test the result of the vfwscanf function when the incoming file is empty
|
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | atoll.c | 20 long long int result = 123456789012345; variable 38 EXPECT_EQ("atoll_0100", num, result); in atoll_0100()
|
/third_party/musl/libc-test/src/functionalext/time/ |
H A D | localtime.c | 52 EXPECT_STREQ("localtime_0100", test_localtime_data[i].result, buff); in localtime_0100() 81 EXPECT_STREQ("localtime64_0100", test_localtime_data[i].result, buff); in localtime64_0100()
|