/external/javassist/src/main/javassist/bytecode/ |
D | LongVector.java | 22 private ConstInfo[][] objects; field in LongVector 26 objects = new ConstInfo[VSIZE][]; in LongVector() 32 objects = new ConstInfo[vsize][]; in LongVector() 38 public int capacity() { return objects.length * ASIZE; } in capacity() 44 return objects[i >> ABITS][i & (ASIZE - 1)]; in elementAt() 50 int len = objects.length; in addElement() 53 System.arraycopy(objects, 0, newObj, 0, len); in addElement() 54 objects = newObj; in addElement() 57 if (objects[nth] == null) in addElement() 58 objects[nth] = new ConstInfo[ASIZE]; in addElement() [all …]
|
/external/eigen/unsupported/Eigen/src/BVH/ |
D | KdBVH.h | 34 void operator()(const ObjectList &objects, BoxIter boxBegin, BoxIter boxEnd, VolumeList &outBoxes) in operator() 37 eigen_assert(outBoxes.size() == objects.size()); in operator() 43 void operator()(const ObjectList &objects, int, int, VolumeList &outBoxes) 45 outBoxes.reserve(objects.size()); 46 for(int i = 0; i < (int)objects.size(); ++i) 47 outBoxes.push_back(bounding_box(objects[i])); 96 objects.clear(); 100 objects.insert(objects.end(), begin, end); 101 int n = static_cast<int>(objects.size()); 110 … internal::get_boxes_helper<ObjectList, VolumeList, BIter>()(objects, boxBegin, boxEnd, objBoxes); [all …]
|
/external/skia/bench/ |
D | GrMemoryPoolBench.cpp | 54 A* objects[kMaxObjects]; in onDraw() local 73 delete objects[count-1]; in onDraw() 76 objects[count] = new A; in onDraw() 81 delete objects[i]; in onDraw() 110 SkTScopedPtr<A> objects[kMaxObjects]; in onDraw() local 114 if (NULL == objects[idx].get()) { in onDraw() 115 objects[idx].reset(new A); in onDraw() 117 objects[idx].reset(NULL); in onDraw() 145 A* objects[M]; in onDraw() local 149 objects[i] = new A; in onDraw() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | GameObjectManager.java | 82 FixedSizeArray<BaseObject> objects = getObjects(); in update() local 83 final int count = objects.getCount(); in update() 86 final Object[] objectArray = objects.getArray(); in update() 98 objects.swapWithLast(i); in update() 99 objects.removeLast(); in update() 124 objects.add(gameObject); in update() 159 FixedSizeArray<BaseObject> objects = getObjects(); in destroyAll() local 160 final int count = objects.getCount(); in destroyAll() 162 mMarkedForDeathObjects.add((GameObject)objects.get(i)); in destroyAll() 163 objects.remove(i); in destroyAll()
|
D | RenderSystem.java | 61 private void clearQueue(FixedSizeArray<BaseObject> objects) { in clearQueue() argument 62 final int count = objects.getCount(); in clearQueue() 63 final Object[] objectArray = objects.getArray(); in clearQueue() 68 objects.removeLast(); in clearQueue() 82 FixedSizeArray<BaseObject> objects = mRenderQueues[lastQueue].getObjects(); in swap() local 83 clearQueue(objects); in swap() 93 FixedSizeArray<BaseObject> objects = mRenderQueues[x].getObjects(); in emptyQueues() local 94 clearQueue(objects); in emptyQueues()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowArrayAdapter.java | 58 public void __constructor__(Context context, int textViewResourceId, T[] objects) { in __constructor__() argument 59 init(context, textViewResourceId, 0, Arrays.asList(objects)); in __constructor__() 62 … public void __constructor__(Context context, int resource, int textViewResourceId, T[] objects) { in __constructor__() argument 63 init(context, resource, textViewResourceId, Arrays.asList(objects)); in __constructor__() 66 public void __constructor__(Context context, int textViewResourceId, List<T> objects) { in __constructor__() argument 67 init(context, textViewResourceId, 0, objects); in __constructor__() 70 …blic void __constructor__(Context context, int resource, int textViewResourceId, List<T> objects) { in __constructor__() argument 71 init(context, resource, textViewResourceId, objects); in __constructor__() 74 private void init(Context context, int resource, int textViewResourceId, List<T> objects) { in init() argument 76 this.list = objects; in init()
|
/external/clang/test/CodeGen/ |
D | 2007-04-05-PadBeforeZeroLengthField.c | 6 union A objects[]; member 8 void foo(union A * objects, struct B *array, unsigned long k) in foo() argument 9 { array->objects[k] = objects[k]; } in foo()
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
D | Support_MessageFormat.java | 53 Object[] objects = new Object[] { hamburgers, new Double(3.5), in t_format_with_FieldPosition() local 59 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15); in t_format_with_FieldPosition() 62 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0, in t_format_with_FieldPosition() 64 t_FormatWithField(3, format, objects, null, in t_format_with_FieldPosition() 68 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0); in t_format_with_FieldPosition() 69 t_FormatWithField(5, format, objects, null, in t_format_with_FieldPosition() 80 Object[] objects = new Object[] { hamburgers, new Double(3.5), in t_formatToCharacterIterator() local 83 t_Format(1, objects, format, getMessageVector1()); in t_formatToCharacterIterator()
|
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/ |
D | SerializationTest.java | 488 public static void verifyGolden(TestCase test, Object[] objects) in verifyGolden() argument 491 Assert.assertFalse("Empty array", objects.length == 0); in verifyGolden() 492 verifyGolden(test, objects, defineComparator(test, objects[0])); in verifyGolden() 513 public static void verifyGolden(TestCase test, Object[] objects, in verifyGolden() argument 516 Assert.assertFalse("Empty array", objects.length == 0); in verifyGolden() 517 for (int i = 0; i < objects.length; i++) { in verifyGolden() 519 comparator.assertDeserialized((Serializable) objects[i], in verifyGolden() 569 public static void verifySelf(Object[] objects) in verifySelf() argument 572 Assert.assertFalse("Empty array", objects.length == 0); in verifySelf() 573 verifySelf(objects, defineComparator(null, objects[0])); in verifySelf() [all …]
|
/external/qemu/distrib/sdl-1.2.15/ |
D | Makefile.in | 5 objects = build 54 all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) 64 $(objects): 74 $(objects)/$(TARGET): $(OBJECTS) 77 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) 91 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) 93 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) 94 …$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TA… 129 rm -rf $(objects)
|
/external/v8/test/mjsunit/ |
D | 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/valgrind/main/docs/internals/ |
D | tm-threadstates.dot | 32 wait_mutex -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ]; 33 wait_mutex -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ]; 37 wait_condvar -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ]; 38 wait_condvar -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ]; 42 wait_join -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ]; 43 wait_join -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
|
/external/mockito/src/org/mockito/internal/configuration/injection/ |
D | ConstructorInjection.java | 70 final Set<Object> objects; field in ConstructorInjection.SimpleArgumentResolver 72 public SimpleArgumentResolver(Set<Object> objects) { in SimpleArgumentResolver() argument 73 this.objects = objects; in SimpleArgumentResolver() 85 for (Object object : objects) { in objectThatIsAssignableFrom()
|
/external/eigen/doc/ |
D | D07_PassingByValue.dox | 3 /** \page TopicPassingByValue Passing Eigen objects by value to functions 5 Passing objects by value is almost always a very bad idea in C++, as this means useless copies, and… 7 …able Eigen objects" by value is not only inefficient, it can be illegal or make your program crash… 36 Note that on the other hand, there is no problem with functions that return objects by value.
|
D | I05_FixedSizeVectorizable.dox | 3 /** \page TopicFixedSizeVectorizable Fixed-size vectorizable Eigen objects 30 Fixed-size objects are typically very small, which means that we want to handle them with zero runt… 34 …objects can be vectorized, is if their size is a multiple of 128 bits, or 16 bytes. Eigen will the…
|
/external/clang/test/ARCMT/ |
D | objcmt-subscripting-unavailable.m.result | 20 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 24 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 42 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 47 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
D | objcmt-subscripting-unavailable.m | 20 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 24 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 42 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 47 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
D | objcmt-subscripting-literals-in-arc.m.result | 34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
D | objcmt-subscripting-literals-in-arc.m | 34 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 38 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 62 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 65 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 67 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 70 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
/external/clang/test/Index/ |
D | annotate-literals.m | 25 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 29 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 33 id objects = @[ o1, o2 ]; 43 // CHECK-LITERALS: Identifier: "objects" [33:6 - 33:13] VarDecl=objects:33:6 (Definition) 44 // CHECK-LITERALS: Punctuation: "=" [33:14 - 33:15] VarDecl=objects:33:6 (Definition)
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | HashFunctionsTest.java | 42 int objects = 100; in assertInvariants() local 43 Set<HashCode> hashcodes = Sets.newHashSetWithExpectedSize(objects); in assertInvariants() 44 for (int i = 0; i < objects; i++) { in assertInvariants() 53 assertTrue(hashcodes.size() > objects * 0.95); // quite relaxed test in assertInvariants()
|
/external/skia/tools/ |
D | merge_static_libs.py | 29 objects = [] 42 objects.append(os.path.abspath(object)) 46 objects.append(object) 50 if not subprocess.call([ar, '-crs', out_lib] + objects) == 0:
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | GCControllerWin.cpp | 58 UINT objects = 0; in getJSObjectCount() local 59 collector->objectCount(&objects); in getJSObjectCount() 60 return objects; in getJSObjectCount()
|
/external/clang/test/SemaObjC/ |
D | cocoa-api-usage.m.fixed | 27 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 31 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 50 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 53 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 55 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 58 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
D | cocoa-api-usage.m | 27 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 31 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 50 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 53 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 55 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 58 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|