Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 25 of 4956) sorted by relevance

12345678910>>...199

/third_party/typescript/tests/baselines/reference/
DelementAccessChain.3.js2 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 …]
DpropertyAccessChain.3.js2 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 …]
DtypedArrays.js17 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 …]
DpropertyAccessChain.3.types2 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 …]
DelementAccessChain.3.types2 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 …]
DpropertyAccessChain.3.symbols2 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 …]
DelementAccessChain.3.symbols2 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 …]
DdestructuringControlFlow.js2 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 …]
DasyncFunctionReturnType.js18 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 …]
DdestructuringControlFlow.types2 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/libabigail/tests/
Dtest-svg.cc14 svg obj("sa-base"); in main() local
16 obj.start(); in main()
17 obj.add_y_row(r); in main()
18 obj.finish(); in main()
23 svg obj("sa-A"); in main() local
30 obj.start(); in main()
31 obj.add_y_row(r1); in main()
32 obj.add_y_row(r2); in main()
33 obj.add_y_row(r3); in main()
34 obj.add_y_row(r4); in main()
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/
Dtypeof-mods.c8 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/
DtypedArrays.ts18 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/
Dstringify_test.js3 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/
Dread-installed.js135 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/alsa-lib/src/control/
Dcontrol.c1698 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/
Dnmake.mak63 $(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/
Dnmake.mak63 $(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/gstreamer/gstplugins_bad/gst/mxf/
Dmxfdms1.h30 #define MXF_DMS1(obj) \ argument
31 (G_TYPE_CHECK_INSTANCE_CAST((obj),MXF_TYPE_DMS1, MXFDMS1))
32 #define MXF_IS_DMS1(obj) \ argument
33 (G_TYPE_CHECK_INSTANCE_TYPE((obj),MXF_TYPE_DMS1))
40 #define MXF_DMS1_TEXT_LANGUAGE(obj) \ argument
41 (G_TYPE_CHECK_INSTANCE_CAST((obj),MXF_TYPE_DMS1_TEXT_LANGUAGE, MXFDMS1TextLanguage))
42 #define MXF_IS_DMS1_TEXT_LANGUAGE(obj) \ argument
43 (G_TYPE_CHECK_INSTANCE_TYPE((obj),MXF_TYPE_DMS1_TEXT_LANGUAGE))
50 #define MXF_DMS1_THESAURUS(obj) \ argument
51 (G_TYPE_CHECK_INSTANCE_CAST((obj),MXF_TYPE_DMS1_THESAURUS, MXFDMS1Thesaurus))
[all …]
Dmxfmetadata.h31 #define MXF_METADATA_BASE(obj) \ argument
32 (G_TYPE_CHECK_INSTANCE_CAST((obj),MXF_TYPE_METADATA_BASE, MXFMetadataBase))
33 #define MXF_IS_METADATA_BASE(obj) \ argument
34 (G_TYPE_CHECK_INSTANCE_TYPE((obj),MXF_TYPE_METADATA_BASE))
35 #define MXF_METADATA_BASE_GET_CLASS(obj) \ argument
36 (G_TYPE_INSTANCE_GET_CLASS ((obj), MXF_TYPE_METADATA_BASE, MXFMetadataBaseClass))
45 #define MXF_METADATA(obj) \ argument
46 (G_TYPE_CHECK_INSTANCE_CAST((obj),MXF_TYPE_METADATA, MXFMetadata))
47 #define MXF_IS_METADATA(obj) \ argument
48 (G_TYPE_CHECK_INSTANCE_TYPE((obj),MXF_TYPE_METADATA))
[all …]
/third_party/libxml2/win32/
DMakefile.msvc115 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 …]
DMakefile.bcb116 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 …]
/third_party/gstreamer/gstplugins_base/tests/check/
Dgst-plugins-base.supp9 obj:/usr/lib/libtheora.so*
27 obj:*
28 obj:*
29 obj:*
30 obj:*
31 obj:*
32 obj:*
33 obj:*
34 obj:*
35 obj:*
[all …]
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
Dusb_obj.c47 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/alsa-lib/include/
Dcontrol.h430 unsigned int snd_ctl_event_elem_get_mask(const snd_ctl_event_t *obj);
431 unsigned int snd_ctl_event_elem_get_numid(const snd_ctl_event_t *obj);
432 void snd_ctl_event_elem_get_id(const snd_ctl_event_t *obj, snd_ctl_elem_id_t *ptr);
433 snd_ctl_elem_iface_t snd_ctl_event_elem_get_interface(const snd_ctl_event_t *obj);
434 unsigned int snd_ctl_event_elem_get_device(const snd_ctl_event_t *obj);
435 unsigned int snd_ctl_event_elem_get_subdevice(const snd_ctl_event_t *obj);
436 const char *snd_ctl_event_elem_get_name(const snd_ctl_event_t *obj);
437 unsigned int snd_ctl_event_elem_get_index(const snd_ctl_event_t *obj);
439 int snd_ctl_elem_list_alloc_space(snd_ctl_elem_list_t *obj, unsigned int entries);
440 void snd_ctl_elem_list_free_space(snd_ctl_elem_list_t *obj);
[all …]

12345678910>>...199