| /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 | 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 | 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 | 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 | 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 | 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 | 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 …]
|
| D | commaOperatorWithSecondOperandObjectType.js | 6 var OBJECT: Object; variable 12 //The second operand type is Object 13 ANY, OBJECT; 14 BOOLEAN, OBJECT; 15 NUMBER, OBJECT; 16 STRING, OBJECT; 17 OBJECT, OBJECT; 19 //Return type is Object 20 var resultIsObject1 = (ANY, OBJECT); 21 var resultIsObject2 = (BOOLEAN, OBJECT); [all …]
|
| D | inDoesNotOperateOnPrimitiveTypes.errors.txt | 1 …oesNotOperateOnPrimitiveTypes.ts(12,17): error TS2322: Type 'T' is not assignable to type 'object'. 2 …oesNotOperateOnPrimitiveTypes.ts(19,17): error TS2322: Type 'T' is not assignable to type 'object'. 3 Type 'string | number' is not assignable to type 'object'. 4 Type 'string' is not assignable to type 'object'. 5 …otOperateOnPrimitiveTypes.ts(23,12): error TS2322: Type 'T | U' is not assignable to type 'object'. 6 Type 'T' is not assignable to type 'object'. 7 Type 'string | number' is not assignable to type 'object'. 8 Type 'string' is not assignable to type 'object'. 9 …otOperateOnPrimitiveTypes.ts(27,12): error TS2322: Type 'T | U' is not assignable to type 'object'. 10 Type 'U' is not assignable to type 'object'. [all …]
|
| D | library_ObjectPrototypeProperties.symbols | 2 // Properties of the Object Prototype Object as per ES5 spec 4 Object.prototype.constructor; 5 >Object.prototype.constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --)) 6 >Object.prototype : Symbol(ObjectConstructor.prototype, Decl(lib.es5.d.ts, --, --)) 7 >Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 9 >constructor : Symbol(Object.constructor, Decl(lib.es5.d.ts, --, --)) 11 Object.prototype.toString(); 12 >Object.prototype.toString : Symbol(Object.toString, Decl(lib.es5.d.ts, --, --)) 13 >Object.prototype : Symbol(ObjectConstructor.prototype, Decl(lib.es5.d.ts, --, --)) 14 >Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) [all …]
|
| /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/lwip/contrib/apps/LwipMibCompiler/Mibs/ |
| D | RFC1158-MIB | 4 mgmt, OBJECT-TYPE, NetworkAddress, IpAddress, 11 mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } -- MIB-II 14 system OBJECT IDENTIFIER ::= { mib-2 1 } 15 interfaces OBJECT IDENTIFIER ::= { mib-2 2 } 16 at OBJECT IDENTIFIER ::= { mib-2 3 } 17 ip OBJECT IDENTIFIER ::= { mib-2 4 } 18 icmp OBJECT IDENTIFIER ::= { mib-2 5 } 19 tcp OBJECT IDENTIFIER ::= { mib-2 6 } 20 udp OBJECT IDENTIFIER ::= { mib-2 7 } 21 egp OBJECT IDENTIFIER ::= { mib-2 8 } [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/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/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 …]
|
| /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/mindspore/mindspore-src/source/mindspore/ccsrc/pipeline/jit/pi/graph_build/ |
| D | func_graph_builder.h | 43 /// \param[in] obj The input python object. 45 …If the input is a tensor, return a fake tensor python object, else return the origin python object. 46 py::object AddSubGraphInput(const py::object &obj); 50 /// \param[in] packed_inputs The input python object for top graph. 53 bool AddTopGraphInputs(std::vector<py::object> packed_inputs); 57 /// \param[in] callable_obj The callable python object. 60 /// \return The python object of the infer result. 61 py::object AddNode(const py::object &callable_obj, const std::vector<py::object> &inputs_obj); 68 /// \return The python object of the infer result. 69 py::object AddNode(const ValuePtr &callable_value, const std::vector<py::object> &inputs_obj); [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 …]
|