Home
last modified time | relevance | path

Searched refs:objects (Results 1 – 25 of 2719) sorted by relevance

12345678910>>...109

/third_party/jerryscript/jerry-core/
DBUILD.gn46 "ecma/builtin-objects/ecma-builtin-array-iterator-prototype.c",
47 "ecma/builtin-objects/ecma-builtin-array-prototype-unscopables.c",
48 "ecma/builtin-objects/ecma-builtin-array-prototype.c",
49 "ecma/builtin-objects/ecma-builtin-array.c",
50 "ecma/builtin-objects/ecma-builtin-arraybuffer-prototype.c",
51 "ecma/builtin-objects/ecma-builtin-arraybuffer.c",
52 "ecma/builtin-objects/ecma-builtin-boolean-prototype.c",
53 "ecma/builtin-objects/ecma-builtin-boolean.c",
54 "ecma/builtin-objects/ecma-builtin-dataview-prototype.c",
55 "ecma/builtin-objects/ecma-builtin-dataview.c",
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DSlabAllocatorTests.cpp51 std::vector<Foo*> objects; in TEST() local
54 EXPECT_TRUE(std::find(objects.begin(), objects.end(), ptr) == objects.end()); in TEST()
55 objects.push_back(ptr); in TEST()
60 EXPECT_EQ(objects[i]->value, i); in TEST()
63 EXPECT_TRUE(IsPtrAligned(objects[i], alignof(Foo))); in TEST()
67 for (Foo* object : objects) { in TEST()
76 std::vector<AlignedFoo*> objects; in TEST() local
79 EXPECT_TRUE(std::find(objects.begin(), objects.end(), ptr) == objects.end()); in TEST()
80 objects.push_back(ptr); in TEST()
85 EXPECT_EQ(objects[i]->value, i); in TEST()
[all …]
/third_party/typescript/tests/baselines/reference/
DobjectRest2.types3 declare function connectionFromArray(objects: number, args: any): {};
4 >connectionFromArray : (objects: number, args: any) => {}
5 >objects : number
13 …ntext, args) => { const { objects } = await { objects: 12 }; return { ...connec…
17 …ntext, args) => { const { objects } = await { objects: 12 }; return { ...connec…
21 const { objects } = await { objects: 12 };
22 >objects : number
23 >await { objects: 12 } : { objects: number; }
24 >{ objects: 12 } : { objects: number; }
25 >objects : number
[all …]
DconditionalEqualityOnLiteralObjects.errors.txt1 …839: This condition will always return 'false' since JavaScript compares objects by reference, not…
2 …839: This condition will always return 'false' since JavaScript compares objects by reference, not…
3 …839: This condition will always return 'false' since JavaScript compares objects by reference, not…
4 …839: This condition will always return 'false' since JavaScript compares objects by reference, not…
5 …839: This condition will always return 'false' since JavaScript compares objects by reference, not…
6 …839: This condition will always return 'false' since JavaScript compares objects by reference, not…
7 …2839: This condition will always return 'true' since JavaScript compares objects by reference, not…
8 …2839: This condition will always return 'true' since JavaScript compares objects by reference, not…
9 …2839: This condition will always return 'true' since JavaScript compares objects by reference, not…
10 …2839: This condition will always return 'true' since JavaScript compares objects by reference, not…
[all …]
DobjectRest2.symbols3 declare function connectionFromArray(objects: number, args: any): {};
5 >objects : Symbol(objects, Decl(objectRest2.ts, 1, 37))
18 const { objects } = await { objects: 12 };
19 >objects : Symbol(objects, Decl(objectRest2.ts, 5, 15))
20 >objects : Symbol(objects, Decl(objectRest2.ts, 5, 35))
23 ...connectionFromArray(objects, args)
25 >objects : Symbol(objects, Decl(objectRest2.ts, 5, 15))
DjsDeclarationsReferenceToClassInstanceCrossFile.symbols16 console.log("Objects", render.objects);
20 >render.objects : Symbol(Render.objects, Decl(index.js, 3, 19))
22 >objects : Symbol(Render.objects, Decl(index.js, 3, 19))
56 this.objects = [];
57 >this.objects : Symbol(Render.objects, Decl(index.js, 3, 19))
59 >objects : Symbol(Render.objects, Decl(index.js, 3, 19))
73 this.objects.push(obj);
74 >this.objects.push : Symbol(Array.push, Decl(lib.es5.d.ts, --, --))
75 >this.objects : Symbol(Render.objects, Decl(index.js, 3, 19))
77 >objects : Symbol(Render.objects, Decl(index.js, 3, 19))
DjsDeclarationsReferenceToClassInstanceCrossFile.types19 console.log("Objects", render.objects);
20 >console.log("Objects", render.objects) : void
25 >render.objects : import("tests/cases/conformance/jsdoc/declarations/rectangle").Rectangle[]
27 >objects : import("tests/cases/conformance/jsdoc/declarations/rectangle").Rectangle[]
66 this.objects = [];
67 >this.objects = [] : undefined[]
68 >this.objects : Rectangle[]
70 >objects : Rectangle[]
86 this.objects.push(obj);
87 >this.objects.push(obj) : number
[all …]
DgenericWithIndexerOfTypeParameterType1.symbols6 private objects = <{ [objectId: string]: T; }>{};
7 >objects : Symbol(LazyArray.objects, Decl(genericWithIndexerOfTypeParameterType1.ts, 0, 20))
14 return this.objects;
15 >this.objects : Symbol(LazyArray.objects, Decl(genericWithIndexerOfTypeParameterType1.ts, 0, 20))
17 >objects : Symbol(LazyArray.objects, Decl(genericWithIndexerOfTypeParameterType1.ts, 0, 20))
DobjectRest2.js3 declare function connectionFromArray(objects: number, args: any): {};
7 const { objects } = await { objects: 12 };
9 ...connectionFromArray(objects, args)
30 const { objects } = yield { objects: 12 };
31 return Object.assign({}, connectionFromArray(objects, args));
/third_party/jerryscript/
DBUILD.gn131 "jerry-core/ecma/builtin-objects/ecma-builtin-array-iterator-prototype.c",
132 "jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype-unscopables.c",
133 "jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c",
134 "jerry-core/ecma/builtin-objects/ecma-builtin-array.c",
135 "jerry-core/ecma/builtin-objects/ecma-builtin-arraybuffer-prototype.c",
136 "jerry-core/ecma/builtin-objects/ecma-builtin-arraybuffer.c",
137 "jerry-core/ecma/builtin-objects/ecma-builtin-boolean-prototype.c",
138 "jerry-core/ecma/builtin-objects/ecma-builtin-boolean.c",
139 "jerry-core/ecma/builtin-objects/ecma-builtin-dataview-prototype.c",
140 "jerry-core/ecma/builtin-objects/ecma-builtin-dataview.c",
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetLite.java77 Object[] objects = Arrays.copyOf(first.objects, count); in mutableCopyOf() local
78 System.arraycopy(second.objects, 0, objects, first.count, second.count); in mutableCopyOf()
79 return new UnknownFieldSetLite(count, tags, objects, /* isMutable= */ true); in mutableCopyOf()
89 private Object[] objects; field in UnknownFieldSetLite
103 private UnknownFieldSetLite(int count, int[] tags, Object[] objects, boolean isMutable) { in UnknownFieldSetLite() argument
106 this.objects = objects; in UnknownFieldSetLite()
137 output.writeUInt64(fieldNumber, (Long) objects[i]); in writeTo()
140 output.writeFixed32(fieldNumber, (Integer) objects[i]); in writeTo()
143 output.writeFixed64(fieldNumber, (Long) objects[i]); in writeTo()
146 output.writeBytes(fieldNumber, (ByteString) objects[i]); in writeTo()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DResourceMap_unittest.cpp23 std::vector<size_t> objects(kSize, 1); in TEST() local
26 resourceMap.assign(index + 1, &objects[index]); in TEST()
33 ASSERT_EQ(&objects[index], found); in TEST()
44 std::vector<size_t> objects(kSize, 1); in TEST() local
47 resourceMap.assign(index + 1, &objects[index]); in TEST()
60 std::vector<size_t> objects; in TEST() local
64 objects.push_back(index); in TEST()
69 objects.push_back(kLargeIndex); in TEST()
71 for (size_t &object : objects) in TEST()
76 for (size_t object : objects) in TEST()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_handle_table.c49 void **objects; member
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *)); in handle_table_create()
71 if(!ht->objects) { in handle_table_create()
114 new_objects = (void **)REALLOC((void *)ht->objects, in handle_table_resize()
123 ht->objects = new_objects; in handle_table_resize()
141 object = ht->objects[index]; in handle_table_clear()
143 ht->objects[index] = NULL; in handle_table_clear()
165 if(!ht->objects[ht->filled]) in handle_table_add()
181 assert(!ht->objects[index]); in handle_table_add()
182 ht->objects[index] = object; in handle_table_add()
[all …]
/third_party/ffmpeg/libavcodec/
Dpgssubdec.c65 PGSSubObjectRef objects[MAX_OBJECT_REFS]; member
97 PGSSubObjects objects; member
106 for (i = 0; i < ctx->objects.count; i++) { in flush_cache()
107 av_freep(&ctx->objects.object[i].rle); in flush_cache()
108 ctx->objects.object[i].rle_buffer_size = 0; in flush_cache()
109 ctx->objects.object[i].rle_remaining_len = 0; in flush_cache()
111 ctx->objects.count = 0; in flush_cache()
115 static PGSSubObject * find_object(int id, PGSSubObjects *objects) in find_object() argument
119 for (i = 0; i < objects->count; i++) { in find_object()
120 if (objects->object[i].id == id) in find_object()
[all …]
Dav3a_parser.c70 uint16_t objects; member
219 int16_t objects = 0; in read_av3a_frame_header() local
317 objects = get_bits(&gb, 7); in read_av3a_frame_header()
318 objects += 1; in read_av3a_frame_header()
323 … total_bitrate = codecBitrateConfigTable[CHANNEL_CONFIG_MONO].bitrateTable[obj_brt_idx] * objects; in read_av3a_frame_header()
335 objects = get_bits(&gb, 7); in read_av3a_frame_header()
336 objects += 1; in read_av3a_frame_header()
360 total_bitrate = bitrate_bed_mc + bitrate_per_obj * objects; in read_av3a_frame_header()
428 hdf->objects = 0; in read_av3a_frame_header()
432 hdf->objects = objects; in read_av3a_frame_header()
[all …]
/third_party/ltp/testcases/kernel/syscalls/fanotify/
Dfanotify13.c41 #define EVENT_MAX ARRAY_SIZE(objects)
55 } objects[] = { variable
101 for (i = 0; i < ARRAY_SIZE(objects); i++) { in create_objects()
102 if (objects[i].is_dir) in create_objects()
103 SAFE_MKDIR(objects[i].path, 0755); in create_objects()
105 SAFE_FILE_PRINTF(objects[i].path, "0"); in create_objects()
112 for (i = 0; i < ARRAY_SIZE(objects); i++) in get_object_stats()
113 fanotify_save_fid(objects[i].path, &objects[i].fid); in get_object_stats()
121 for (i = 0; i < ARRAY_SIZE(objects); i++) { in setup_marks()
123 AT_FDCWD, objects[i].path); in setup_marks()
[all …]
/third_party/node/deps/v8/
DBUILD.bazel885 "src/objects/allocation-site.tq",
886 "src/objects/api-callbacks.tq",
887 "src/objects/arguments.tq",
888 "src/objects/bigint.tq",
889 "src/objects/call-site-info.tq",
890 "src/objects/cell.tq",
891 "src/objects/code.tq",
892 "src/objects/contexts.tq",
893 "src/objects/data-handler.tq",
894 "src/objects/debug-objects.tq",
[all …]
DBUILD.gn70 # Sets the number of internal fields on promise objects.
320 # as the backing store for all dictionary mode objects.
1357 # It's commonly useful to pass |this| to objects in a class' initializer
1558 "src/objects/allocation-site.h",
1559 "src/objects/allocation-site-inl.h",
1560 "src/objects/cell.h",
1561 "src/objects/cell-inl.h",
1562 "src/objects/code.h",
1563 "src/objects/code-inl.h",
1564 "src/objects/data-handler.h",
[all …]
/third_party/python/Lib/distutils/
Dccompiler.py116 self.objects = []
294 self.objects.append(object)
296 def set_link_objects(self, objects): argument
302 self.objects = objects[:]
337 objects = self.object_filenames(sources, strip_dir=0,
339 assert len(objects) == len(sources)
346 obj = objects[i]
351 return macros, objects, extra, pp_opts, build
403 objects = self.object_filenames(sources, output_dir=output_dir)
404 assert len(objects) == len(sources)
[all …]
Dbcppcompiler.py85 macros, objects, extra_postargs, pp_opts, build = \
95 for obj in objects:
141 return objects
147 objects, argument
153 (objects, output_dir) = self._fix_object_args (objects, output_dir)
157 if self._need_link (objects, output_filename):
158 lib_args = [output_filename, '/u'] + objects
173 objects, argument
189 (objects, output_dir) = self._fix_object_args (objects, output_dir)
200 if self._need_link (objects, output_filename):
[all …]
/third_party/cef/tools/
Dcef_api_hash.py85 objects = []
105 objects.append(o)
108 objects = sorted(objects, key=lambda o: o["name"] + "@" + o["filename"])
111 namelen = max([len(o["name"]) for o in objects])
112 filenamelen = max([len(o["filename"]) for o in objects])
114 for o in objects:
123 sig = self.__get_final_sig(objects, platform)
133 objects = []
142 objects.append(object)
150 objects.append(object)
[all …]
/third_party/python/Doc/library/
Dgc.rst14 and set debugging options. It also provides access to unreachable objects that
20 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
46 unreachable objects found is returned.
68 Returns a list of all objects tracked by the collector, excluding the list
69 returned. If *generation* is not None, return only the objects tracked by
86 * ``collected`` is the total number of objects collected inside this
89 * ``uncollectable`` is the total number of objects which were found
101 The GC classifies objects into three generations depending on how many
102 collection sweeps they have survived. New objects are placed in the youngest
105 generation, objects in that generation remain there after a collection. In
[all …]
/third_party/node/deps/v8/src/objects/
Dfixed-array.tq13 objects[length]: Object;
25 @cppRelaxedLoad objects[length]: MaybeObject;
44 @cppRelaxedLoad objects[capacity]: MaybeObject;
50 extern operator '.objects[]' macro LoadFixedArrayElement(
52 extern operator '.objects[]' macro LoadFixedArrayElement(
54 extern operator '.objects[]' macro LoadFixedArrayElement(
56 extern operator '.objects[]=' macro StoreFixedArrayElement(
58 extern operator '.objects[]=' macro StoreFixedArrayElement(
60 extern operator '.objects[]=' macro StoreFixedArrayElement(
62 extern operator '.objects[]=' macro StoreFixedArrayElement(
[all …]
/third_party/mesa3d/bin/
Drefcnt-log-helper.py45 objects = {}
58 if cur_object in objects:
59 del objects[cur_object]
63 objects[cur_object] = []
64 if prev_object in objects:
65 objects[prev_object] += stack
72 for stack in objects.values():
/third_party/elfutils/tests/
Drun-ar.sh20 tempfiles objects.list test.ar
23 (cd ${abs_top_builddir}/src; ls *.o | sort) > objects.list
24 cat objects.list
31 testrun_compare ${abs_top_builddir}/src/ar -t test.ar < objects.list
33 echo Delete all objects again.
34 testrun ${abs_top_builddir}/src/ar -d test.ar $(cat objects.list)

12345678910>>...109