Searched defs:objects (Results 1 - 9 of 9) sorted by relevance

/external/v8/test/mjsunit/
H A Dfuzz-accessors.js58 var objects = [ variable
69 for (var i in objects) {
70 var obj = objects[i][0];
71 var chain = objects[i][1];
/external/guava/src/com/google/common/base/
H A DObjects.java39 * Determines whether two possibly-null objects are equal. Returns:
48 * <p>This assumes that any non-null objects passed to this function conform
70 public static int hashCode(Object... objects) { argument
71 return Arrays.hashCode(objects);
/external/chromium/base/
H A Dmessage_loop_unittest.cc180 // count on subsequent RecordRunTimeTask objects running at a future time,
1308 HANDLE objects[2] = { callback1_called.Get(), callback2_called.Get() }; local
1309 DWORD result = WaitForMultipleObjects(2, objects, TRUE, 1000);
/external/skia/src/core/
H A DSkPicturePlayback.cpp152 SkDebugf("playback size %zd (objects:%d) ", overallBytes, overall);
880 int objects = bitmaps(sizePtr); local
881 objects += paints(sizePtr);
882 objects += paths(sizePtr);
883 objects += pictures(sizePtr);
884 objects += regions(sizePtr);
886 return objects;
/external/v8/src/
H A Dmark-compact.cc95 // Save the count of marked objects remaining after the collection and
158 // objects (empty string, illegal builtin).
191 // Phase 1: tracing and marking live objects.
192 // before: all objects are in normal state.
195 // Marking all live objects in the heap as part of mark-sweep or mark-compact
196 // collection. Before marking, all objects are in their normal state. After
197 // marking, live objects' map pointers are marked indicating that the object
201 // overflow) traversal of the graph of objects reachable from the roots. It
204 // objects in the marking stack are the ones that have been reached and marked
208 // overflow flag. When the overflow flag is set, we continue marking objects
564 List<Object**>& objects = entry->objects_; local
[all...]
H A Dapi.cc555 // objects. To remind you about this there is no HandleScope in the
3463 void V8::AddObjectGroup(Persistent<Value>* objects, size_t length) { argument
3466 i::GlobalHandles::AddGroup(reinterpret_cast<i::Object***>(objects), length);
/external/dbus/dbus/
H A Ddbus-connection.c111 * The connection provides #DBusWatch and #DBusTimeout objects to
280 DBusObjectTree *objects; /**< Object path handlers registered with this connection */ member in struct:DBusConnection
1196 DBusObjectTree *objects; local
1205 objects = NULL;
1261 objects = _dbus_object_tree_new (connection);
1262 if (objects == NULL)
1276 connection->objects = objects;
1336 if (objects)
1337 _dbus_object_tree_unref (objects);
[all...]
/external/yaffs2/yaffs2/
H A Dyaffs_guts.h84 /* Some special object ids for pseudo objects */
403 __u8 renameAllowed:1; /* Some objects are not allowed to be renamed. */
422 struct list_head hashLink; /* list of objects in this hash bucket */
424 struct list_head hardLinks; /* all the equivalent hard linked objects */
476 yaffs_Object *objects; member in struct:yaffs_ObjectList_struct
692 __u32 *gcCleanupList; /* objects to delete at the end of a GC. */
732 yaffs_Object *deletedDir; /* Directory where deleted objects are sent to disappear. */
/external/webkit/WebCore/dom/
H A DDocument.cpp4225 PassRefPtr<HTMLCollection> Document::objects() function in class:WebCore::Document

Completed in 133 milliseconds