/third_party/node/deps/v8/tools/ |
H A D | stats-viewer.py | 153 value = counter.Value() 155 counter_changed = ui_counter.Set(value) 244 value = Tkinter.Label(self.root, width=15, anchor=Tkinter.W, 246 value.grid(row=index, column=(1 + i), padx=1, pady=1) 285 def Set(self, value): 289 value: The value to display 292 True if the value had changed, otherwise False. The first call 295 if value == self.last_value: 298 self.last_value = value [all...] |
/third_party/node/src/ |
H A D | node_file-inl.h | 224 v8::Local<v8::Value> value = in Reject() local 227 v8::Local<v8::Promise::Resolver> resolver = value.As<v8::Promise::Resolver>(); in Reject() 232 void FSReqPromise<AliasedBufferT>::Resolve(v8::Local<v8::Value> value) { in Resolve() argument 240 USE(resolver->Resolve(env()->context(), value).FromJust()); in Resolve() 275 v8::Local<v8::Value> value = args[index]; in GetReqWrap() local 276 if (value->IsObject()) { in GetReqWrap() 277 return Unwrap<FSReqBase>(value.As<v8::Object>()); in GetReqWrap() 282 if (value->StrictEquals(env->fs_use_promises_symbol())) { in GetReqWrap() 330 // ctx must be checked using value->IsObject() before being passed.
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | calendar.h | 394 * plus input keyword and that value has different behavior than creation with the 424 * @param status Output param set to success/failure code on exit. If any value 438 * @param status Output param set to success/failure code on exit. If any value 487 * @param status Output param set to success/failure code on exit. If any value 502 * @param status Output param set to success/failure code on exit. If any value 517 * @param status Output param set to success/failure code on exit. If any value 534 * Adding a positive value always means moving forward in time, so for the Gregorian calendar, 536 * the numeric value of the field itself). 542 * @param status Output param set to success/failure code on exit. If any value 557 * Adding a positive value alway 2547 internalSet(UCalendarDateFields field, int32_t value) internalSet() argument [all...] |
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | ppucd.cpp | 104 "value", 362 // No binary value for a binary property. in parseProperty() 370 // Binary value for a non-binary property. in parseProperty() 378 "error in preparsed UCD: prop value is invalid: '%d' for line %ld\n", in parseProperty() 382 int32_t value=pnames->getPropertyValueEnum(prop, v); in parseProperty() local 383 if(value==UCHAR_INVALID_CODE && prop==UCHAR_CANONICAL_COMBINING_CLASS) { in parseProperty() 388 value=(int32_t)ccc; in parseProperty() 391 if(value==UCHAR_INVALID_CODE) { in parseProperty() 393 "error in preparsed UCD: '%s' is not a valid value on line %ld\n", in parseProperty() 397 props.intProps[prop-UCHAR_INT_START]=value; in parseProperty() 536 uint32_t value=(uint32_t)uprv_strtoul(s, &end, 16); parseCodePoint() local [all...] |
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | ppucd.cpp | 104 "value", 362 // No binary value for a binary property. in parseProperty() 370 // Binary value for a non-binary property. in parseProperty() 378 "error in preparsed UCD: prop value is invalid: '%d' for line %ld\n", in parseProperty() 382 int32_t value=pnames->getPropertyValueEnum(prop, v); in parseProperty() local 383 if(value==UCHAR_INVALID_CODE && prop==UCHAR_CANONICAL_COMBINING_CLASS) { in parseProperty() 388 value=(int32_t)ccc; in parseProperty() 391 if(value==UCHAR_INVALID_CODE) { in parseProperty() 393 "error in preparsed UCD: '%s' is not a valid value on line %ld\n", in parseProperty() 397 props.intProps[prop-UCHAR_INT_START]=value; in parseProperty() 536 uint32_t value=(uint32_t)uprv_strtoul(s, &end, 16); parseCodePoint() local [all...] |
/third_party/icu/icu4c/source/tools/gendict/ |
H A D | gendict.cpp | 182 fprintf(stderr, "Syntax for offset value in --transform offset-%s invalid!\n", t + 7); in setTransform() 195 void addWord(const UnicodeString &word, int32_t value, UErrorCode &status) { in addWord() argument 199 bt->add(buf.toStringPiece(), value, status); in addWord() 201 if (ut) { ut->add(word, value, status); } in addWord() 276 u_setDataDirectory(options[ARG_ICUDATADIR].value); in main() 329 dict.setTransform(options[ARG_TRANSFORM].value); in main() 345 // Parse word [spaces value]. in main() 361 fprintf(stderr, "Error: value too long on line %i!\n", lineCount); in main() 368 unsigned long value = uprv_strtoul(s, &end, 0); in main() 369 if (end == s || *end != 0 || (int32_t)uprv_strlen(s) != valueLength || value > in main() [all...] |
/third_party/node/deps/v8/src/d8/ |
H A D | async-hooks-wrapper.cc | 89 void AsyncHooksWrap::set_init_function(v8::Local<v8::Function> value) { in set_init_function() argument 90 init_function_.Reset(isolate_, value); in set_init_function() 95 void AsyncHooksWrap::set_before_function(v8::Local<v8::Function> value) { in set_before_function() argument 96 before_function_.Reset(isolate_, value); in set_before_function() 101 void AsyncHooksWrap::set_after_function(v8::Local<v8::Function> value) { in set_after_function() argument 102 after_function_.Reset(isolate_, value); in set_after_function() 108 v8::Local<v8::Function> value) { in set_promiseResolve_function() 109 promiseResolve_function_.Reset(isolate_, value); in set_promiseResolve_function() 107 set_promiseResolve_function( v8::Local<v8::Function> value) set_promiseResolve_function() argument
|
/third_party/node/deps/v8/include/cppgc/ |
H A D | cross-thread-persistent.h | 19 // using ASAN. This is needed as the GC of the heap that owns the value 49 void SetNodeSafe(PersistentNode* value) const { in SetNodeSafe() 57 __atomic_store(&node_, &value, __ATOMIC_RELEASE); in SetNodeSafe() 62 value, std::memory_order_release); in SetNodeSafe() 151 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 170 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 196 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 233 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 340 U, WeaknessPolicy>::IsStrongPersistent::value>::type> 363 // the value t in AssignUnsafe() [all...] |
/third_party/node/deps/v8/include/v8-include/cppgc/ |
H A D | cross-thread-persistent.h | 19 // using ASAN. This is needed as the GC of the heap that owns the value 49 void SetNodeSafe(PersistentNode* value) const { in SetNodeSafe() 57 __atomic_store(&node_, &value, __ATOMIC_RELEASE); in SetNodeSafe() 62 value, std::memory_order_release); in SetNodeSafe() 152 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 171 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 197 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 235 typename = std::enable_if_t<std::is_base_of<T, U>::value>> 342 U, WeaknessPolicy>::IsStrongPersistent::value>::type> 364 // the value t in AssignUnsafe() [all...] |
/third_party/musl/ldso/linux/ |
H A D | cfi.c | 25 * calculate the __cfi_check() of the target dso, and call it. So use CFI shadow and shadow value to store the 27 * values. Shadow value is used to store the relationship. A shadow value can map 1 LIBRARY_ALIGNMENT memory range. So 30 * There are 3 types for shadow value: 34 * The valid shadow value records the distance from the end of a LIBRARY_ALIGNMENT memory range to the __cfi_check addr 36 * The valid shadow value is calculated as below: 40 * + 2 : to avoid conflict with invalid and uncheck shadow value. 63 * - First align up the target addr with LIBRARY_ALIGNMENT to locate the corresponding shadow value. 98 /* Shadow value */ 99 /* The related shadow value( 176 get_cfi_check_addr(uint16_t value, void* func_ptr) get_cfi_check_addr() argument 195 uint16_t value = sv_invalid; cfi_slowpath_common() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_pmeth.c | 393 const char *type, const char *value) in pkey_ec_ctrl_str() 397 nid = EC_curve_nist2nid(value); in pkey_ec_ctrl_str() 399 nid = OBJ_sn2nid(value); in pkey_ec_ctrl_str() 401 nid = OBJ_ln2nid(value); in pkey_ec_ctrl_str() 409 if (strcmp(value, "explicit") == 0) in pkey_ec_ctrl_str() 411 else if (strcmp(value, "named_curve") == 0) in pkey_ec_ctrl_str() 418 if ((md = EVP_get_digestbyname(value)) == NULL) { in pkey_ec_ctrl_str() 425 co_mode = atoi(value); in pkey_ec_ctrl_str() 392 pkey_ec_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) pkey_ec_ctrl_str() argument
|
/third_party/node/deps/openssl/openssl/crypto/ocsp/ |
H A D | ocsp_ext.c | 62 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, in OCSP_REQUEST_add1_ext_i2d() argument 65 return X509V3_add1_i2d(&x->tbsRequest.requestExtensions, nid, value, in OCSP_REQUEST_add1_ext_i2d() 114 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit, in OCSP_ONEREQ_add1_ext_i2d() argument 117 return X509V3_add1_i2d(&x->singleRequestExtensions, nid, value, crit, in OCSP_ONEREQ_add1_ext_i2d() 170 int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value, in OCSP_BASICRESP_add1_ext_i2d() argument 174 value, crit, flags); in OCSP_BASICRESP_add1_ext_i2d() 223 int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value, in OCSP_SINGLERESP_add1_ext_i2d() argument 226 return X509V3_add1_i2d(&x->singleExtensions, nid, value, crit, flags); in OCSP_SINGLERESP_add1_ext_i2d() 297 * Return value reflects result: 313 * the nonce and comparing its value ther in OCSP_check_nonce() [all...] |
/third_party/node/deps/openssl/openssl/crypto/dh/ |
H A D | dh_pmeth.c | 225 const char *type, const char *value) in pkey_dh_ctrl_str() 229 len = atoi(value); in pkey_dh_ctrl_str() 236 id = atoi(value); in pkey_dh_ctrl_str() 244 int nid = OBJ_sn2nid(value); in pkey_dh_ctrl_str() 255 len = atoi(value); in pkey_dh_ctrl_str() 260 len = atoi(value); in pkey_dh_ctrl_str() 265 typ = atoi(value); in pkey_dh_ctrl_str() 270 pad = atoi(value); in pkey_dh_ctrl_str() 224 pkey_dh_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) pkey_dh_ctrl_str() argument
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | value_enum.rs | 217 #[value(rename_all = "screaming_snake")] in variant_with_defined_casing() 239 #[value(rename_all = "screaming_snake")] in casing_is_propagated_from_parent() 262 #[value(rename_all = "screaming_snake")] in casing_propagation_is_overridden() 264 #[value(rename_all = "camel")] in casing_propagation_is_overridden() 337 #[value(alias = "TOTP")] in alias() 365 #[value(alias = "TOTP", alias = "t")] in multiple_alias() 402 #[value(skip)] in skip_variant() 433 #[value(skip)] in skip_non_unit_variant()
|
/third_party/python/Lib/ |
H A D | gettext.py | 91 value = mo.group(kind) 93 raise ValueError('invalid token in plural form: %s' % value) 94 yield value 98 def _error(value): 99 if value: 100 return ValueError('unexpected token in plural form: %s' % value) 133 value = int(nexttok, 10) 136 result = '%s%d' % (result, value) 171 raise TypeError('Plural value must be an integer, got %s' % 174 warnings.warn('Plural value mus [all...] |
/third_party/openssl/crypto/dh/ |
H A D | dh_pmeth.c | 225 const char *type, const char *value) in pkey_dh_ctrl_str() 229 len = atoi(value); in pkey_dh_ctrl_str() 236 id = atoi(value); in pkey_dh_ctrl_str() 244 int nid = OBJ_sn2nid(value); in pkey_dh_ctrl_str() 255 len = atoi(value); in pkey_dh_ctrl_str() 260 len = atoi(value); in pkey_dh_ctrl_str() 265 typ = atoi(value); in pkey_dh_ctrl_str() 270 pad = atoi(value); in pkey_dh_ctrl_str() 224 pkey_dh_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) pkey_dh_ctrl_str() argument
|
/third_party/openssl/crypto/ocsp/ |
H A D | ocsp_ext.c | 62 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, in OCSP_REQUEST_add1_ext_i2d() argument 65 return X509V3_add1_i2d(&x->tbsRequest.requestExtensions, nid, value, in OCSP_REQUEST_add1_ext_i2d() 114 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit, in OCSP_ONEREQ_add1_ext_i2d() argument 117 return X509V3_add1_i2d(&x->singleRequestExtensions, nid, value, crit, in OCSP_ONEREQ_add1_ext_i2d() 170 int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value, in OCSP_BASICRESP_add1_ext_i2d() argument 174 value, crit, flags); in OCSP_BASICRESP_add1_ext_i2d() 223 int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value, in OCSP_SINGLERESP_add1_ext_i2d() argument 226 return X509V3_add1_i2d(&x->singleExtensions, nid, value, crit, flags); in OCSP_SINGLERESP_add1_ext_i2d() 297 * Return value reflects result: 313 * the nonce and comparing its value ther in OCSP_check_nonce() [all...] |
/third_party/openssl/crypto/ec/ |
H A D | ec_pmeth.c | 393 const char *type, const char *value) in pkey_ec_ctrl_str() 397 nid = EC_curve_nist2nid(value); in pkey_ec_ctrl_str() 399 nid = OBJ_sn2nid(value); in pkey_ec_ctrl_str() 401 nid = OBJ_ln2nid(value); in pkey_ec_ctrl_str() 409 if (strcmp(value, "explicit") == 0) in pkey_ec_ctrl_str() 411 else if (strcmp(value, "named_curve") == 0) in pkey_ec_ctrl_str() 418 if ((md = EVP_get_digestbyname(value)) == NULL) { in pkey_ec_ctrl_str() 425 co_mode = atoi(value); in pkey_ec_ctrl_str() 392 pkey_ec_ctrl_str(EVP_PKEY_CTX *ctx, const char *type, const char *value) pkey_ec_ctrl_str() argument
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/ |
H A D | FunctionsEGL.cpp | 351 EGLBoolean FunctionsEGL::getConfigAttrib(EGLConfig config, EGLint attribute, EGLint *value) const in getConfigAttrib() 353 return mFnPtrs->getConfigAttribPtr(mEGLDisplay, config, attribute, value); in getConfigAttrib() 400 EGLBoolean FunctionsEGL::querySurface(EGLSurface surface, EGLint attribute, EGLint *value) const in querySurface() 402 return mFnPtrs->querySurfacePtr(mEGLDisplay, surface, attribute, value); in querySurface() 420 EGLBoolean FunctionsEGL::surfaceAttrib(EGLSurface surface, EGLint attribute, EGLint value) const in surfaceAttrib() 422 return mFnPtrs->surfaceAttribPtr(mEGLDisplay, surface, attribute, value); in surfaceAttrib() 463 EGLBoolean FunctionsEGL::getSyncAttribKHR(EGLSyncKHR sync, EGLint attribute, EGLint *value) const in getSyncAttribKHR() 465 return mFnPtrs->getSyncAttribKHRPtr(mEGLDisplay, sync, attribute, value); in getSyncAttribKHR()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | FastVector_unittest.cpp | 217 for (int value : vec) in TEST() 219 EXPECT_EQ(vistedCount, value); in TEST() 271 bool value = false; in TEST() local 272 EXPECT_TRUE(testMap.get(5, &value)); in TEST() 273 EXPECT_TRUE(value); in TEST() 274 EXPECT_FALSE(testMap.get(6, &value)); in TEST() 292 EXPECT_TRUE(testMap.get(i, &value)); in TEST() 293 EXPECT_FALSE(value); in TEST()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | BuildSPIRV.h | 383 spirv::IdRef getBoolConstant(bool value); 384 spirv::IdRef getUintConstant(uint32_t value); 385 spirv::IdRef getIntConstant(int32_t value); 386 spirv::IdRef getFloatConstant(float value); 387 spirv::IdRef getUvecConstant(uint32_t value, int size); 388 spirv::IdRef getIvecConstant(int32_t value, int size); 389 spirv::IdRef getVecConstant(float value, int size); 447 spirv::IdRef getBasicConstantHelper(uint32_t value,
|
/third_party/openssl/crypto/x509/ |
H A D | v3_crld.c | 74 fnm = gnames_from_sectname(ctx, cnf->value); in set_dist_point_name() 84 dnsect = X509V3_get_section(ctx, cnf->value); in set_dist_point_name() 145 static int set_reasons(ASN1_BIT_STRING **preas, char *value) in set_reasons() argument 151 rsk = X509V3_parse_list(value); in set_reasons() 220 if (!set_reasons(&point->reasons, cnf->value)) in crldp_from_section() 223 point->CRLissuer = gnames_from_sectname(ctx, cnf->value); in crldp_from_section() 253 if (cnf->value == NULL) { in v2i_crld() 372 val = cnf->value; in v2i_idp()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | wrbmp.c | 222 #define PUT_2B(array, offset, value) \ in write_bmp_header() 223 (array[offset] = (char)((value) & 0xFF), \ in write_bmp_header() 224 array[offset + 1] = (char)(((value) >> 8) & 0xFF)) in write_bmp_header() 225 #define PUT_4B(array, offset, value) \ in write_bmp_header() 226 (array[offset] = (char)((value) & 0xFF), \ in write_bmp_header() 227 array[offset + 1] = (char)(((value) >> 8) & 0xFF), \ in write_bmp_header() 228 array[offset + 2] = (char)(((value) >> 16) & 0xFF), \ in write_bmp_header() 229 array[offset + 3] = (char)(((value) >> 24) & 0xFF)) in write_bmp_header()
|
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/ |
H A D | request_types.py | 33 for key, value in list(kwargs.items()): 35 if isinstance(value, list): 36 value = copy.copy(value) 37 elif isinstance(value, dict): 38 value = copy.deepcopy(value) 39 setattr(self, key, value)
|
/third_party/skia/third_party/externals/icu/source/tools/gendict/ |
H A D | gendict.cpp | 182 fprintf(stderr, "Syntax for offset value in --transform offset-%s invalid!\n", t + 7); in setTransform() 195 void addWord(const UnicodeString &word, int32_t value, UErrorCode &status) { in addWord() argument 199 bt->add(buf.toStringPiece(), value, status); in addWord() 201 if (ut) { ut->add(word, value, status); } in addWord() 276 u_setDataDirectory(options[ARG_ICUDATADIR].value); in main() 329 dict.setTransform(options[ARG_TRANSFORM].value); in main() 345 // Parse word [spaces value]. in main() 361 fprintf(stderr, "Error: value too long on line %i!\n", lineCount); in main() 368 unsigned long value = uprv_strtoul(s, &end, 0); in main() 369 if (end == s || *end != 0 || (int32_t)uprv_strlen(s) != valueLength || value > in main() [all...] |