/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/db/ |
D | test_query.py | 42 cls.objs = [] 49 cls.objs.append(o) 55 cls.objs.append(o2) 62 cls.objs.append(o3) 70 for o in cls.objs: 78 assert(SimpleModel.find(name="Simple Object").next().id == self.objs[0].id) 79 assert(SimpleModel.find(name="Referenced Object").next().id == self.objs[1].id) 80 assert(SimpleModel.find(name="Sub Object").next().id == self.objs[2].id) 143 assert(SimpleModel.find(strs="A").next().id == self.objs[0].id) 144 assert(SimpleModel.find(strs="B").next().id == self.objs[0].id) [all …]
|
D | test_lists.py | 36 cls.objs = [] 40 for o in cls.objs: 52 self.objs.append(t) 62 self.objs.append(t) 80 self.objs.append(t) 91 self.objs.append(t)
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | MessageRegression.java | 137 Object[] objs = messageFormatter.parse(tempBuffer, status); in Test4031438() local 138 if (objs[paramArray.length] != null) in Test4031438() 140 for (int i = 0; i < objs.length; i++) { in Test4031438() 141 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) { in Test4031438() 142 errln("Parse failed on object " + objs[i] + " at index : " + i); in Test4031438() 172 Object[] objs = fmt.parse(str, pos); in Test4052223() local 180 if (objs != null) { in Test4052223() 432 Object[] objs = mf.parse(formatted, new ParsePosition(0)); in Test4118592() local 435 if (objs == null) logln(" null"); in Test4118592() 436 else logln(" " + objs[0]); in Test4118592() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | MessageRegression.java | 141 Object[] objs = messageFormatter.parse(tempBuffer, status); in Test4031438() local 142 if (objs[paramArray.length] != null) in Test4031438() 144 for (int i = 0; i < objs.length; i++) { in Test4031438() 145 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) { in Test4031438() 146 errln("Parse failed on object " + objs[i] + " at index : " + i); in Test4031438() 176 Object[] objs = fmt.parse(str, pos); in Test4052223() local 184 if (objs != null) { in Test4052223() 436 Object[] objs = mf.parse(formatted, new ParsePosition(0)); in Test4118592() local 439 if (objs == null) logln(" null"); in Test4118592() 440 else logln(" " + objs[0]); in Test4118592() [all …]
|
/external/libxml2/VxWorks/ |
D | Makefile | 54 mkdir -p objs 58 lib$(NAME).so : init $(patsubst %.o, objs/%.o, $(OBJS)) 59 $(CC) $(FLAGS) $(LIB_LDFLAGS) -shared -o $@ $(patsubst %.o, objs/%.o, $(OBJS)) 61 (NAME).out : init $(patsubst %.o, objs/%.o, $(OBJS)) 62 $(CC) $(FLAGS) -o $@ $(patsubst %.o, objs/%.o, $(OBJS)) 64 objs/%.o: src/%.c 68 rm -fR *.so objs
|
/external/jemalloc/src/ |
D | quarantine.c | 30 size = offsetof(quarantine_t, objs) + ((ZU(1) << lg_maxobjs) * in quarantine_init() 79 memcpy(ret->objs, &quarantine->objs[quarantine->first], in quarantine_grow() 87 memcpy(ret->objs, &quarantine->objs[quarantine->first], ncopy_a in quarantine_grow() 89 memcpy(&ret->objs[ncopy_a], quarantine->objs, ncopy_b * in quarantine_grow() 101 quarantine_obj_t *obj = &quarantine->objs[quarantine->first]; in quarantine_drain_one() 149 quarantine_obj_t *obj = &quarantine->objs[offset]; in quarantine()
|
/external/icu/icu4c/as_is/os400/ |
D | iculd.c | 60 char objs[4024]; in main() local 75 objs[0]=0; in main() 148 strcat(objs,outputdir); in main() 149 strcat(objs,"/"); in main() 150 strncat(objs,b,nlen); in main() 151 strcat(objs, " "); in main() 213 objs, in main()
|
/external/boringssl/src/crypto/x509/ |
D | x509_lu.c | 191 ret->objs = sk_X509_OBJECT_new(x509_object_cmp); in X509_STORE_new() 192 if (ret->objs == NULL) in X509_STORE_new() 212 if (ret->objs) in X509_STORE_new() 213 sk_X509_OBJECT_free(ret->objs); in X509_STORE_new() 260 sk_X509_OBJECT_pop_free(vfy->objs, cleanup); in X509_STORE_free() 308 tmp=X509_OBJECT_retrieve_by_subject(ctx->objs,type,name); in X509_STORE_get_by_subject() 363 if (X509_OBJECT_retrieve_match(ctx->objs, obj)) in X509_STORE_add_cert() 370 else sk_X509_OBJECT_push(ctx->objs, obj); in X509_STORE_add_cert() 396 if (X509_OBJECT_retrieve_match(ctx->objs, obj)) in X509_STORE_add_crl() 403 else sk_X509_OBJECT_push(ctx->objs, obj); in X509_STORE_add_crl() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch/ |
D | test_document.py | 111 objs = { variable in CloudSearchDocumentMultipleAddTest 131 for (key, obj) in self.objs.items(): 138 self.assertTrue(arg['id'] in self.objs) 139 self.assertEqual(arg['version'], self.objs[arg['id']]['version']) 141 self.objs[arg['id']]['fields']['id']) 143 self.objs[arg['id']]['fields']['title']) 145 self.objs[arg['id']]['fields']['category']) 154 for (key, obj) in self.objs.items(): 159 self.assertEqual(doc.adds, len(self.objs))
|
/external/icu/icu4c/source/test/intltest/ |
D | msfmrgts.cpp | 203 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count); in Test4031438() local 213 Formattable obj = objs[i]; in Test4031438() 244 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i); in Test4031438() 249 delete [] objs; in Test4031438() 701 Formattable *objs = 0; in Test4118592() local 712 objs = mf->parse(formatted, pp, count); in Test4118592() 716 if (objs == NULL) in Test4118592() 720 if(objs[0].getType() == Formattable::kString) in Test4118592() 721 logln((UnicodeString)" " + objs[0].getString(temp)); in Test4118592() 723 …logln((UnicodeString)" " + (objs[0].getType() == Formattable::kLong ? objs[0].getLong() : objs[0]… in Test4118592() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
D | test_signurl.py | 77 objs = ['gs://example.org/test 1', 'gs://example.org/test/test 2', 89 self.assertEquals(len(objs), len(expected_partial_urls)) 92 cmd_args.extend(objs) 98 self.assertEquals(len(lines), len(objs) + 2) 103 for obj, line, partial_url in zip(objs, lines, expected_partial_urls): 108 objs = ['test1', 'test2', 'test3'] 112 for obj_name in objs:
|
D | test_mv.py | 38 objs = [bucket1_uri.clone_replace_key(key).versionless_uri 40 cmd = (['-m', 'mv'] + objs + [suri(bucket2_uri)]) 52 objs = [bucket2_uri.clone_replace_key(key).versionless_uri 54 obj1 = objs[0] 61 objs = [suri(bucket2_uri.clone_replace_key(key)) 63 cmd = (['-m', 'mv'] + objs + [suri(bucket1_uri)])
|
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
D | TweenManager.java | 217 private static int getTweensCount(List<BaseTween<?>> objs) { in getTweensCount() argument 219 for (int i=0, n=objs.size(); i<n; i++) { in getTweensCount() 220 BaseTween<?> obj = objs.get(i); in getTweensCount() 227 private static int getTimelinesCount(List<BaseTween<?>> objs) { in getTimelinesCount() argument 229 for (int i=0, n=objs.size(); i<n; i++) { in getTimelinesCount() 230 BaseTween<?> obj = objs.get(i); in getTimelinesCount()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch2/ |
D | test_document.py | 130 objs = { variable in CloudSearchDocumentMultipleAddTest 148 for (key, obj) in self.objs.items(): 155 self.assertTrue(arg['id'] in self.objs) 157 self.objs[arg['id']]['fields']['id']) 159 self.objs[arg['id']]['fields']['title']) 161 self.objs[arg['id']]['fields']['category']) 170 for (key, obj) in self.objs.items(): 175 self.assertEqual(doc.adds, len(self.objs))
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/visualc/ |
D | freetype.dsp | 44 # PROP Output_Dir "..\..\..\objs\release" 45 # PROP Intermediate_Dir "..\..\..\objs\release" 57 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype262.lib" 68 # PROP Output_Dir "..\..\..\objs\debug" 69 # PROP Intermediate_Dir "..\..\..\objs\debug" 81 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype262_D.lib" 92 # PROP Output_Dir "..\..\..\objs\debug_mt" 93 # PROP Intermediate_Dir "..\..\..\objs\debug_mt" 106 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype262MT_D.lib" 117 # PROP Output_Dir "..\..\..\objs\release_mt" [all …]
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/visualce/ |
D | freetype.dsp | 44 # PROP Output_Dir "..\..\..\objs\release" 45 # PROP Intermediate_Dir "..\..\..\objs\release" 57 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype262.lib" 68 # PROP Output_Dir "..\..\..\objs\debug" 69 # PROP Intermediate_Dir "..\..\..\objs\debug" 81 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype262_D.lib" 92 # PROP Output_Dir "..\..\..\objs\debug_mt" 93 # PROP Intermediate_Dir "..\..\..\objs\debug_mt" 106 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype262MT_D.lib" 117 # PROP Output_Dir "..\..\..\objs\release_mt" [all …]
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | parallelizer.py | 67 def __init__(self, objs): argument 68 assert (objs is not None and len(objs) > 0), ( 70 self._orig_objs = objs 71 self._objs = objs
|
/external/selinux/libsepol/tests/ |
D | Makefile | 18 objs := $(patsubst %.c,%.o,$(wildcard *.c)) macro 34 $(EXE): $(objs) $(parserobjs) $(LIBSEPOL) 35 $(CC) $(CFLAGS) $(CPPFLAGS) $(objs) $(parserobjs) -lfl -lcunit -lcurses $(LIBSEPOL) -o $@ 44 rm -f $(objs) $(EXE)
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
D | FrameNode.java | 198 Object[] objs = new Object[l.size()]; in asArray() local 199 for (int i = 0; i < objs.length; ++i) { in asArray() 204 objs[i] = o; in asArray() 206 return objs; in asArray()
|
/external/jemalloc/test/unit/ |
D | prof_reset.c | 155 void *objs[OBJ_RING_BUF_COUNT]; in thd_start() local 157 memset(objs, 0, sizeof(objs)); in thd_start() 172 void **pp = &objs[i % OBJ_RING_BUF_COUNT]; in thd_start() 185 void **pp = &objs[i % OBJ_RING_BUF_COUNT]; in thd_start()
|
/external/llvm/test/Transforms/ObjCARC/ |
D | allocas.ll | 367 %objs = alloca [2 x i8*], align 16 372 %objs.begin = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0 374 store i8* %call1, i8** %objs.begin, align 8 375 %objs.elt = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 1 377 store i8* %call1, i8** %objs.elt 388 %gep = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 2 396 %objs_ptr = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0 445 %objs = alloca [2 x i8*], align 16 451 %objs.begin = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0 453 store i8* %call1, i8** %objs.begin, align 8 [all …]
|
/external/jemalloc/ |
D | coverage.sh | 8 objs=$@ 10 gcov -b -p -f -o "${objdir}" ${objs}
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ecs/ |
D | item.py | 101 self.objs = [] 132 self.objs.append(self.curItem) 142 self.iter = iter(self.objs) 147 self.objs = []
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
D | InternalTickTest.java | 35 btCollisionObjectArray objs = dynamicsWorld.getCollisionObjectArray(); in onInternalTick() local 38 for (int i = 0; i < objs.size(); i++) { in onInternalTick() 39 btRigidBody body = (btRigidBody)(objs.at(i)); in onInternalTick()
|
/external/selinux/sepolgen/src/sepolgen/ |
D | access.py | 207 for objs in tgts.values(): 208 for av in objs.values(): 221 for objs in tgts.values(): 222 l += len(objs)
|