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

123456

/external/chromium_org/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/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DRemoteObjectDefMessage.java45 public ObjectDef[] objects; field in class:RemoteObjectDefMessage
55 for (ObjectDef def : objects){
/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/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBooleanStatic.java21 package org.apache.xpath.objects;
50 * Tell if two objects are functionally equal.
54 * @return True if the two objects are equal
H A DXObjectFactory.java21 package org.apache.xpath.objects;
H A DXMLStringFactoryImpl.java21 package org.apache.xpath.objects;
H A DXNodeSetForDOM.java21 package org.apache.xpath.objects;
H A DXNull.java21 package org.apache.xpath.objects;
120 * Tell if two objects are functionally equal.
H A DDTMXRTreeFrag.java19 package org.apache.xpath.objects;
27 * Simple wrapper to DTM and XPathContext objects.
28 * Used in XRTreeFrag for caching references to the objects.
H A DXBoolean.java21 package org.apache.xpath.objects;
141 * Tell if two objects are functionally equal.
145 * @return True if the two objects are equal
H A DXRTreeFragSelectWrapper.java21 package org.apache.xpath.objects;
57 * For support of literal objects in xpaths.
H A DXNumber.java21 package org.apache.xpath.objects;
385 * Tell if two objects are functionally equal.
389 * @return true if the two objects are equal
H A DXStringForChars.java21 package org.apache.xpath.objects;
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dthread_dealloc_unittest.cc44 // Size/number of objects to allocate per thread (1 MB per thread)
53 void** objects = new void*[kNumObjects]; local
55 objects[i] = malloc(kObjectSize);
58 free(objects[i]);
60 delete[] objects;
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dthread_dealloc_unittest.cc44 // Size/number of objects to allocate per thread (1 MB per thread)
53 void** objects = new void*[kNumObjects]; local
55 objects[i] = malloc(kObjectSize);
58 free(objects[i]);
60 delete[] objects;
/external/clang/test/CodeGen/
H A D2007-04-05-PadBeforeZeroLengthField.c6 union A objects[]; member in struct:B
8 void foo(union A * objects, struct B *array, unsigned long k) argument
9 { array->objects[k] = objects[k]; }
/external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
H A DAutofillListAdapter.java27 AutofillListAdapter(Context context, ArrayList<AutofillSuggestion> objects) { argument
28 super(context, R.layout.autofill_text, objects);
/external/chromium_org/v8/test/mjsunit/tools/
H A Dprofviz.js70 var objects = psc.assembleOutput(output); variable
74 output("# objects: " + objects);
/external/javassist/src/main/javassist/bytecode/
H A DLongVector.java22 private ConstInfo[][] objects; field in class:LongVector
26 objects = new ConstInfo[VSIZE][];
32 objects = new ConstInfo[vsize][];
38 public int capacity() { return objects.length * ASIZE; }
44 return objects[i >> ABITS][i & (ASIZE - 1)];
50 int len = objects.length;
53 System.arraycopy(objects, 0, newObj, 0, len);
54 objects = newObj;
57 if (objects[nth] == null)
58 objects[nt
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
H A DVehicleTuning.java32 package com.jme3.bullet.objects.infos;
/external/junit/src/org/junit/
H A DAssume.java43 * If called with one or more null elements in <code>objects</code>, the test will halt and be ignored.
44 * @param objects
46 public static void assumeNotNull(Object... objects) { argument
47 assumeThat(asList(objects), Each.each(notNullValue()));
/external/chromium_org/third_party/WebKit/Source/core/tests/
H A DPODFreeListArenaTest.cpp96 // Make sure the arena runs constructors of the objects allocated within.
112 std::vector<TestClass1*> objects; local
115 objects.push_back(arena->allocateObject());
117 for (std::vector<TestClass1*>::iterator it = objects.begin(); it != objects.end(); ++it) {
126 std::set<TestClass2*> objects; local
129 objects.insert(arena->allocateObject());
131 for (std::set<TestClass2*>::iterator it = objects.begin(); it != objects.end(); ++it) {
136 EXPECT_TRUE(objects
[all...]
/external/mockito/src/org/mockito/internal/configuration/injection/
H A DConstructorInjection.java70 final Set<Object> objects; field in class:ConstructorInjection.SimpleArgumentResolver
72 public SimpleArgumentResolver(Set<Object> objects) { argument
73 this.objects = objects;
85 for (Object object : objects) {
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dmake_simple.py203 objects = [os.path.splitext(src)[0] for src in sources] variable
204 objects = [obj + '.o' for obj in objects] variable
247 'objs': MakeList(["%s/%s" % (builddir, obj) for obj in objects]),
/external/chromium_org/third_party/mesa/src/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...]

Completed in 639 milliseconds

123456