Searched defs:Object (Results 51 - 75 of 115) sorted by relevance

12345

/external/chromium_org/v8/test/webkit/
H A Dfor-in-cached.js36 Object.prototype.y = 2;
38 delete Object.prototype.y;
35 Object.prototype.y = 2; class
/external/deqp/framework/common/
H A DtcuThreadUtil.cpp77 Object::Object (const char* type, SharedPtr<Event> e) function in class:tcu::ThreadUtil::Object
83 Object::~Object (void)
87 void Object::read (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps)
96 void Object::modify (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps)
248 : Object("DataBlock", event)
263 readObject(SharedPtr<Object>(a));
264 readObject(SharedPtr<Object>(b));
H A DtcuThreadUtil.hpp69 class Object class in namespace:tcu::ThreadUtil
72 Object (const char* type, de::SharedPtr<Event> createEvent);
73 virtual ~Object (void);
86 Object (const Object&);
87 Object& operator= (const Object&);
138 void readObject (de::SharedPtr<Object> object) { object->read(m_event, m_deps); }
139 void modifyObject (de::SharedPtr<Object> object) { object->modify(m_event, m_deps); }
206 class DataBlock : public Object
[all...]
/external/chromium_org/dbus/
H A Dobject_manager.h15 // Newer D-Bus services implement the Object Manager interface to inform other
102 // interface or from the Object Manager interface. You may also wish to
133 // Object Manager interface, as internal methods, and a public API for
334 struct Object { struct in class:dbus::ObjectManager
335 Object();
336 ~Object();
346 // Maps the object path of an object to the Object structure.
347 typedef std::map<const ObjectPath, Object*> ObjectMap;
H A Dobject_manager.cc23 ObjectManager::Object::Object() function in class:dbus::ObjectManager::Object
27 ObjectManager::Object::~Object() {
60 // Clean up Object structures
63 Object* object = iter->second;
65 for (Object::PropertiesMap::iterator piter = object->properties_map.begin();
102 Object* object = oiter->second;
104 Object::PropertiesMap::iterator piter =
118 Object* objec
[all...]
/external/chromium_org/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/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/Object/
H A DCOFFYAML.h72 struct Object { struct in namespace:llvm::COFFYAML
76 Object();
184 struct MappingTraits<COFFYAML::Object> {
185 static void mapping(IO &IO, COFFYAML::Object &Obj);
H A DSymbolicFile.h17 #include "llvm/Object/Binary.h"
146 createSymbolicFile(std::unique_ptr<MemoryBuffer> &Object,
150 createSymbolicFile(std::unique_ptr<MemoryBuffer> &Object) { argument
151 return createSymbolicFile(Object, sys::fs::file_magic::unknown, nullptr);
H A DELFYAML.h107 struct Object { struct in namespace:llvm::ELFYAML
208 struct MappingTraits<ELFYAML::Object> {
209 static void mapping(IO &IO, ELFYAML::Object &Object);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DGDBRegistrar.cpp85 /// Creates an entry in the JIT registry for the buffer @p Object,
88 void registerObject(const ObjectBuffer &Object) override;
90 /// Removes the internal registration of @p Object, and
92 /// Returns true if @p Object was found in ObjectBufferMap.
93 bool deregisterObject(const ObjectBuffer &Object) override;
134 void GDBJITRegistrar::registerObject(const ObjectBuffer &Object) { argument
136 const char *Buffer = Object.getBufferStart();
137 size_t Size = Object.getBufferSize();
157 bool GDBJITRegistrar::deregisterObject(const ObjectBuffer& Object) { argument
158 const char *Buffer = Object
[all...]
/external/llvm/lib/Object/
H A DIRObjectFile.cpp14 #include "llvm/Object/IRObjectFile.h"
35 IRObjectFile::IRObjectFile(std::unique_ptr<MemoryBuffer> Object, argument
37 : SymbolicFile(Binary::ID_IR, std::move(Object)), M(std::move(Mod)) {
272 std::unique_ptr<MemoryBuffer> Object, LLVMContext &Context) {
273 ErrorOr<Module *> MOrErr = getLazyBitcodeModule(Object.get(), Context);
278 return new IRObjectFile(std::move(Object), std::move(M));
271 createIRObjectFile( std::unique_ptr<MemoryBuffer> Object, LLVMContext &Context) argument
H A DCOFFYAML.cpp14 #include "llvm/Object/COFFYAML.h"
22 Object::Object() { memset(&Header, 0, sizeof(COFF::header)); } function in class:llvm::COFFYAML::Object
388 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) {
/external/skia/include/utils/
H A DSkJSON.h29 class Object { class in class:SkJSON
34 Object();
35 Object(const Object&);
36 ~Object();
40 * parameter is copied, but ownership of the Object parameter is
41 * transferred. The Object parameter may be null, but the name must
44 void addObject(const char name[], Object* value);
89 bool findObject(const char name[], Object** = NULL) const;
105 * Iterator class which returns all of the fields/slots in an Object,
[all...]
/external/chromium_org/v8/src/
H A Druntime.js21 var $Object = global.Object;
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies.js44 // Getting property descriptors (Object.getOwnPropertyDescriptor).
54 assertEquals(42, Object.getOwnPropertyDescriptor(p, "a").value)
56 assertEquals(42, Object.getOwnPropertyDescriptor(p, 99).value)
97 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, "a") }, "myexn")
98 assertThrows(function(){ Object.getOwnPropertyDescriptor(p, 77) }, "myexn")
147 var o = Object.create(p, {x: {value: 88}})
220 var o = Object.create(p, {g: {value: function(x) { return x + 88 }}})
309 var o = Object.create(p, {x: {value: 88}, '4': {value: 89}})
589 var o = Object.create(p, {x: {value: 88, writable: true},
615 assertFalse(Object
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A DObject-getOwnPropertyNames.js24 description("Test to ensure correct behaviour of Object.getOwnPropertyNames");
35 "Object.create({}, { 'a': { 'value': 1, 'enumerable': false } })": "['a']",
36 "Object.create([1,2,3], { 'a': { 'value': 1, 'enumerable': false } })": "['a']",
74 "Object": "['arguments', 'caller', 'create', 'defineProperties', 'defineProperty', 'deliverChangeRecords', 'freeze', 'getNotifier', 'getOwnPropertyDescriptor', 'getOwnPropertyNames', 'getOwnPropertySymbols', 'getPrototypeOf', 'is', 'isExtensible', 'isFrozen', 'isSealed', 'keys', 'length', 'name', 'observe', 'preventExtensions', 'prototype', 'seal', 'setPrototypeOf', 'unobserve']",
75 "Object.prototype": "['__defineGetter__', '__defineSetter__', '__lookupGetter__', '__lookupSetter__', '__proto__', 'constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf']",
98 return Object.getOwnPropertyNames(obj).sort();
104 // Global Object
106 var globalPropertyNames = Object.getOwnPropertyNames(this);
121 "Object",
/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.cc197 VtablePrefix *getVtablePrefix(void *Object) { argument
198 VtablePrefix **VptrPtr = reinterpret_cast<VtablePrefix**>(Object);
210 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { argument
221 VtablePrefix *Vtable = getVtablePrefix(Object);
241 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfo(void *Object) { argument
242 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...]
/external/qemu/include/qom/
H A Dobject.h2 * QEMU Object Model
29 typedef struct Object Object; typedef in typeref:struct:Object
40 * @title:Base Object Type System
43 * The QEMU Object Model provides a framework for registering user creatable
92 * Using object_new(), a new #Object derivative will be instantiated. You can
93 * cast an #Object to a subclass (or base-class) type using
300 typedef void (ObjectPropertyAccessor)(Object *obj,
314 typedef void (ObjectPropertyRelease)(Object *obj,
337 typedef void (ObjectUnparent)(Object *ob
381 struct Object struct
[all...]
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromePageScript.js9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
21 a)});goog.defineClass=function(a,b){var c=b.constructor,d=b.statics;c&&c!=Object.prototype.constructor||(c=function(){throw Error("cannot instantiate an interface (no constructor defined).");});c=goog.defineClass.createSealingConstructor_(c);a&&goog.inherits(c,a);delete b.constructor;delete b.statics;goog.defineClass.applyProperties_(c.prototype,b);null!=d&&(d instanceof Function?d(c):goog.defineClass.applyProperties_(c,d));return c};goog.defineClass.SEAL_CLASS_INSTANCES=goog.DEBUG;
22 goog.defineClass.createSealingConstructor_=function(a){if(goog.defineClass.SEAL_CLASS_INSTANCES&&Object.seal instanceof Function){var b=function(){var c=a.apply(this,arguments)||this;this.constructor===b&&Object.seal(c);return c};return b}return a};goog.defineClass.OBJECT_PROTOTYPE_FIELDS_="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
23 goog.defineClass.applyProperties_=function(a,b){for(var c in b)Object.prototype.hasOwnProperty.call(b,c)&&(a[c]=b[c]);for(var d=0;d<goog.defineClass.OBJECT_PROTOTYPE_FIELDS_.length;d++)c=goog.defineClass.OBJECT_PROTOTYPE_FIELDS_[d],Object.prototype.hasOwnProperty.call(b,c)&&(a[c]=b[c])};goog.object={};goog.object.forEach=function(a,b,c){for(var d in a)b.call(c,a[d],d,a)};goog.object.filter=function(a,b,c){var d={},e;for(e in a)b.call(c,a[e],e,a)&&(d[e]=a[e]);return d};goog.object.map=function(a,b,c){var d={},e;for(e in a)d[e]=b.call(c,a[e],e,a);return d};goog.object.some=function(a,b,c){for(var d in a)if(b.call(c,a[d],d,a))return!0;return!1};goog.object.every=function(a,b,c){for(var d in a)if(!b.call(c,a[d],d,a))return!1;return!0}; class
28 goog.object.extend=function(a,b){for(var c,d,e=1;e<arguments.length;e++){d=arguments[e];for(c in d)a[c]=d[c];for(var f=0;f<goog.object.PROTOTYPE_FIELDS_.length;f++)c=goog.object.PROTOTYPE_FIELDS_[f],Object.prototype.hasOwnProperty.call(d,c)&&(a[c]=d[c])}};
30 goog.object.createImmutableView=function(a){var b=a;Object.isFrozen&&!Object
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h245 struct Object { struct in class:AddressMap
246 Object* next;
252 Object* allocated_; // List of allocated objects
258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T));
259 memset(ptr, 0, sizeof(Object) + num*sizeof(T));
260 Object* obj = reinterpret_cast<Object*>(ptr);
263 return reinterpret_cast<T*>(reinterpret_cast<Object*>(ptr) + 1);
281 for (Object* obj = allocated_; obj != NULL; /**/) {
282 Object* nex
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h245 struct Object { struct in class:AddressMap
246 Object* next;
252 Object* allocated_; // List of allocated objects
258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T));
259 memset(ptr, 0, sizeof(Object) + num*sizeof(T));
260 Object* obj = reinterpret_cast<Object*>(ptr);
263 return reinterpret_cast<T*>(reinterpret_cast<Object*>(ptr) + 1);
281 for (Object* obj = allocated_; obj != NULL; /**/) {
282 Object* nex
[all...]

Completed in 522 milliseconds

12345