HomeSort by relevance Sort by last modified time
    Searched refs:objects (Results 51 - 75 of 716) sorted by null

1 23 4 5 6 7 8 91011>>

  /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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowArrayAdapter.java 58 public void __constructor__(Context context, int textViewResourceId, T[] objects) {
59 init(context, textViewResourceId, 0, Arrays.asList(objects));
62 public void __constructor__(Context context, int resource, int textViewResourceId, T[] objects) {
63 init(context, resource, textViewResourceId, Arrays.asList(objects));
66 public void __constructor__(Context context, int textViewResourceId, List<T> objects) {
67 init(context, textViewResourceId, 0, objects);
70 public void __constructor__(Context context, int resource, int textViewResourceId, List<T> objects) {
71 init(context, resource, textViewResourceId, objects);
74 private void init(Context context, int resource, int textViewResourceId, List<T> objects) {
76 this.list = objects;
    [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) {
  /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/apache-xml/src/main/java/org/apache/xpath/functions/
FuncContains.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
FuncDoclocation.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
FuncLocalPart.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
FuncQname.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
FuncSubstringAfter.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
FuncSum.java 27 import org.apache.xpath.objects.XNumber;
28 import org.apache.xpath.objects.XObject;
FuncUnparsedEntityURI.java 25 import org.apache.xpath.objects.XObject;
26 import org.apache.xpath.objects.XString;
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
And.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
41 * {@link org.apache.xpath.objects.XBoolean#S_FALSE}.
Equals.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
Or.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
41 * {@link org.apache.xpath.objects.XBoolean#S_FALSE}.
VariableSafeAbsRef.java 26 import org.apache.xpath.objects.XNodeSet;
27 import org.apache.xpath.objects.XObject;
  /external/clang/test/CodeGenObjC/Inputs/
literal-support.h 28 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
32 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
  /external/clang/test/CodeGenObjCXX/Inputs/
literal-support.h 28 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
32 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
  /external/junit/src/org/junit/
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) {
47 assumeThat(asList(objects), Each.each(notNullValue()));
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureBase.java 33 protected Boolean doInBackground(TextureBase... objects) {
34 TextureBase tex = objects[0];
  /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/apache-xml/src/main/java/org/apache/xpath/objects/
XNull.java 21 package org.apache.xpath.objects;
120 * Tell if two objects are functionally equal.
  /external/openssl/crypto/evp/
m_null.c 62 #include <openssl/objects.h>
  /external/openssl/ssl/
s23_meth.c 60 #include <openssl/objects.h>
t1_meth.c 60 #include <openssl/objects.h>

Completed in 1438 milliseconds

1 23 4 5 6 7 8 91011>>