Searched defs:Object (Results 26 - 50 of 83) sorted by relevance

1234

/external/v8/test/mjsunit/
H A Darguments-opt.js97 // Object access.
129 Object.prototype[5] = 42;
131 Object.prototype[-5] = 87;
125 Object.prototype[5] = 42; class
H A Dobj-construct.js30 function Object() { function
H A Dundeletable-functions.js86 CheckEcmaSemantics(Object.prototype, array, "Object prototype");
88 var old_Object_prototype = Object.prototype;
91 Object.prototype = new_Object_prototype;
92 assertEquals(old_Object_prototype, Object.prototype);
136 var hasOwnProperty = Object.prototype.hasOwnProperty;
90 Object.prototype = new_Object_prototype; class
/external/llvm/lib/Object/
H A DSymbolicFile.cpp14 #include "llvm/Object/IRObjectFile.h"
15 #include "llvm/Object/ObjectFile.h"
16 #include "llvm/Object/SymbolicFile.h"
28 MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) {
29 StringRef Data = Object.getBuffer();
36 return IRObjectFile::create(Object, *Context);
59 return ObjectFile::createObjectFile(Object, Type);
64 ObjectFile::createObjectFile(Object, Type);
74 MemoryBufferRef(BCData->getBuffer(), Object.getBufferIdentifier()),
27 createSymbolicFile( MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) argument
H A DObjectFile.cpp14 #include "llvm/Object/COFF.h"
15 #include "llvm/Object/MachO.h"
16 #include "llvm/Object/ObjectFile.h"
51 ObjectFile::createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type) { argument
52 StringRef Data = Object.getBuffer();
68 return createELFObjectFile(Object);
80 return createMachOObjectFile(Object);
84 return createCOFFObjectFile(Object);
86 llvm_unreachable("Unexpected Object File Type");
H A DELFYAML.cpp14 #include "llvm/Object/ELFYAML.h"
248 const auto *Object = static_cast<ELFYAML::Object *>(IO.getContext()); local
249 assert(Object && "The IO context is not initialized");
252 switch (Object->Header.Machine) {
304 const auto *Object = static_cast<ELFYAML::Object *>(IO.getContext()); local
305 assert(Object && "The IO context is not initialized");
333 switch (Object->Header.Machine) {
402 const auto *Object local
431 const auto *Object = static_cast<ELFYAML::Object *>(IO.getContext()); local
594 const auto *Object = static_cast<ELFYAML::Object *>(IO.getContext()); local
614 mapping(IO &IO, ELFYAML::Object &Object) argument
[all...]
/external/v8/test/mjsunit/harmony/
H A Dstring-endswith.js138 Object.prototype[1] = 2; // try to break `arguments[1]`
134 Object.prototype[1] = 2; // try to break `arguments[1]` class
H A Dstring-startswith.js137 Object.prototype[1] = 2; // try to break `arguments[1]`
133 Object.prototype[1] = 2; // try to break `arguments[1]` class
/external/v8/test/webkit/
H A Darray-holes.js105 Object.prototype[1] = "peekaboo";
134 delete Object.prototype[1];
103 Object.prototype[1] = "peekaboo"; class
H A Dfor-in-cached.js36 Object.prototype.y = 2;
38 delete Object.prototype.y;
35 Object.prototype.y = 2; class
/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.cpp34 class Object class in namespace:de::__anon3003
37 Object (bool& exists) function in class:de::__anon3003::Object
43 ~Object (void)
56 void operator() (Object* ptr)
66 MovePtr<Object> createObject (bool& exists)
68 UniquePtr<Object> objectPtr(new Object(exists));
80 UniquePtr<Object> ptr(new Object(exists));
92 UniquePtr<Object> pt
[all...]
H A DdeSharedPtr.cpp41 class Object class in namespace:de::__anon2998
44 Object (bool& exists) function in class:de::__anon2998::Object
50 virtual ~Object (void)
59 class DerivedObject : public Object
63 : Object(exists)
71 SharedPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists)
88 SharedPtr<Object> ptrA(m_ptr);
90 SharedPtr<Object> ptrB;
92 ptrA = SharedPtr<Object>();
100 SharedPtr<Object> m_pt
[all...]
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp19 struct Object { struct in namespace:__anon11285
21 Object *Other;
23 typedef ArrayRecycler<Object> ARO;
53 ArrayRecycler<Object> DUT;
56 Object *A1 = DUT.allocate(Cap, Allocator);
60 Object *A2 = DUT.allocate(Cap, Allocator);
64 Object *A3 = DUT.allocate(Cap, Allocator);
84 Object *A2x = DUT.allocate(Cap, Allocator);
93 Object *A3x = DUT.allocate(Cap, Allocator);
95 Object *A1
[all...]
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_tagged.h37 Object enumerator in enum:CPDF_StructKid::__anon13088
/external/v8/benchmarks/
H A Ddeltablue.js49 Object.prototype.inheritsFrom = function (shuper) {
332 var Direction = new Object();
28 Object.prototype.inheritsFrom = function (shuper) { class
/external/deqp/framework/common/
H A DtcuThreadUtil.cpp78 Object::Object (const char* type, SharedPtr<Event> e) function in class:tcu::ThreadUtil::Object
84 Object::~Object (void)
88 void Object::read (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps)
97 void Object::modify (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps)
263 : Object("DataBlock", event)
278 readObject(SharedPtr<Object>(a));
279 readObject(SharedPtr<Object>(b));
/external/giflib/
H A Dgifalloc.c42 ColorMapObject *Object; local
50 Object = (ColorMapObject *)malloc(sizeof(ColorMapObject));
51 if (Object == (ColorMapObject *) NULL) {
55 Object->Colors = (GifColorType *)calloc(ColorCount, sizeof(GifColorType));
56 if (Object->Colors == (GifColorType *) NULL) {
57 free(Object);
61 Object->ColorCount = ColorCount;
62 Object->BitsPerPixel = GifBitSize(ColorCount);
65 memcpy((char *)Object->Colors,
69 return (Object);
76 GifFreeMapObject(ColorMapObject *Object) argument
86 DumpColorMap(ColorMapObject *Object, FILE * fp) argument
[all...]
/external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.h100 struct Object struct in class:ObjectContainerBSDArchive
102 Object();
119 typedef std::vector<Object> collection;
162 const Object *
173 Object *
218 Object::collection m_objects;
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DIRCompileLayer.h20 #include "llvm/Object/ObjectFile.h"
69 std::unique_ptr<object::ObjectFile> Object; local
73 std::tie(Object, Buffer) = tryToLoadFromObjectCache(*M).takeBinary();
75 if (!Object) {
76 std::tie(Object, Buffer) = Compile(*M).takeBinary();
81 Objects.push_back(std::move(Object));
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h83 struct Object { struct in namespace:llvm::COFFYAML
88 Object();
216 struct MappingTraits<COFFYAML::Object> {
217 static void mapping(IO &IO, COFFYAML::Object &Obj);
H A DSymbolicFile.h17 #include "llvm/Object/Binary.h"
150 createSymbolicFile(MemoryBufferRef Object, sys::fs::file_magic Type,
154 createSymbolicFile(MemoryBufferRef Object) { argument
155 return createSymbolicFile(Object, sys::fs::file_magic::unknown, nullptr);
/external/v8/test/cctest/
H A Dtest-alloc.cc53 Object* object = heap->AllocateJSObject(
93 static Handle<Object> Test() {
94 CALL_HEAP_FUNCTION(CcTest::i_isolate(), AllocateAfterFailures(), Object); local
102 Handle<Object> o = Test();
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp249 llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&*AI); local
250 if (!Object) {
257 for (llvm::yaml::MappingNode::iterator KVI = Object->begin(),
258 KVE = Object->end();
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc199 VtablePrefix *getVtablePrefix(void *Object) { argument
200 VtablePrefix **VptrPtr = reinterpret_cast<VtablePrefix**>(Object);
212 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { argument
223 VtablePrefix *Vtable = getVtablePrefix(Object);
243 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfo(void *Object) { argument
244 VtablePrefix *Vtable = getVtablePrefix(Object);
/external/eigen/unsupported/Eigen/src/BVH/
H A DKdBVH.h71 typedef _Object Object; typedef in class:Eigen::KdBVH
72 typedef std::vector<Object, aligned_allocator<Object> > ObjectList;
78 typedef const Object *ObjectIterator;
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
85 /** Given an iterator range over \a Object references and an iterator range over their bounding boxes, constructs the BVH */
88 /** Given an iterator range over \a Object references, constructs the BVH, overwriting whatever is in there currently.
89 * Requires that bounding_box(Object) return a Volume. */
92 /** Given an iterator range over \a Object reference
[all...]

Completed in 602 milliseconds

1234