Searched defs:objects (Results 26 - 50 of 127) sorted by relevance

123456

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dspan.h49 void* objects; // Linked list of free objects member in struct:tcmalloc::Span
50 unsigned int refcount : 16; // Number of non-free objects
51 unsigned int sizeclass : 8; // Size-class for small objects (or 0)
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dspan.h49 void* objects; // Linked list of free objects member in struct:tcmalloc::Span
50 unsigned int refcount : 16; // Number of non-free objects
51 unsigned int sizeclass : 8; // Size-class for small objects (or 0)
/external/guava/guava/src/com/google/common/base/
H A DObjects.java38 * Determines whether two possibly-null objects are equal. Returns:
47 * <p>This assumes that any non-null objects passed to this function conform
69 public static int hashCode(@Nullable Object... objects) { argument
70 return Arrays.hashCode(objects);
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DOutputCapsule.java114 public void write(Savable[] objects, String name, Savable[] defVal) throws IOException; argument
115 public void write(Savable[][] objects, String name, Savable[][] defVal) throws IOException; argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_handle_table.c49 void **objects; member in struct:handle_table
51 /** Number of objects the handle can currently hold */
53 /** Number of consecutive objects allocated at the start of the table */
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
114 new_objects = (void **)REALLOC((void *)ht->objects,
123 ht->objects = new_objects;
141 object = ht->objects[index];
143 ht->objects[index] = NULL;
165 if(!ht->objects[h
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFrag.java21 package org.apache.xpath.objects;
247 * Tell if two objects are functionally equal.
251 * @return True if the two objects are equal
H A DXNodeSet.java21 package org.apache.xpath.objects;
42 * Default constructor for derived objects.
221 return org.apache.xpath.objects.XString.EMPTYSTRING;
484 // If both objects to be compared are node-sets, then the comparison
693 * Tell if two objects are functionally equal.
714 * Tell if two objects are functionally not equal.
H A DXString.java21 package org.apache.xpath.objects;
283 * Tell if two objects are functionally equal.
287 * @return true if the two objects are equal
317 // Otherwise, both objects to be compared are converted to strings as
H A DXStringForFSB.java21 package org.apache.xpath.objects;
323 * Tell if two objects are functionally equal.
327 * @return true if the two objects are equal
368 * Tell if two objects are functionally equal.
372 * @return true if the two objects are equal
/external/chromium_org/content/renderer/media/
H A Drenderer_gpu_video_decoder_factories.cc84 base::WaitableEvent* objects[] = {&aborted_waiter_, local
86 if (base::WaitableEvent::WaitMany(objects, arraysize(objects)) == 0) {
128 base::WaitableEvent* objects[] = {&aborted_waiter_, local
130 if (base::WaitableEvent::WaitMany(objects, arraysize(objects)) == 0)
208 base::WaitableEvent* objects[] = {&aborted_waiter_, local
210 base::WaitableEvent::WaitMany(objects, arraysize(objects));
238 base::WaitableEvent* objects[] local
292 base::WaitableEvent* objects[] = {&aborted_waiter_, local
[all...]
/external/chromium_org/dbus/
H A Dobject_manager_unittest.cc37 Property<std::vector<ObjectPath> > objects; member in struct:dbus::ObjectManagerTest::Properties
46 RegisterProperty("Objects", &objects);
213 std::vector<ObjectPath> objects = properties->objects.value(); local
214 ASSERT_EQ(1U, objects.size());
215 EXPECT_EQ(ObjectPath("/TestObjectPath"), objects[0]);
H A Dproperty_unittest.cc35 Property<std::vector<ObjectPath> > objects; member in struct:dbus::PropertyTest::Properties
45 RegisterProperty("Objects", &objects);
166 std::vector<ObjectPath> objects = properties_->objects.value(); local
167 ASSERT_EQ(1U, objects.size());
168 EXPECT_EQ(ObjectPath("/TestObjectPath"), objects[0]);
209 properties_->objects.Get(base::Bind(&PropertyTest::PropertyCallback,
215 std::vector<ObjectPath> objects = properties_->objects.value(); local
216 ASSERT_EQ(1U, objects
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkJSON.h240 Object* const* objects() const { function in class:SkJSON::Array
/external/chromium_org/ui/base/clipboard/
H A Dclipboard.cc86 // Mapping from threads to clipboard objects.
230 void Clipboard::ReplaceSharedMemHandle(ObjectMap* objects, argument
236 for (ObjectMap::iterator iter = objects->begin(); iter != objects->end();
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
H A DObjectHelper.java32 package com.jme3.scene.plugins.blender.objects;
289 * @return objects transformation relative to its parent
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
H A DRigidBodyMotionState.java32 package com.jme3.bullet.objects.infos;
34 import com.jme3.bullet.objects.PhysicsVehicle;
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/infos/
H A DRigidBodyMotionState.java32 package com.jme3.bullet.objects.infos;
36 import com.jme3.bullet.objects.PhysicsVehicle;
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMOutputCapsule.java504 public void write(Savable[] objects, String name, Savable[] defVal) throws IOException { argument
505 if (objects == null) {
508 if (Arrays.equals(objects, defVal)) {
514 el.setAttribute("size", String.valueOf(objects.length));
515 for (int i = 0; i < objects.length; i++) {
516 Savable o = objects[i];
571 public void writeSavableArrayListArray(ArrayList[] objects, String name, ArrayList[] defVal) throws IOException { argument
572 if (objects == null) {return;}
573 if (Arrays.equals(objects, defVal)) {return;}
577 el.setAttribute(XMLExporter.ATTRIBUTE_SIZE, String.valueOf(objects
[all...]
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsSafeSet.java149 public static HashCodeAndEqualsSafeSet of(Iterable<Object> objects) { argument
151 if (objects != null) {
152 for (Object mock : objects) {
/external/replicaisland/src/com/replica/replicaisland/
H A DRenderSystem.java21 * Manages a double-buffered queue of renderable objects. The game thread submits drawable objects
61 private void clearQueue(FixedSizeArray<BaseObject> objects) { argument
62 final int count = objects.getCount();
63 final Object[] objectArray = objects.getArray();
68 objects.removeLast();
82 FixedSizeArray<BaseObject> objects = mRenderQueues[lastQueue].getObjects();
83 clearQueue(objects);
93 FixedSizeArray<BaseObject> objects = mRenderQueues[x].getObjects();
94 clearQueue(objects);
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowArrayAdapter.java58 public void __constructor__(Context context, int textViewResourceId, T[] objects) { argument
59 init(context, textViewResourceId, 0, Arrays.asList(objects));
62 public void __constructor__(Context context, int resource, int textViewResourceId, T[] objects) { argument
63 init(context, resource, textViewResourceId, Arrays.asList(objects));
66 public void __constructor__(Context context, int textViewResourceId, List<T> objects) { argument
67 init(context, textViewResourceId, 0, objects);
70 public void __constructor__(Context context, int resource, int textViewResourceId, List<T> objects) { argument
71 init(context, resource, textViewResourceId, objects);
74 private void init(Context context, int resource, int textViewResourceId, List<T> objects) { argument
76 this.list = objects;
[all...]
/external/skia/bench/
H A DGrMemoryPoolBench.cpp34 * This benchmark creates and deletes objects in stack order
54 A* objects[kMaxObjects]; local
73 delete objects[count-1];
76 objects[count] = new A;
81 delete objects[i];
90 * This benchmark creates objects and deletes them in random order
110 SkAutoTDelete<A> objects[kMaxObjects]; local
114 if (NULL == objects[idx].get()) {
115 objects[idx].reset(new A);
117 objects[id
145 A* objects[M]; local
[all...]
/external/skia/include/utils/
H A DSkJSON.h240 Object* const* objects() const { function in class:SkJSON::Array
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java49 * returns array of objects to be de/serialized in tests, and the second
50 * compares reference and deserialized objects (needed only if tested objects do
59 * serialized objects. This mode should be run on a pure
120 * override it to provide actual objects for testing.
122 * @return array of objects to be de/serialized in tests.
127 * Tests that data objects can be serialized and deserialized without
129 * objects.
142 * Tests that data objects can be deserialized from golden files, to verify
169 * Working method for files generation mode. Serializes test objects
488 verifyGolden(TestCase test, Object[] objects) argument
513 verifyGolden(TestCase test, Object[] objects, SerializableAssert comparator) argument
569 verifySelf(Object[] objects) argument
589 verifySelf(Object[] objects, SerializableAssert comparator) argument
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Dclipboard_message_filter.cc28 void WriteObjectsOnUIThread(ui::Clipboard::ObjectMap* objects) { argument
31 clipboard->WriteObjects(ui::Clipboard::BUFFER_STANDARD, *objects);
93 ui::Clipboard::ObjectMap objects,
98 ui::Clipboard::ReplaceSharedMemHandle(&objects, bitmap_handle, PeerHandle());
105 long_living_objects->swap(objects);
112 GetClipboard()->WriteObjects(ui::Clipboard::BUFFER_STANDARD, objects);
117 const ui::Clipboard::ObjectMap& objects) {
123 new ui::Clipboard::ObjectMap(objects);
134 GetClipboard()->WriteObjects(ui::Clipboard::BUFFER_STANDARD, objects);
92 OnWriteObjectsSync( ui::Clipboard::ObjectMap objects, base::SharedMemoryHandle bitmap_handle) argument
116 OnWriteObjectsAsync( const ui::Clipboard::ObjectMap& objects) argument

Completed in 836 milliseconds

123456