/third_party/typescript/tests/baselines/reference/ |
D | elementAccessChain.3.js | 2 declare const obj: any; 4 obj?.["a"]++; 5 obj?.a["b"]++; 6 obj?.["a"]--; 7 obj?.a["b"]--; 9 ++obj?.["a"]; 10 ++obj?.a["b"]; 11 --obj?.["a"]; 12 --obj?.a["b"]; 14 obj?.["a"] = 1; [all …]
|
D | propertyAccessChain.3.js | 2 declare const obj: any; 4 obj?.a++; 5 obj?.a.b++; 6 obj?.a--; 7 obj?.a.b--; 9 ++obj?.a; 10 ++obj?.a.b; 11 --obj?.a; 12 --obj?.a.b; 14 obj?.a = 1; [all …]
|
D | elementAccessChain.3.types | 2 declare const obj: any; 3 >obj : any 5 obj?.["a"]++; 6 >obj?.["a"]++ : number 7 >obj?.["a"] : any 8 >obj : any 11 obj?.a["b"]++; 12 >obj?.a["b"]++ : number 13 >obj?.a["b"] : any 14 >obj?.a : any [all …]
|
D | propertyAccessChain.3.types | 2 declare const obj: any; 3 >obj : any 5 obj?.a++; 6 >obj?.a++ : number 7 >obj?.a : any 8 >obj : any 11 obj?.a.b++; 12 >obj?.a.b++ : number 13 >obj?.a.b : any 14 >obj?.a : any [all …]
|
D | typedArrays.js | 17 function CreateTypedArrayInstancesFromLength(obj: number) { 19 typedArrays[0] = new Int8Array(obj); 20 typedArrays[1] = new Uint8Array(obj); 21 typedArrays[2] = new Int16Array(obj); 22 typedArrays[3] = new Uint16Array(obj); 23 typedArrays[4] = new Int32Array(obj); 24 typedArrays[5] = new Uint32Array(obj); 25 typedArrays[6] = new Float32Array(obj); 26 typedArrays[7] = new Float64Array(obj); 27 typedArrays[8] = new Uint8ClampedArray(obj); [all …]
|
D | propertyAccessChain.3.symbols | 2 declare const obj: any; 3 >obj : Symbol(obj, Decl(propertyAccessChain.3.ts, 0, 13)) 5 obj?.a++; 6 >obj : Symbol(obj, Decl(propertyAccessChain.3.ts, 0, 13)) 8 obj?.a.b++; 9 >obj : Symbol(obj, Decl(propertyAccessChain.3.ts, 0, 13)) 11 obj?.a--; 12 >obj : Symbol(obj, Decl(propertyAccessChain.3.ts, 0, 13)) 14 obj?.a.b--; 15 >obj : Symbol(obj, Decl(propertyAccessChain.3.ts, 0, 13)) [all …]
|
D | elementAccessChain.3.symbols | 2 declare const obj: any; 3 >obj : Symbol(obj, Decl(elementAccessChain.3.ts, 0, 13)) 5 obj?.["a"]++; 6 >obj : Symbol(obj, Decl(elementAccessChain.3.ts, 0, 13)) 8 obj?.a["b"]++; 9 >obj : Symbol(obj, Decl(elementAccessChain.3.ts, 0, 13)) 11 obj?.["a"]--; 12 >obj : Symbol(obj, Decl(elementAccessChain.3.ts, 0, 13)) 14 obj?.a["b"]--; 15 >obj : Symbol(obj, Decl(elementAccessChain.3.ts, 0, 13)) [all …]
|
D | destructuringControlFlow.js | 2 function f1(obj: { a?: string }) { argument 3 if (obj.a) { 4 obj = {}; 5 let a1 = obj["a"]; // string | undefined 6 let a2 = obj.a; // string | undefined 10 function f2(obj: [number, string] | null[]) { 11 let a0 = obj[0]; // number | null 12 let a1 = obj[1]; // string | null 13 let [b0, b1] = obj; 14 ([a0, a1] = obj); [all …]
|
D | asyncFunctionReturnType.js | 18 async function fIndexedTypeForStringProp(obj: Obj): Promise<Obj["stringProp"]> { 19 return obj.stringProp; 22 async function fIndexedTypeForPromiseOfStringProp(obj: Obj): Promise<Obj["stringProp"]> { 23 return Promise.resolve(obj.stringProp); 26 async function fIndexedTypeForExplicitPromiseOfStringProp(obj: Obj): Promise<Obj["stringProp"]> { 27 return Promise.resolve<Obj["stringProp"]>(obj.stringProp); 30 async function fIndexedTypeForAnyProp(obj: Obj): Promise<Obj["anyProp"]> { 31 return obj.anyProp; 34 async function fIndexedTypeForPromiseOfAnyProp(obj: Obj): Promise<Obj["anyProp"]> { 35 return Promise.resolve(obj.anyProp); [all …]
|
D | keyofAndForIn.js | 4 function f1<K extends string, T>(obj: { [P in K]: T }, k: K) { 5 const b = k in obj; 7 for (k1 in obj) { 8 let x1 = obj[k1]; 10 for (let k2 in obj) { 11 let x2 = obj[k2]; 15 function f2<T>(obj: { [P in keyof T]: T[P] }, k: keyof T) { 16 const b = k in obj; 18 for (k1 in obj) { 19 let x1 = obj[k1]; [all …]
|
D | destructuringControlFlow.types | 2 function f1(obj: { a?: string }) { 3 >f1 : (obj: { a?: string;}) => void 4 >obj : { a?: string | undefined; } 7 if (obj.a) { 8 >obj.a : string | undefined 9 >obj : { a?: string | undefined; } 12 obj = {}; 13 >obj = {} : {} 14 >obj : { a?: string | undefined; } 17 let a1 = obj["a"]; // string | undefined [all …]
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
D | typeof-mods.c | 8 unsigned int obj, *ptr; in test_spec() local 9 typeof(obj) var = obj; in test_spec() 11 typeof(*ptr) var2 = obj; in test_spec() 13 typeof(obj) *ptr4 = ptr; in test_spec() 14 obj = obj; in test_spec() 16 ptr = &obj; in test_spec() 17 obj = *ptr; in test_spec() 22 const int obj, *ptr; in test_const() local 23 typeof(obj) var = obj; in test_const() 25 typeof(*ptr) var2 = obj; in test_const() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | typedArrays.ts | 18 function CreateTypedArrayInstancesFromLength(obj: number) { 20 typedArrays[0] = new Int8Array(obj); 21 typedArrays[1] = new Uint8Array(obj); 22 typedArrays[2] = new Int16Array(obj); 23 typedArrays[3] = new Uint16Array(obj); 24 typedArrays[4] = new Int32Array(obj); 25 typedArrays[5] = new Uint32Array(obj); 26 typedArrays[6] = new Float32Array(obj); 27 typedArrays[7] = new Float64Array(obj); 28 typedArrays[8] = new Uint8ClampedArray(obj); [all …]
|
/third_party/node/deps/npm/node_modules/json-stringify-safe/test/ |
D | stringify_test.js | 3 function jsonify(obj) { return JSON.stringify(obj, null, 2) } argument 7 var obj = {name: "Alice"} variable 8 obj.self = obj 9 var json = stringify(obj, null, 2) 14 var obj = {name: "Alice"} variable 15 obj.identity = {self: obj} 16 var json = stringify(obj, null, 2) 21 var obj = {name: "Alice", child: {name: "Bob"}} variable 22 obj.child.self = obj.child 24 stringify(obj, null, 2).must.eql(jsonify({ [all …]
|
/third_party/node/deps/npm/node_modules/read-installed/ |
D | read-installed.js | 135 readInstalled_(folder, null, null, null, 0, opts, function (er, obj) { argument 139 resolveInheritance(obj, opts) 140 obj.root = true 141 unmarkExtraneous(obj, opts) 142 cb(null, obj) 148 , obj 161 obj = copy(data) 164 obj = obj || true 191 debug('next', installed, obj && typeof obj, name, real) 192 if (!installed || !obj || !real || called) return [all …]
|
/third_party/boost/libs/config/checks/ |
D | Jamfile.v2 | 14 obj two_arg_use_facet : test_case.cpp : <define>TEST_BOOST_HAS_TWO_ARG_USE_FACET ; 15 obj bethreads : test_case.cpp : <define>TEST_BOOST_HAS_BETHREADS ; 16 obj clock_gettime : test_case.cpp : <define>TEST_BOOST_HAS_CLOCK_GETTIME ; 17 obj pragma_detect_mismatch : test_case.cpp : <define>TEST_BOOST_HAS_PRAGMA_DETECT_MISMATCH ; 18 obj dirent_h : test_case.cpp : <define>TEST_BOOST_HAS_DIRENT_H ; 19 obj expm1 : test_case.cpp : <define>TEST_BOOST_HAS_EXPM1 ; 20 obj float128 : test_case.cpp : <define>TEST_BOOST_HAS_FLOAT128 ; 21 obj ftime : test_case.cpp : <define>TEST_BOOST_HAS_FTIME ; 22 obj getsystemtimeasfiletime : test_case.cpp : <define>TEST_BOOST_HAS_GETSYSTEMTIMEASFILETIME ; 23 obj gettimeofday : test_case.cpp : <define>TEST_BOOST_HAS_GETTIMEOFDAY ; [all …]
|
/third_party/re2/ |
D | Makefile | 71 all: obj/libre2.a obj/so/libre2.$(SOEXT) 112 obj/util/rune.o\ 113 obj/util/strutil.o\ 114 obj/re2/bitstate.o\ 115 obj/re2/compile.o\ 116 obj/re2/dfa.o\ 117 obj/re2/filtered_re2.o\ 118 obj/re2/mimics_pcre.o\ 119 obj/re2/nfa.o\ 120 obj/re2/onepass.o\ [all …]
|
/third_party/alsa-lib/src/control/ |
D | control.c | 1698 int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t *obj, unsigned int entries) in snd_ctl_elem_list_alloc_space() argument 1700 free(obj->pids); in snd_ctl_elem_list_alloc_space() 1701 obj->pids = calloc(entries, sizeof(*obj->pids)); in snd_ctl_elem_list_alloc_space() 1702 if (!obj->pids) { in snd_ctl_elem_list_alloc_space() 1703 obj->space = 0; in snd_ctl_elem_list_alloc_space() 1706 obj->space = entries; in snd_ctl_elem_list_alloc_space() 1718 void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t *obj) in snd_ctl_elem_list_free_space() argument 1720 free(obj->pids); in snd_ctl_elem_list_free_space() 1721 obj->pids = NULL; in snd_ctl_elem_list_free_space() 1722 obj->space = 0; in snd_ctl_elem_list_free_space() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | nmake.mak | 63 $(OBJDIR)\os_win32.obj \ 64 $(OBJDIR)\eloop_win.obj \ 65 $(OBJDIR)\sha1.obj \ 66 $(OBJDIR)\sha1-tlsprf.obj \ 67 $(OBJDIR)\sha1-pbkdf2.obj \ 68 $(OBJDIR)\md5.obj \ 69 $(OBJDIR)\aes-cbc.obj \ 70 $(OBJDIR)\aes-ctr.obj \ 71 $(OBJDIR)\aes-eax.obj \ 72 $(OBJDIR)\aes-encblock.obj \ [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | nmake.mak | 63 $(OBJDIR)\os_win32.obj \ 64 $(OBJDIR)\eloop_win.obj \ 65 $(OBJDIR)\sha1.obj \ 66 $(OBJDIR)\sha1-tlsprf.obj \ 67 $(OBJDIR)\sha1-pbkdf2.obj \ 68 $(OBJDIR)\md5.obj \ 69 $(OBJDIR)\aes-cbc.obj \ 70 $(OBJDIR)\aes-ctr.obj \ 71 $(OBJDIR)\aes-eax.obj \ 72 $(OBJDIR)\aes-encblock.obj \ [all …]
|
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/ |
D | usb_obj.c | 47 int usbobj_init(struct usb_obj *obj, const char *name, in usbobj_init() argument 48 void (*release)(struct usb_obj *obj)) in usbobj_init() argument 50 if (!obj) in usbobj_init() 55 obj->name = name; in usbobj_init() 56 obj->parent = NULL; in usbobj_init() 57 objref_init(&obj->ref, 1); in usbobj_init() 58 INIT_LIST_HEAD(&obj->entry); in usbobj_init() 59 INIT_LIST_HEAD(&obj->children); in usbobj_init() 60 INIT_LIST_HEAD(&obj->objres_head); in usbobj_init() 61 spin_lock_init(&obj->objres_lock); in usbobj_init() [all …]
|
/third_party/libnl/lib/ |
D | object.c | 37 static inline struct nl_object_ops *obj_ops(struct nl_object *obj) in obj_ops() argument 39 if (!obj->ce_ops) in obj_ops() 42 return obj->ce_ops; in obj_ops() 111 struct nl_object *nl_object_clone(struct nl_object *obj) in nl_object_clone() argument 118 if (!obj) in nl_object_clone() 121 ops = obj_ops(obj); in nl_object_clone() 130 new->ce_ops = obj->ce_ops; in nl_object_clone() 131 new->ce_msgtype = obj->ce_msgtype; in nl_object_clone() 132 new->ce_mask = obj->ce_mask; in nl_object_clone() 135 memcpy((char *)new + doff, (char *)obj + doff, size); in nl_object_clone() [all …]
|
/third_party/libxml2/win32/ |
D | Makefile.bcb | 116 XML_OBJS = $(XML_INTDIR)\buf.obj\ 117 $(XML_INTDIR)\c14n.obj\ 118 $(XML_INTDIR)\catalog.obj\ 119 $(XML_INTDIR)\chvalid.obj\ 120 $(XML_INTDIR)\debugXML.obj\ 121 $(XML_INTDIR)\dict.obj\ 122 $(XML_INTDIR)\DOCBparser.obj\ 123 $(XML_INTDIR)\encoding.obj\ 124 $(XML_INTDIR)\entities.obj\ 125 $(XML_INTDIR)\error.obj\ [all …]
|
D | Makefile.msvc | 115 XML_OBJS = $(XML_INTDIR)\buf.obj\ 116 $(XML_INTDIR)\c14n.obj\ 117 $(XML_INTDIR)\catalog.obj\ 118 $(XML_INTDIR)\chvalid.obj\ 119 $(XML_INTDIR)\debugXML.obj\ 120 $(XML_INTDIR)\dict.obj\ 121 $(XML_INTDIR)\DOCBparser.obj\ 122 $(XML_INTDIR)\encoding.obj\ 123 $(XML_INTDIR)\entities.obj\ 124 $(XML_INTDIR)\error.obj\ [all …]
|
/third_party/boost/libs/move/test/ |
D | copy_move_optimization.cpp | 17 class obj class 19 BOOST_COPYABLE_AND_MOVABLE(obj) 22 obj() in obj() function in obj 27 ~obj() in ~obj() 30 obj(const obj &) in obj() argument 36 obj(BOOST_RV_REF(obj)) in obj() function in obj 41 obj& operator =(BOOST_COPY_ASSIGN_REF(obj)) in operator =() argument 47 obj& operator =(BOOST_RV_REF(obj)) in operator =() argument 55 obj rvalue_func() { return obj(); } in rvalue_func() 56 const obj const_rvalue_func() { return obj(); } in const_rvalue_func() [all …]
|