/external/chromium_org/v8/test/mjsunit/ |
H A D | fuzz-accessors.js | 58 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 D | RemoteObjectDefMessage.java | 45 public ObjectDef[] objects; field in class:RemoteObjectDefMessage 55 for (ObjectDef def : objects){
|
/external/v8/test/mjsunit/ |
H A D | fuzz-accessors.js | 58 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 D | XBooleanStatic.java | 21 package org.apache.xpath.objects; 50 * Tell if two objects are functionally equal. 54 * @return True if the two objects are equal
|
H A D | XObjectFactory.java | 21 package org.apache.xpath.objects;
|
H A D | XMLStringFactoryImpl.java | 21 package org.apache.xpath.objects;
|
H A D | XNodeSetForDOM.java | 21 package org.apache.xpath.objects;
|
H A D | XNull.java | 21 package org.apache.xpath.objects; 120 * Tell if two objects are functionally equal.
|
H A D | DTMXRTreeFrag.java | 19 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 D | XBoolean.java | 21 package org.apache.xpath.objects; 141 * Tell if two objects are functionally equal. 145 * @return True if the two objects are equal
|
H A D | XRTreeFragSelectWrapper.java | 21 package org.apache.xpath.objects; 57 * For support of literal objects in xpaths.
|
H A D | XNumber.java | 21 package org.apache.xpath.objects; 385 * Tell if two objects are functionally equal. 389 * @return true if the two objects are equal
|
H A D | XStringForChars.java | 21 package org.apache.xpath.objects;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
H A D | thread_dealloc_unittest.cc | 44 // 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 D | thread_dealloc_unittest.cc | 44 // 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 D | 2007-04-05-PadBeforeZeroLengthField.c | 6 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 D | AutofillListAdapter.java | 27 AutofillListAdapter(Context context, ArrayList<AutofillSuggestion> objects) { argument 28 super(context, R.layout.autofill_text, objects);
|
/external/chromium_org/v8/test/mjsunit/tools/ |
H A D | profviz.js | 70 var objects = psc.assembleOutput(output); variable 74 output("# objects: " + objects);
|
/external/javassist/src/main/javassist/bytecode/ |
H A D | LongVector.java | 22 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 D | VehicleTuning.java | 32 package com.jme3.bullet.objects.infos;
|
/external/junit/src/org/junit/ |
H A D | Assume.java | 43 * 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 D | PODFreeListArenaTest.cpp | 96 // 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 D | ConstructorInjection.java | 70 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 D | make_simple.py | 203 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 D | u_handle_table.c | 49 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...] |