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

12345

/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/chromium_org/ui/base/clipboard/
H A Dclipboard.cc45 // Mapping from threads to clipboard objects.
198 bool Clipboard::ReplaceSharedMemHandle(ObjectMap* objects, argument
204 for (ObjectMap::iterator iter = objects->begin(); iter != objects->end();
/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/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/dbus/
H A Dproperty_unittest.cc36 Property<std::vector<ObjectPath> > objects; member in struct:dbus::PropertyTest::Properties
47 RegisterProperty("Objects", &objects);
173 std::vector<ObjectPath> objects = properties_->objects.value(); local
174 ASSERT_EQ(1U, objects.size());
175 EXPECT_EQ(ObjectPath("/TestObjectPath"), objects[0]);
223 properties_->objects.Get(base::Bind(&PropertyTest::PropertyCallback,
229 std::vector<ObjectPath> objects = properties_->objects.value(); local
230 ASSERT_EQ(1U, objects
[all...]
H A Dobject_manager_unittest.cc38 Property<std::vector<ObjectPath> > objects; member in struct:dbus::ObjectManagerTest::Properties
47 RegisterProperty("Objects", &objects);
244 std::vector<ObjectPath> objects = properties->objects.value(); local
245 ASSERT_EQ(1U, objects.size());
246 EXPECT_EQ(ObjectPath("/TestObjectPath"), objects[0]);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInfo.h112 void setOutlineObjects(ListHashSet<RenderInline*>* objects) { m_outlineObjects = objects; } argument
/external/chromium_org/third_party/skia/bench/
H A DGrMemoryPoolBench.cpp31 * This benchmark creates and deletes objects in stack order
49 A* objects[kMaxObjects]; local
66 delete objects[count-1];
69 objects[count] = new A;
74 delete objects[i];
93 * This benchmark creates objects and deletes them in random order
111 SkAutoTDelete<B> objects[kMaxObjects]; local
115 if (NULL == objects[idx].get()) {
116 objects[idx].reset(new B);
118 objects[id
156 C* objects[M]; local
[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.cpp31 * This benchmark creates and deletes objects in stack order
49 A* objects[kMaxObjects]; local
66 delete objects[count-1];
69 objects[count] = new A;
74 delete objects[i];
93 * This benchmark creates objects and deletes them in random order
111 SkAutoTDelete<B> objects[kMaxObjects]; local
115 if (NULL == objects[idx].get()) {
116 objects[idx].reset(new B);
118 objects[id
156 C* 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
119 * override it to provide actual objects for testing.
121 * @return array of objects to be de/serialized in tests.
126 * Tests that data objects can be serialized and deserialized without
128 * objects.
141 * Tests that data objects can be deserialized from golden files, to verify
168 * Working method for files generation mode. Serializes test objects
485 verifyGolden(TestCase test, Object[] objects) argument
509 verifyGolden(TestCase test, Object[] objects, SerializableAssert comparator) argument
565 verifySelf(Object[] objects) argument
585 verifySelf(Object[] objects, SerializableAssert comparator) argument
[all...]
/external/chromium_org/content/browser/android/java/
H A Dgin_java_method_invocation_helper_unittest.cc125 base::ListValue objects; local
126 objects.AppendInteger(100);
127 objects.Append(GinJavaBridgeValue::CreateObjectIDValue(1).release());
131 objects.Append(sub_list);
135 objects.Append(sub_dict);
140 objects.Append(sub_list_with_dict);
145 objects.Append(sub_dict_with_list);
152 objects);
/external/chromium_org/content/browser/renderer_host/
H A Dclipboard_message_filter.cc29 void SanitizeObjectMap(ui::Clipboard::ObjectMap* objects, argument
32 objects->erase(ui::Clipboard::CBF_SMBITMAP);
35 objects->find(ui::Clipboard::CBF_DATA);
36 if (data_it != objects->end()) {
47 objects->erase(ui::Clipboard::CBF_DATA);
108 const ui::Clipboard::ObjectMap& objects,
119 new ui::Clipboard::ObjectMap(objects));
143 const ui::Clipboard::ObjectMap* objects) {
146 clipboard->WriteObjects(ui::CLIPBOARD_TYPE_COPY_PASTE, *objects);
150 const ui::Clipboard::ObjectMap& objects) {
107 OnWriteObjectsSync( const ui::Clipboard::ObjectMap& objects, base::SharedMemoryHandle bitmap_handle) argument
142 WriteObjectsOnUIThread( const ui::Clipboard::ObjectMap* objects) argument
149 OnWriteObjectsAsync( const ui::Clipboard::ObjectMap& objects) argument
[all...]
/external/chromium_org/content/renderer/
H A Drenderer_clipboard_client.cc27 virtual void WriteBitmapFromPixels(ui::Clipboard::ObjectMap* objects,
30 virtual void Flush(const ui::Clipboard::ObjectMap& objects) OVERRIDE;
46 ui::Clipboard::ObjectMap* objects,
83 (*objects)[ui::Clipboard::CBF_SMBITMAP] = params;
86 // Flushes the objects to the clipboard with an IPC.
88 const ui::Clipboard::ObjectMap& objects) {
91 new ClipboardHostMsg_WriteObjectsSync(objects, shared_buf_->handle()));
94 new ClipboardHostMsg_WriteObjectsAsync(objects));
45 WriteBitmapFromPixels( ui::Clipboard::ObjectMap* objects, const void* pixels, const gfx::Size& size) argument
87 Flush( const ui::Clipboard::ObjectMap& objects) argument
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
H A Dscene.js20 var objects = []; variable
23 for (var i = 0; i < objects.length; i++) {
24 scene.remove(objects[i]);
26 objects = [];
106 object.objectTableIndex = objects.length;
108 objects.push(object);
246 var intersects = ray.intersectObjects( objects );
/external/chromium_org/v8/src/
H A Dglobal-handles.h30 // the group is alive, all objects in the same group are considered alive.
34 // list of children objects. If the parent is alive, all the children are alive
41 objects = new Object**[length];
46 Object*** objects; member in struct:v8::internal::ObjectGroup
130 // Returns the current number of weak handles to global objects.
134 // Returns the current number of handles to global objects.
182 // guaranteed to contain all handles holding new space objects (but
183 // may also include old space objects).
196 // Iterate over objects in object groups that have at least one object
197 // which requires visiting. The callback has to return true if objects
[all...]
/external/eigen/unsupported/Eigen/src/BVH/
H A DKdBVH.h34 void operator()(const ObjectList &objects, BoxIter boxBegin, BoxIter boxEnd, VolumeList &outBoxes) argument
37 eigen_assert(outBoxes.size() == objects.size());
43 void operator()(const ObjectList &objects, int, int, VolumeList &outBoxes) argument
45 outBoxes.reserve(objects.size());
46 for(int i = 0; i < (int)objects.size(); ++i)
47 outBoxes.push_back(bounding_box(objects[i]));
63 * Given a sequence of objects, it computes their bounding boxes, constructs a Kd-tree of their centers
96 objects.clear();
100 objects.insert(objects
217 ObjectList objects; member in class:Eigen::KdBVH
[all...]

Completed in 805 milliseconds

12345