HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /external/giflib/
gifalloc.c 32 Color map object functions
42 ColorMapObject *Object;
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
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
GcFinalization.java 56 * Object x = new MyClass() {
67 * final WeakHashMap<Object, Object> map = new WeakHashMap<Object, Object>();
68 * map.put(new Object(), Boolean.TRUE);
91 * 10 seconds ought to be long enough for any object to be GC'ed and finalized. Unless we have a
175 * Creates a garbage object that counts down the latch in its finalizer. Sequestered into a
179 new Object() { @Override protected void finalize() { latch.countDown(); }};
  /external/llvm/lib/Object/
COFFYAML.cpp 14 #include "llvm/Object/COFFYAML.h"
22 Object::Object() { memset(&Header, 0, sizeof(COFF::header)); }
388 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) {
  /external/pdfium/core/include/fpdfdoc/
fpdf_tagged.h 36 Object
  /libcore/luni/src/test/java/libcore/java/util/
ResourceLeakageDetectorTest.java 56 * Private method to ensure that the CloseGuard object is garbage collected.
60 new Object() {
  /external/chromium_org/dbus/
object_manager.cc 23 ObjectManager::Object::Object()
27 ObjectManager::Object::~Object() {
60 // Clean up Object structures
63 Object* object = iter->second; local
65 for (Object::PropertiesMap::iterator piter = object->properties_map.begin();
66 piter != object->properties_map.end(); ++piter)
102 Object* object = oiter->second; local
445 Object* object; local
511 Object* object = tmp->second; local
    [all...]
object_manager.h 15 // Newer D-Bus services implement the Object Manager interface to inform other
23 // simplifying implementation, since there tends to be a single object manager
54 // The link between the implementation class and the object manager is set up
56 // a pointer to its object manager for use in other methods and establish
74 // The object manager interface class has one abstract method that must be
97 // to connect signals or obtain the initial values of properties. The object
102 // interface or from the Object Manager interface. You may also wish to
106 // When your class needs an object proxy for a given object path, it may
107 // obtain it from the object manager. Unlike the equivalent method on the bu
    [all...]
  /external/chromium_org/v8/test/webkit/
for-in-cached.js 36 Object.prototype.y = 2;
38 delete Object.prototype.y;
  /external/chromium_org/v8/test/cctest/
test-alloc.cc 53 Object* object = heap->AllocateJSObject( local
55 heap->CopyJSObject(JSObject::cast(object)).ToObjectChecked();
65 // Large object space.
93 static Handle<Object> Test() {
94 CALL_HEAP_FUNCTION(CcTest::i_isolate(), AllocateAfterFailures(), Object);
102 Handle<Object> o = Test();
159 // Add the Foo constructor the global object.
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 59 * \param _Object The object type that lives in the hierarchy. It must have value semantics. Either bounding_box(_Object) must
71 typedef _Object Object;
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. *
    [all...]
  /external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
ObjectContainerBSDArchive.h 100 struct Object
102 Object();
116 lldb::offset_t ar_file_offset; // file offset in bytes from the beginning of the file of the object data
117 lldb::offset_t ar_file_size; // length of the object data
119 typedef std::vector<Object> collection;
162 const Object *
173 Object *
218 Object::collection m_objects;
220 lldb_private::DataExtractor m_data; ///< The data for this object container so we don't lose data if the .a files gets modified
ObjectContainerBSDArchive.cpp 29 ObjectContainerBSDArchive::Object::Object() :
42 ObjectContainerBSDArchive::Object::Clear()
55 ObjectContainerBSDArchive::Object::Extract (const DataExtractor& data, lldb::offset_t offset)
70 // Strip off any spaces (if the object file name contains spaces it
134 Object obj;
148 // Now sort all of the object name pointers
154 ObjectContainerBSDArchive::Object *
209 // the object info which consists of file time info and also the
292 return "BSD Archive object container reader."
474 Object *object = m_archive_sp->FindObject (module_sp->GetObjectName(), local
541 const Object *object = archive_sp->GetObjectAtIndex (idx); local
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 72 struct Object {
76 Object();
184 struct MappingTraits<COFFYAML::Object> {
185 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /external/skia/include/utils/
SkJSON.h 29 class Object {
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);
80 * Return the number of slots/fields in this object. These can be
89 bool findObject(const char name[], Object** = NULL) const
    [all...]
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 35 Object,
  /libcore/luni/src/test/java/libcore/java/lang/
ClassTest.java 45 assertNull(Object.class.getGenericSuperclass());
51 assertSame(Object.class, (new Integer[0]).getClass().getGenericSuperclass());
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 32 fail("object not yet finalized");
80 assertTrue("object whose constructor threw was not finalized", ConstructionFails.finalized);
96 * The finalizer watch dog exits the VM if any object takes more than 10 s
111 new Object() {
134 new Object() {
  /art/test/031-class-attributes/src/
ClassAttrs.java 61 showModifiers(Object.class);
62 showModifiers(Object[].class);
149 // Can assign any reference to java.lang.Object.
150 assertTrue(Object.class.isAssignableFrom(Object.class));
151 assertTrue(Object.class.isAssignableFrom(Class.class));
152 assertTrue(Object.class.isAssignableFrom(String.class));
153 assertFalse(Object.class.isAssignableFrom(int.class));
154 assertFalse(Object.class.isAssignableFrom(long.class));
158 assertFalse(CharSequence.class.isAssignableFrom(Object.class))
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
addressmap-inl.h 208 // Find cluster object for specified address. If not found
209 // and "create" is true, create the object. If not found
245 struct Object {
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)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
addressmap-inl.h 208 // Find cluster object for specified address. If not found
209 // and "create" is true, create the object. If not found
245 struct Object {
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)
    [all...]
  /external/chromium_org/v8/src/
runtime.js 21 var $Object = global.Object;
64 // y is object.
70 // x is an object.
342 // If V is not an object, return false.
353 // Get the prototype of F; if it is not an object, throw an error.
364 // Filter a given key against an object by checking if the object
450 // Convert the receiver to an object - forward to ToObject.
607 // Returns if the given x is a primitive value - not an object or
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies.js 44 // 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.prototype.hasOwnProperty.call(o, "p_nonwritable")
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 24 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/
JSONCompilationDatabase.cpp 140 // This anchor is used to force the linker to link in the generated object file
249 llvm::yaml::MappingNode *Object = dyn_cast<llvm::yaml::MappingNode>(&*AI);
250 if (!Object) {
251 ErrorMessage = "Expected object.";
257 for (llvm::yaml::MappingNode::iterator KVI = Object->begin(),
258 KVE = Object->end();
  /external/deqp/framework/common/
tcuThreadUtil.hpp 40 // Event object for synchronizing threads
69 class Object
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);
    [all...]

Completed in 1641 milliseconds

1 23 4 5 6