Home
last modified time | relevance | path

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

12345678910>>...128

/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 …]
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/node/tools/v8_gypfiles/
Dv8.gyp122 "<(V8_ROOT)/src/objects/allocation-site.tq",
123 "<(V8_ROOT)/src/objects/api-callbacks.tq",
124 "<(V8_ROOT)/src/objects/arguments.tq",
125 "<(V8_ROOT)/src/objects/cell.tq",
126 "<(V8_ROOT)/src/objects/code.tq",
127 "<(V8_ROOT)/src/objects/contexts.tq",
128 "<(V8_ROOT)/src/objects/data-handler.tq",
129 "<(V8_ROOT)/src/objects/debug-objects.tq",
130 "<(V8_ROOT)/src/objects/descriptor-array.tq",
131 "<(V8_ROOT)/src/objects/embedder-data-array.tq",
[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/flutter/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/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/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/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/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/flutter/skia/bench/
DGrMemoryPoolBench.cpp50 A* objects[kMaxObjects]; in onDraw() local
67 delete objects[count-1]; in onDraw()
70 objects[count] = new A; in onDraw()
75 delete objects[i]; in onDraw()
112 std::unique_ptr<B> objects[kMaxObjects]; in onDraw() local
116 if (nullptr == objects[idx].get()) { in onDraw()
117 objects[idx].reset(new B); in onDraw()
119 objects[idx].reset(); in onDraw()
157 C* objects[M]; in onDraw() local
161 objects[i] = new C; in onDraw()
[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/npm/node_modules/es-abstract/test/helpers/
Dvalues.js9 var objects = [{}, coercibleObject, toStringOnlyObject, valueOfOnlyObject]; variable
20 var nonStrings = [].concat(nullPrimitives, booleans, numbers, symbols, objects);
22 var nonPropertyKeys = [].concat(nullPrimitives, booleans, numbers, objects);
24 var nonBooleans = [].concat(nullPrimitives, strings, symbols, numbers, objects);
26 var truthies = [].concat(true, 'foo', 42, symbols, objects);
33 objects: objects, property
45 nonNumbers: nonNumberPrimitives.concat(objects),
/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/flutter/skia/third_party/externals/sdl/
DMakefile.in5 objects = build
126 all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(ob…
138 $(objects):
146 $(objects)/$(TARGET): $(GEN_HEADERS) $(GEN_OBJECTS) $(OBJECTS) $(VERSION_OBJECTS)
149 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
153 $(objects)/$(SDLTEST_TARGET): $(SDLTEST_OBJECTS)
173 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARG…
175 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
176 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
178 $(INSTALL) -m 644 $(objects)/$(SDLTEST_TARGET) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET)
[all …]

12345678910>>...128