/third_party/typescript/tests/baselines/reference/ |
H A D | exportDefault.js | 59 Object.defineProperty(o, "default", { enumerable: true, value: v });
96 Object.defineProperty(o, "default", { enumerable: true, value: v });
|
H A D | importCallExpressionES5UMD.js | 42 Object.defineProperty(exports, "__esModule", { value: true });
59 Object.defineProperty(exports, "__esModule", { value: true });
|
H A D | importCallExpressionReturnPromiseOfAny.js | 38 Object.defineProperty(exports, "__esModule", { value: true });
46 Object.defineProperty(exports, "__esModule", { value: true });
|
H A D | jsDeclarationsFunctionLikeClasses2.js | 81 Object.defineProperty(exports, "__esModule", { value: true });
151 Object.defineProperty(exports, "__esModule", { value: true });
|
H A D | letDeclarations-scopes.js | 141 set v(value) { 275 set v(value) {
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/ |
H A D | WireTest.h | 47 bool MatchAndExplain(Arg value, testing::MatchResultListener* listener) const override { 48 if (!mLambda(value)) {
|
/third_party/protobuf/js/ |
H A D | debug.js | 99 mapObject[entry.value[0]] = jspb.debug.dump_(entry.value[1]);
|
/third_party/python/Mac/Tools/ |
H A D | plistlib_generate_testdata.py | 20 def nsstr(value): 21 return NSString.alloc().initWithString_(value)
|
/third_party/python/PC/ |
H A D | winsound.c | 198 add_define(PyObject *dict, const char *key, long value) in add_define() argument 201 PyObject *v = PyLong_FromLong(value); in add_define()
|
/third_party/python/Objects/stringlib/ |
H A D | find_max_char.h | 29 size_t value = *(const size_t *) _p; in find_max_char() local 30 if (value & UCS1_ASCII_CHAR_MASK) in find_max_char()
|
/third_party/protobuf/objectivec/ |
H A D | GPBStruct.pbobjc.h | 43 * `NullValue` is a singleton enumeration to represent the null value for the 50 * Value used if any message's field encounters a value that is not defined in GPB_ENUM() 55 /** Null value. */ in GPB_ENUM() 62 * Checks to see if the given value is defined by the enum or was not known at 65 BOOL GPBNullValue_IsValidValue(int32_t value); 89 * `Struct` represents a structured data value, consisting of fields 129 * `Value` represents a dynamically typed value which can be either 130 * null, a number, a string, a boolean, a recursive struct value, or a 131 * list of values. A producer of value is expected to set one of that 134 * The JSON representation for `Value` is JSON value [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | ByteBufferWriter.java | 141 private static void setBuffer(byte[] value) { in setBuffer() argument 142 BUFFER.set(new SoftReference<byte[]>(value)); in setBuffer()
|
H A D | ProtobufArrayList.java | 134 E value = array[index]; in remove() 141 return value; in remove()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | any_lite.cc | 56 AnyMetadata::AnyMetadata(UrlType* type_url, ValueType* value) in AnyMetadata() argument 57 : type_url_(type_url), value_(value) {} in AnyMetadata()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | mutex.h | 159 static void Delete(void* value) { in Delete() argument 160 delete static_cast<T*>(value); in Delete()
|
/third_party/python/Lib/test/test_importlib/builtin/ |
H A D | test_loader.py | 22 for attr, value in self.verification.items(): 23 self.assertEqual(getattr(module, attr), value)
|
/third_party/rust/crates/minimal-lexical/etc/ |
H A D | bellerophon_table.py | 10 i.e., within 0.5 ULP of the true value. 39 is the absolute value of the max exponent (log distance from 1.) 46 '''Generate the next extended-floating point value.''' 52 '''Generate the previous extended-floating point value.''' 114 value = " {},".format(fp[index]) 116 print(value.ljust(30, " ") + exp)
|
/third_party/rust/crates/clap/clap_derive/src/utils/ |
H A D | doc_comments.rs | 21 value: in extract_doc_comment() 27 }) => Some(s.value()), in extract_doc_comment()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | pool_urbg.h | 36 static_assert(std::is_unsigned<result_type>::value, 50 // Returns a single value. 57 // Generate returns a single value. 82 static_assert(std::is_unsigned<result_type>::value,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | unordered_set_lookup_test.h | 57 decltype(*it)>::value, in TYPED_TEST_P() 60 decltype(it.operator->())>::value, in TYPED_TEST_P()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | time_zone_lookup.cc | 64 int __system_property_get(const char* name, char* value) { in __system_property_get() argument 66 return system_property_get ? system_property_get(name, value) : -1; in __system_property_get()
|
/third_party/skia/experimental/graphite/src/ |
H A D | EnumBitMask.h | 55 SK_ALWAYS_INLINE constexpr explicit Mask(int value) : fValue(value) {} in Mask() argument
|
/third_party/skia/include/core/ |
H A D | SkColorPriv.h | 17 byte into a scale value, so that we can say scale * value >> 8 instead of 18 alpha * value / 255. 29 /** Multiplify value by 0..256, and shift the result down 8 30 (i.e. return (value * alpha256) >> 8) 32 #define SkAlphaMul(value, alpha256) (((value) * (alpha256)) >> 8)
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGImage.cpp | 30 return !fHref.iri().isEmpty() && fWidth.value() > 0 && fHeight.value() > 0 && in onPrepareToRender()
|
/third_party/selinux/libselinux/utils/ |
H A D | matchpathcon.c | 106 options[SELABEL_OPT_PATH].value = optarg; in main() 122 options[SELABEL_OPT_SUBSET].value = optarg; in main()
|