Searched defs:FixedArray (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DFixedArray.h33 template <typename T, size_t Size> class FixedArray { class in namespace:WTF
56 using WTF::FixedArray;
/external/v8/tools/
H A Dgrokdump.py766 class FixedArray(HeapObject): class in inherits:HeapObject
778 p.Print("FixedArray(%s) {" % self.heap.reader.FormatIntPtr(self.address))
789 return "FixedArray(%08x, length=%d)" % (self.address, self.length)
942 "FIXED_ARRAY_TYPE": FixedArray,
/external/valgrind/tsan/
H A Dthread_sanitizer.cc825 // -------- FixedArray--------------- {{{1
827 class FixedArray { class
829 explicit INLINE FixedArray(size_t array_size) function in class:FixedArray
835 ~FixedArray() {
951 FixedArray<LID> intersection(min(set1.size(), set2.size()));
1206 FixedArray<TS> result_ts(vts_a->size() + vts_b->size());
/external/v8/src/
H A Dfactory.cc43 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
48 FixedArray);
52 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size,
58 FixedArray);
504 Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) {
505 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedArray); local
547 Handle<FixedArray> literals = NewFixedArray(number_of_literals, pretenure);
648 Handle<FixedArray> array = NewFixedArray(args.length());
1187 Handle<FixedArray> break_point
[all...]
H A Dobjects.h73 // - FixedArray
811 V(FixedArray) \
1476 // properties is a FixedArray in the fast case and a Dictionary in the
1478 DECL_ACCESSORS(properties, FixedArray) // Get and set fast properties.
1489 // In the fast mode elements is a FixedArray and so each element can
1499 // ExternalArray, or a FixedArray parameter map for a (non-strict)
1868 void GetLocalPropertyNames(FixedArray* storage, int index);
1877 int GetLocalElementKeys(FixedArray* storage, PropertyAttributes filter);
1883 int GetEnumElementKeys(FixedArray* storage);
2165 bool ReferencesObjectFromElements(FixedArray* element
2231 class FixedArray: public FixedArrayBase { class in namespace:v8::internal
[all...]

Completed in 1138 milliseconds