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

1 2 3 4 5 6 7 8 91011>>

  /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/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]; }
  /frameworks/base/tests/CoreTests/android/core/
HeapTest.java 49 private static void makeRefs(Object objects[], SoftReference<Object> refs[]) {
50 for (int i = 0; i < objects.length; i++) {
51 objects[i] = (Object) new byte[8 * 1024];
52 refs[i] = new SoftReference<Object>(objects[i]);
71 private static void clearRefs(Object objects[], int skip) {
72 for (int i = 0; i < objects.length; i += skip) {
73 objects[i] = null;
77 private static void clearRefs(Object objects[]) {
78 clearRefs(objects, 1);
81 private static <T> void checkRefs(T objects[], SoftReference<T> refs[])
98 Object objects[] = new Object[NUM_REFS]; local
141 Object objects[] = new Object[NUM_REFS]; local
202 Object objects[] = new Object[NUM_REFS]; local
314 Object objects[] = new Object[NUM_REFS]; local
371 FinalizableObject objects[] = new FinalizableObject[NUM_REFS]; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
String.java 23 import org.apache.xpath.objects.XObject;
24 import org.apache.xpath.objects.XString;
Gt.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Gte.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Lt.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
Lte.java 23 import org.apache.xpath.objects.XBoolean;
24 import org.apache.xpath.objects.XObject;
  /frameworks/base/core/java/com/android/internal/util/
Objects.java 24 public class Objects {
27 * Determines whether two possibly-null objects are equal. Returns:
36 * <p>This assumes that any non-null objects passed to this function conform
52 * return Objects.hashCode(getX(), getY(), getZ());
58 public static int hashCode(Object... objects) {
59 return Arrays.hashCode(objects);
  /external/webkit/Tools/DumpRenderTree/win/
GCControllerWin.cpp 58 UINT objects = 0;
59 collector->objectCount(&objects);
60 return objects;
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
VehicleTuning.java 32 package com.jme3.bullet.objects.infos;
  /external/llvm/utils/
findsym.pl 20 @objects = grep(/l?i?b?LLVM.*\.[oa]$/,sort(@files));
23 foreach $lib (@objects) {
  /external/openssl/crypto/evp/
e_dsa.c 62 #include <openssl/objects.h>
  /external/openssl/ssl/
d1_meth.c 61 #include <openssl/objects.h>
s3_meth.c 60 #include <openssl/objects.h>
  /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/apache-xml/src/main/java/org/apache/xpath/functions/
FuncBoolean.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
FuncCeiling.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncFalse.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
FuncFloor.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncNot.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;
FuncNumber.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncString.java 24 import org.apache.xpath.objects.XObject;
25 import org.apache.xpath.objects.XString;
FuncStringLength.java 24 import org.apache.xpath.objects.XNumber;
25 import org.apache.xpath.objects.XObject;
FuncTrue.java 24 import org.apache.xpath.objects.XBoolean;
25 import org.apache.xpath.objects.XObject;

Completed in 955 milliseconds

1 2 3 4 5 6 7 8 91011>>