HomeSort by relevance Sort by last modified time
    Searched refs:objects (Results 1 - 25 of 1686) 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...]
  /art/runtime/gc/collector/
object_byte_pair.h 28 : objects(num_objects), bytes(num_bytes) {}
30 objects += other.objects;
33 // Number of objects which were freed.
34 uint64_t objects; member in struct:art::gc::collector::ObjectBytePair
35 // Freed bytes are signed since the GC can free negative bytes if it promotes objects to a space
  /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...]
  /art/test/920-objects/src/art/
Test920.java 50 Object[] objects = new Object[] { local
59 int hashes[] = new int[objects.length];
61 for (int i = 0; i < objects.length; i++) {
62 hashes[i] = getObjectHashCode(objects[i]);
66 for (int i = 0; i < objects.length; i++) {
67 int ihash = System.identityHashCode(objects[i]);
69 throw new RuntimeException(objects[i] + ": " + hashes[i] + " vs " + ihash);
76 for (int i = 0; i < objects.length; i++) {
77 int newhash = getObjectHashCode(objects[i]);
79 throw new RuntimeException(objects[i] + ": " + hashes[i] + " vs " + newhash)
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenManager.java 51 private final ArrayList<BaseTween<?>> objects = new ArrayList<BaseTween<?>>(20); field in class:TweenManager
60 if (!objects.contains(object)) objects.add(object);
70 for (int i=0, n=objects.size(); i<n; i++) {
71 BaseTween<?> obj = objects.get(i);
82 for (int i=0, n=objects.size(); i<n; i++) {
83 BaseTween<?> obj = objects.get(i);
93 for (int i=0, n=objects.size(); i<n; i++) {
94 BaseTween<?> obj = objects.get(i);
104 for (int i=0, n=objects.size(); i<n; i++)
    [all...]
Pool.java 6 * A light pool of objects that can be resused to avoid allocation.
10 private final ArrayList<T> objects; field in class:Pool
16 this.objects = new ArrayList<T>(initCapacity);
23 obj = objects.isEmpty() ? create() : objects.remove(0);
33 if (!objects.contains(obj)) {
35 objects.add(obj);
40 objects.clear();
44 return objects.size();
48 objects.ensureCapacity(minCapacity)
    [all...]
  /build/kati/testcase/
filter-out.mk 0 objects=main1.o foo.o main2.o bar.o
6 echo $(filter-out $(mains),$(objects))
1 objects=main1.o foo.o main2.o bar.o macro
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
DefaultOsBackupImpl.java 27 private BackupInterface[] objects; field in class:DefaultOsBackupImpl
30 objects = new BackupInterface[OsBackupInterface.TAG_MAX + 1];
38 objects[tag] = (BackupInterface)obj;
42 * Return the tracked objects to subclasses.
45 return objects;
  /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;
  /external/flatbuffers/go/
doc.go 2 // objects.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollArrayAdapter.java 41 public ScrollArrayAdapter(Context context, int textViewResourceId, T[] objects) {
42 super(context, textViewResourceId, objects);
46 T[] objects) {
47 super(context, resource, textViewResourceId, objects);
51 public ScrollArrayAdapter(Context context, int textViewResourceId, List<T> objects) {
52 super(context, textViewResourceId, objects);
56 List<T> objects) {
57 super(context, resource, textViewResourceId, objects);
  /external/autotest/client/cros/
dbus_util.py 50 """Get objects that have a particular interface via a property manager.
58 None, we'll return only objects in the remote service whose
73 objects = dbus2primitive(object_manager.GetManagedObjects())
74 logging.debug('Saw objects %r', objects)
76 objects = [(path, interfaces)
77 for path, interfaces in objects.iteritems()
80 objects = [(path, interfaces)
81 for path, interfaces in objects
83 objects = dict(objects
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
TestViewDataSource.java 20 List<JSONObject> objects = super.handleJsonResult(result); local
21 for (JSONObject object : objects) {
24 return objects;
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
UnknownFieldSetLite.java 80 Object[] objects = Arrays.copyOf(first.objects, count); local
81 System.arraycopy(second.objects, 0, objects, first.count, second.count);
82 return new UnknownFieldSetLite(count, tags, objects, true /* isMutable */);
98 private Object[] objects; field in class:UnknownFieldSetLite
120 private UnknownFieldSetLite(int count, int[] tags, Object[] objects, boolean isMutable) {
123 this.objects = objects;
156 output.writeUInt64(fieldNumber, (Long) objects[i])
    [all...]
  /cts/apps/CameraITS/tests/scene0/
test_camera_properties.py 17 import its.objects
37 print "JPG sizes:", its.objects.get_available_output_sizes("jpg", props)
38 print "RAW sizes:", its.objects.get_available_output_sizes("raw", props)
39 print "YUV sizes:", its.objects.get_available_output_sizes("yuv", props)
  /cts/apps/CameraITS/tests/scene1/
test_latching.py 18 import its.objects
38 _,fmt = its.objects.get_fastest_manual_capture_settings(props)
47 its.objects.manual_capture_request(s, e, 0.0, True, props),
48 its.objects.manual_capture_request(s, e, 0.0, True, props),
49 its.objects.manual_capture_request(s*2,e, 0.0, True, props),
50 its.objects.manual_capture_request(s*2,e, 0.0, True, props),
51 its.objects.manual_capture_request(s, e, 0.0, True, props),
52 its.objects.manual_capture_request(s, e, 0.0, True, props),
53 its.objects.manual_capture_request(s, e*2, 0.0, True, props),
54 its.objects.manual_capture_request(s, e, 0.0, True, props)
    [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/llvm/utils/
findsym.pl 20 @objects = grep(/l?i?b?LLVM.*\.[oa]$/,sort(@files));
23 foreach $lib (@objects) {
  /external/swiftshader/third_party/LLVM/utils/
findsym.pl 20 @objects = grep(/l?i?b?LLVM.*\.[oa]$/,sort(@files));
23 foreach $lib (@objects) {
  /external/testng/src/test/java/test/dataprovider/
TestContextSampleTest.java 41 public void verifyTen(Object[] objects) {
42 Assert.assertEquals(objects.length, 10);
46 public void verifyFive(Object[] objects) {
47 Assert.assertEquals(objects.length, 5);
  /external/skia/bench/
GrMemoryPoolBench.cpp 33 * This benchmark creates and deletes objects in stack order
51 A* objects[kMaxObjects]; variable
68 delete objects[count-1];
71 objects[count] = new A;
76 delete objects[i];
95 * This benchmark creates objects and deletes them in random order
113 std::unique_ptr<B> objects[kMaxObjects]; variable
117 if (nullptr == objects[idx].get()) {
118 objects[idx].reset(new B);
120 objects[idx].reset()
158 C* objects[M]; variable
    [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;

Completed in 1528 milliseconds

1 2 3 4 5 6 7 8 91011>>