| /third_party/skia/third_party/externals/angle2/third_party/r8/ |
| D | backported_methods.txt | 109 java/util/List#of(Ljava/lang/Object;)Ljava/util/List; 110 java/util/List#of(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List; 111 java/util/List#of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List; 112 java/util/List#of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/ut… 113 java/util/List#of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lan… 114 …ava/util/List#of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lan… 115 …List#of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;… 116 …java/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lan… 117 …/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;… 118 …Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;L… [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | commaOperatorWithSecondOperandObjectType.types | 14 var OBJECT: Object; 15 >OBJECT : Object 24 //The second operand type is Object 25 ANY, OBJECT; 26 >ANY, OBJECT : Object 28 >OBJECT : Object 30 BOOLEAN, OBJECT; 31 >BOOLEAN, OBJECT : Object 33 >OBJECT : Object 35 NUMBER, OBJECT; [all …]
|
| D | objectCreate2.types | 8 var n = Object.create(null); // any 10 >Object.create(null) : any 11 >Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>)… 12 >Object : ObjectConstructor 13 >create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; } 16 var t = Object.create({ a: 1, b: "" }); // {a: number, b: string } 18 >Object.create({ a: 1, b: "" }) : any 19 >Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>)… 20 >Object : ObjectConstructor 21 >create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; } [all …]
|
| D | library_ObjectPrototypeProperties.types | 2 // Properties of the Object Prototype Object as per ES5 spec 4 Object.prototype.constructor; 5 >Object.prototype.constructor : Function 6 >Object.prototype : Object 7 >Object : ObjectConstructor 8 >prototype : Object 11 Object.prototype.toString(); 12 >Object.prototype.toString() : string 13 >Object.prototype.toString : () => string 14 >Object.prototype : Object [all …]
|
| D | objectCreate.types | 8 var n = Object.create(null); // object 10 >Object.create(null) : any 11 >Object.create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & … 12 >Object : ObjectConstructor 13 >create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & ThisTyp… 16 var t = Object.create({ a: 1, b: "" }); // {a: number, b: string } 18 >Object.create({ a: 1, b: "" }) : any 19 >Object.create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & … 20 >Object : ObjectConstructor 21 >create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & ThisTyp… [all …]
|
| D | strictFunctionTypesErrors.types | 5 declare let f1: (x: Object) => Object; 6 >f1 : (x: Object) => Object 7 >x : Object 9 declare let f2: (x: Object) => string; 10 >f2 : (x: Object) => string 11 >x : Object 13 declare let f3: (x: string) => Object; 14 >f3 : (x: string) => Object 22 >f1 = f2 : (x: Object) => string 23 >f1 : (x: Object) => Object [all …]
|
| D | objectCreate-errors.types | 2 var e1 = Object.create(1); // Error 4 >Object.create(1) : any 5 >Object.create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & … 6 >Object : ObjectConstructor 7 >create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & ThisTyp… 10 var e2 = Object.create("string"); // Error 12 >Object.create("string") : any 13 >Object.create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & … 14 >Object : ObjectConstructor 15 >create : { (o: object | null): any; (o: object | null, properties: PropertyDescriptorMap & ThisTyp… [all …]
|
| D | strictFunctionTypesErrors.errors.txt | 1 …rs.ts(10,1): error TS2322: Type '(x: string) => Object' is not assignable to type '(x: Object) => … 3 Type 'Object' is not assignable to type 'string'. 4 …1,1): error TS2322: Type '(x: string) => string' is not assignable to type '(x: Object) => Object'. 6 Type 'Object' is not assignable to type 'string'. 7 …onTypesErrors.ts(13,1): error TS2322: Type '(x: Object) => Object' is not assignable to type '(x: … 8 Type 'Object' is not assignable to type 'string'. 9 …esErrors.ts(14,1): error TS2322: Type '(x: string) => Object' is not assignable to type '(x: Objec… 11 Type 'Object' is not assignable to type 'string'. 12 …5,1): error TS2322: Type '(x: string) => string' is not assignable to type '(x: Object) => string'. 14 Type 'Object' is not assignable to type 'string'. [all …]
|
| D | nonPrimitiveStrictNull.types | 2 var a: object 3 >a : object 5 declare var b: object | null 6 >b : object | null 9 declare var c: object | undefined 10 >c : object | undefined 12 declare var d: object | null | undefined 13 >d : object | null | undefined 16 var e: object | null 17 >e : object | null [all …]
|
| D | commaOperatorsMultipleOperators.types | 14 var OBJECT: Object; 15 >OBJECT : Object 32 NUMBER, STRING, OBJECT; 33 >NUMBER, STRING, OBJECT : Object 37 >OBJECT : Object 39 STRING, OBJECT, ANY; 40 >STRING, OBJECT, ANY : any 41 >STRING, OBJECT : Object 43 >OBJECT : Object 46 OBJECT, ANY, BOOLEAN; [all …]
|
| D | useObjectValuesAndEntries1.symbols | 7 for (var x of Object.values(o)) { 9 >Object.values : Symbol(ObjectConstructor.values, Decl(lib.es2017.object.d.ts, --, --), Decl(lib.es… 10 >Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 11 …es : Symbol(ObjectConstructor.values, Decl(lib.es2017.object.d.ts, --, --), Decl(lib.es2017.object… 19 var entries = Object.entries(o); // [string, number][] 21 >Object.entries : Symbol(ObjectConstructor.entries, Decl(lib.es2017.object.d.ts, --, --), Decl(lib.… 22 >Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 23 …s : Symbol(ObjectConstructor.entries, Decl(lib.es2017.object.d.ts, --, --), Decl(lib.es2017.object… 26 var values = Object.values(o); // number[] 28 >Object.values : Symbol(ObjectConstructor.values, Decl(lib.es2017.object.d.ts, --, --), Decl(lib.es… [all …]
|
| D | narrowingTruthyObject.types | 7 if (typeof x === 'object') { 8 >typeof x === 'object' : boolean 9 >typeof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct… 11 >'object' : "object" 16 >x : object | null 19 if (typeof x === 'object' && x) { 20 >typeof x === 'object' && x : false | object | null 21 >typeof x === 'object' : boolean 22 >typeof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct… 24 >'object' : "object" [all …]
|
| D | controlFlowTypeofObject.types | 2 declare function obj(x: object): void; 3 >obj : (x: object) => void 4 >x : object 16 if (typeof x === 'object') { 17 >typeof x === 'object' : boolean 18 >typeof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct… 20 >'object' : "object" 24 >obj : (x: object) => void 25 >x : object 40 if (typeof x === 'object') { [all …]
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/ |
| D | Args.java | 22 public static final Map<String, Object> NONE = new HashMap<>(); 24 public static Map<String, Object> of( in of() 25 String argName0, Object argValue0) { in of() 26 Map<String, Object> result = new HashMap<>(); in of() 31 public static Map<String, Object> of( in of() 32 String argName0, Object argValue0, in of() 33 String argName1, Object argValue1) { in of() 34 Map<String, Object> result = new HashMap<>(); in of() 40 public static Map<String, Object> of( in of() 41 String argName0, Object argValue0, in of() [all …]
|
| /third_party/ffmpeg/compat/atomics/win32/ |
| D | stdatomic.h | 83 #define atomic_store(object, desired) \ argument 85 *(object) = (desired); \ 89 #define atomic_store_explicit(object, desired, order) \ argument 90 atomic_store(object, desired) 92 #define atomic_load(object) \ argument 93 (MemoryBarrier(), *(object)) 95 #define atomic_load_explicit(object, order) \ argument 96 atomic_load(object) 98 #define atomic_exchange(object, desired) \ argument 99 InterlockedExchangePointer((PVOID volatile *)object, (PVOID)desired) [all …]
|
| /third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/ |
| D | descriptor.js | 3 Object.defineProperty(exports, "__esModule", { value: true }); 48 function fieldDescriptorProto_TypeFromJSON(object) { argument 49 switch (object) { 105 …throw new tsProtoGlobalThis.Error("Unrecognized enum value " + object + " for enum FieldDescriptor… 109 function fieldDescriptorProto_TypeToJSON(object) { argument 110 switch (object) { 148 …throw new tsProtoGlobalThis.Error("Unrecognized enum value " + object + " for enum FieldDescriptor… 159 function fieldDescriptorProto_LabelFromJSON(object) { argument 160 switch (object) { 171 …throw new tsProtoGlobalThis.Error("Unrecognized enum value " + object + " for enum FieldDescriptor… [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkan/ |
| D | vkRefUtilImpl.inl | 229 VkInstance object = 0; local 230 VK_CHECK(vk.createInstance(pCreateInfo, pAllocator, &object)); 231 return Move<VkInstance>(check<VkInstance>(object), Deleter<VkInstance>(vk, object, pAllocator)); 236 VkDevice object = 0; local 237 VK_CHECK(vk.createDevice(physicalDevice, pCreateInfo, pAllocator, &object)); 238 …return Move<VkDevice>(check<VkDevice>(object), Deleter<VkDevice>(vkp, instance, object, pAllocator… 243 VkDeviceMemory object = 0; local 244 VK_CHECK(vk.allocateMemory(device, pAllocateInfo, pAllocator, &object)); 245 …return Move<VkDeviceMemory>(check<VkDeviceMemory>(object), Deleter<VkDeviceMemory>(vk, device, pAl… 250 VkFence object = 0; local [all …]
|
| /third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/ |
| D | vkRefUtilImpl.inl | 223 VkInstance object = 0; local 224 VK_CHECK(vk.createInstance(pCreateInfo, pAllocator, &object)); 225 return Move<VkInstance>(check<VkInstance>(object), Deleter<VkInstance>(vk, object, pAllocator)); 230 VkDevice object = 0; local 231 VK_CHECK(vk.createDevice(physicalDevice, pCreateInfo, pAllocator, &object)); 232 …return Move<VkDevice>(check<VkDevice>(object), Deleter<VkDevice>(vkp, instance, object, pAllocator… 237 VkDeviceMemory object = 0; local 238 VK_CHECK(vk.allocateMemory(device, pAllocateInfo, pAllocator, &object)); 239 …return Move<VkDeviceMemory>(check<VkDeviceMemory>(object), Deleter<VkDeviceMemory>(vk, device, pAl… 244 VkFence object = 0; local [all …]
|
| /third_party/ffmpeg/compat/atomics/gcc/ |
| D | stdatomic.h | 86 #define atomic_store(object, desired) \ argument 88 *(object) = (desired); \ 92 #define atomic_store_explicit(object, desired, order) \ argument 93 atomic_store(object, desired) 95 #define atomic_load(object) \ argument 96 (__sync_synchronize(), *(object)) 98 #define atomic_load_explicit(object, order) \ argument 99 atomic_load(object) 101 #define atomic_exchange(object, desired) \ argument 103 __typeof__(object) _obj = (object); \ [all …]
|
| /third_party/node/deps/v8/src/objects/ |
| D | objects.h | 27 #include "src/objects/object-list-macros.h" 34 #include "src/objects/object-macros.h" 37 // Most object types in the V8 JavaScript are described in this file. 40 // - Object 208 // Formats of Object::ptr_: 284 // the setter interceptors are called in Object.defineProperty(). 293 // Object is the abstract superclass for all classes in the 294 // object hierarchy. 295 // Object does not use any virtual functions to avoid the 297 // There must only be a single data member in Object: the Address ptr, [all …]
|
| D | js-objects.h | 15 #include "src/objects/object-macros.h" 65 // 2) Smi - This is the hash code of the object. 68 // the hash code of the object in its length field. This is a fast 78 DECL_ACCESSORS(raw_properties_or_hash, Object) 79 DECL_RELAXED_ACCESSORS(raw_properties_or_hash, Object) 83 // Deletes an existing named property in a normalized object. 84 static void DeleteNormalizedProperty(Handle<JSReceiver> object, 88 V8_WARN_UNUSED_RESULT static MaybeHandle<Object> ToPrimitive( 93 V8_WARN_UNUSED_RESULT static MaybeHandle<Object> OrdinaryToPrimitive( 107 Isolate* isolate, Handle<JSReceiver> object, Handle<Object> proto); [all …]
|
| /third_party/python/Lib/ |
| D | pprint.py | 26 Format a Python object into a pretty-printed representation. 29 Pretty-print a Python object to a stream [default is sys.stdout]. 48 def pprint(object, stream=None, indent=1, width=80, depth=None, *, argument 50 """Pretty-print a Python object to a stream [default is sys.stdout].""" 55 printer.pprint(object) 57 def pformat(object, indent=1, width=80, depth=None, *, argument 59 """Format a Python object into a pretty-printed representation.""" 62 underscore_numbers=underscore_numbers).pformat(object) 64 def pp(object, *args, sort_dicts=False, **kwargs): argument 65 """Pretty-print a Python object""" [all …]
|
| /third_party/node/deps/v8/src/builtins/ |
| D | builtins-object.cc | 20 // ES6 section 19.1 Object Objects 22 // ES6 section 19.1.3.4 Object.prototype.propertyIsEnumerable ( V ) 25 Handle<JSReceiver> object; in BUILTIN() local 28 isolate, name, Object::ToName(isolate, args.atOrUndefined(isolate, 1))); in BUILTIN() 30 isolate, object, Object::ToObject(isolate, args.receiver())); in BUILTIN() 32 JSReceiver::GetOwnPropertyAttributes(object, name); in BUILTIN() 38 // ES6 section 19.1.2.3 Object.defineProperties 42 Handle<Object> target = args.at(1); in BUILTIN() 43 Handle<Object> properties = args.at(2); in BUILTIN() 49 // ES6 section 19.1.2.4 Object.defineProperty [all …]
|
| /third_party/pulseaudio/speex/doc/ |
| D | speex_abs.odg | ... ObjectReplacements/Object 3
ObjectReplacements/Object 4
ObjectReplacements/Object 5
ObjectReplacements/Object 6
ObjectReplacements/Object 7
ObjectReplacements ... |
| /third_party/ffmpeg/compat/atomics/suncc/ |
| D | stdatomic.h | 83 static inline void atomic_store(intptr_t *object, intptr_t desired) in atomic_store() argument 85 *object = desired; in atomic_store() 89 #define atomic_store_explicit(object, desired, order) \ argument 90 atomic_store(object, desired) 92 static inline intptr_t atomic_load(intptr_t *object) in atomic_load() argument 95 return *object; in atomic_load() 98 #define atomic_load_explicit(object, order) \ argument 99 atomic_load(object) 101 #define atomic_exchange(object, desired) \ argument 102 atomic_swap_ptr(object, desired) [all …]
|