HomeSort by relevance Sort by last modified time
    Searched defs:objects (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /external/v8/test/mjsunit/
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/
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
XMLStringFactoryImpl.java 21 package org.apache.xpath.objects;
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.
XNodeSetForDOM.java 21 package org.apache.xpath.objects;
XNull.java 21 package org.apache.xpath.objects;
120 * Tell if two objects are functionally equal.
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
XObjectFactory.java 21 package org.apache.xpath.objects;
XRTreeFragSelectWrapper.java 21 package org.apache.xpath.objects;
57 * For support of literal objects in xpaths.
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
XRTreeFrag.java 21 package org.apache.xpath.objects;
247 * Tell if two objects are functionally equal.
251 * @return True if the two objects are equal
  /external/clang/test/CodeGen/
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)
9 { array->objects[k] = objects[k]; }
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RemoteObjectDefMessage.java 45 public ObjectDef[] objects; field in class:RemoteObjectDefMessage
55 for (ObjectDef def : objects){
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
StableArrayAdapter.java 33 List<String> objects, View.OnTouchListener listener) {
34 super(context, textViewResourceId, objects);
36 for (int i = 0; i < objects.size(); ++i) {
37 mIdMap.put(objects.get(i), i);
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
StableArrayAdapter.java 33 List<String> objects, View.OnTouchListener listener) {
34 super(context, textViewResourceId, objects);
36 for (int i = 0; i < objects.size(); ++i) {
37 mIdMap.put(objects.get(i), i);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
VehicleTuning.java 32 package com.jme3.bullet.objects.infos;
  /libcore/support/src/test/java/tests/support/
Support_MessageFormat.java 52 Object[] objects = new Object[] { hamburgers, new Double(3.5), local
58 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15);
61 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0,
63 t_FormatWithField(3, format, objects, null,
67 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0);
68 t_FormatWithField(5, format, objects, null,
79 Object[] objects = new Object[] { hamburgers, new Double(3.5), local
82 t_Format(1, objects, format, getMessageVector1());
  /external/javassist/src/main/javassist/bytecode/
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[nth] = new ConstInfo[ASIZE]
    [all...]
  /external/mockito/src/org/mockito/internal/configuration/injection/
ConstructorInjection.java 70 final Set<Object> objects; field in class:ConstructorInjection.SimpleArgumentResolver
72 public SimpleArgumentResolver(Set<Object> objects) {
73 this.objects = objects;
85 for (Object object : objects) {
  /development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/
ListViewAnimations.java 114 List<String> objects) {
115 super(context, textViewResourceId, objects);
116 for (int i = 0; i < objects.size(); ++i) {
117 mIdMap.put(objects.get(i), i);
  /development/samples/devbytes/ui/ListViewDeletion/src/com/example/android/listviewdeletion/
ListViewDeletion.java 155 List<String> objects) {
156 super(context, textViewResourceId, objects);
157 for (int i = 0; i < objects.size(); ++i) {
158 mIdMap.put(objects.get(i), i);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_MessageFormat.java 53 Object[] objects = new Object[] { hamburgers, new Double(3.5), local
59 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15);
62 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0,
64 t_FormatWithField(3, format, objects, null,
68 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0);
69 t_FormatWithField(5, format, objects, null,
80 Object[] objects = new Object[] { hamburgers, new Double(3.5), local
83 t_Format(1, objects, format, getMessageVector1());
  /external/skia/bench/
GrMemoryPoolBench.cpp 34 * 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 SkTScopedPtr<A> objects[kMaxObjects]; local
114 if (NULL == objects[idx].get()) {
115 objects[idx].reset(new A);
117 objects[idx].reset(NULL)
145 A* objects[M]; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GameObjectManager.java 23 * GameObjectManager moves the objects it manages in and out of the active list (that is,
25 * based on the distance of that object to the camera. Objects may specify an "activation radius"
27 * which objects should receive processing time and which should be ignored. Objects that do not
29 * they only need processing when they are visible. Objects that move around will probably need
82 FixedSizeArray<BaseObject> objects = getObjects(); local
83 final int count = objects.getCount();
86 final Object[] objectArray = objects.getArray();
98 objects.swapWithLast(i);
99 objects.removeLast()
159 FixedSizeArray<BaseObject> objects = getObjects(); local
    [all...]
RenderSystem.java 21 * Manages a double-buffered queue of renderable objects. The game thread submits drawable objects
61 private void clearQueue(FixedSizeArray<BaseObject> objects) {
62 final int count = objects.getCount();
63 final Object[] objectArray = objects.getArray();
68 objects.removeLast();
82 FixedSizeArray<BaseObject> objects = mRenderQueues[lastQueue].getObjects(); local
83 clearQueue(objects);
93 FixedSizeArray<BaseObject> objects = mRenderQueues[x].getObjects(); local
94 clearQueue(objects);
    [all...]

Completed in 1439 milliseconds

1 2 3 4 5 6 7