HomeSort by relevance Sort by last modified time
    Searched refs:objects (Results 1 - 25 of 1218) 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/chromium_org/tools/telemetry/telemetry/core/heap/
chrome_js_heap_snapshot_parser_unittest.py 34 objects = list(chrome_js_heap_snapshot_parser.ChromeJsHeapSnapshotParser(
36 self.assertEqual(2, len(objects))
37 if objects[0].edges_from:
43 self.assertEqual('node1', objects[from_ix].class_name)
44 self.assertEqual('node2', objects[to_ix].class_name)
45 self.assertEqual(1, len(objects[from_ix].edges_from))
46 self.assertEqual(0, len(objects[from_ix].edges_to))
47 self.assertEqual(0, len(objects[to_ix].edges_from))
48 self.assertEqual(1, len(objects[to_ix].edges_to))
50 objects[from_ix].edges_from[0].from_object.class_name
    [all...]
  /external/chromium_org/v8/test/webkit/
reentrant-caching.js 28 var objects = [{prop:1}, {get prop(){return 2}}];
38 g(objects[++j]);
45 objects.push(o);
48 g(objects[0]);
49 g(objects[1]);
50 g(objects[2]);
51 g(objects[3]);
56 var objects = [Object.create({prop:1}), Object.create({get prop(){return 2}})];
64 g(objects[++j]);
73 objects.push(o)
    [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;
  /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);
  /pdk/apps/CameraITS/tests/
test_latching.py 17 import its.objects namespace
43 its.objects.manual_capture_request(s, e ),
44 its.objects.manual_capture_request(s, e ),
45 its.objects.manual_capture_request(s*4,e ),
46 its.objects.manual_capture_request(s*4,e ),
47 its.objects.manual_capture_request(s, e ),
48 its.objects.manual_capture_request(s, e ),
49 its.objects.manual_capture_request(s, e*4),
50 its.objects.manual_capture_request(s, e ),
51 its.objects.manual_capture_request(s*4,e )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PODFreeListArenaTest.cpp 96 // 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...]
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
StableArrayAdapter.java 31 public StableArrayAdapter(Context context, int textViewResourceId, List<String> objects) {
32 super(context, textViewResourceId, objects);
33 for (int i = 0; i < objects.size(); ++i) {
34 mIdMap.put(objects.get(i), i);
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
e_dsa.c 62 #include <openssl/objects.h>
  /external/chromium_org/third_party/openssl/openssl/ssl/
d1_meth.c 61 #include <openssl/objects.h>
s3_meth.c 60 #include <openssl/objects.h>
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
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/
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/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 31 * This benchmark creates and deletes objects in stack order
49 A* objects[kMaxObjects]; local
66 delete objects[count-1];
69 objects[count] = new A;
74 delete objects[i];
83 * This benchmark creates objects and deletes them in random order
101 SkAutoTDelete<A> objects[kMaxObjects]; local
105 if (NULL == objects[idx].get()) {
106 objects[idx].reset(new A);
108 objects[idx].free()
136 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;

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>