Searched defs:objects (Results 1 - 25 of 129) 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/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeSuggestionListAdapter.java24 DateTimeSuggestionListAdapter(Context context, List<DateTimeSuggestion> objects) { argument
25 super(context, R.layout.date_time_suggestion, objects);
/external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
H A DAutofillListAdapter.java31 ArrayList<AutofillSuggestion> objects,
33 super(context, R.layout.autofill_text, objects);
30 AutofillListAdapter(Context context, ArrayList<AutofillSuggestion> objects, Set<Integer> separators) argument
/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/platform/
H A DPODFreeListArenaTest.cpp96 // Make sure the arena runs constructors of the objects allocated within.
109 // Make sure the arena runs constructors of the objects allocated within.
112 std::set<TestClass1*> objects; local
121 objects.insert(tc1);
123 for (std::set<TestClass1*>::iterator it = objects.begin(); it != objects.end(); ++it) {
128 EXPECT_TRUE(objects.find(cur) != objects.end());
134 objects.erase(cur);
141 std::vector<TestClass1*> objects; local
155 std::set<TestClass2*> objects; local
[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]),

Completed in 719 milliseconds

123456