/external/okhttp/src/main/java/libcore/net/ |
D | MimeUtils.java | 46 add("application/andrew-inset", "ez"); 47 add("application/dsptype", "tsp"); 48 add("application/futuresplash", "spl"); 49 add("application/hta", "hta"); 50 add("application/mac-binhex40", "hqx"); 51 add("application/mac-compactpro", "cpt"); 52 add("application/mathematica", "nb"); 53 add("application/msaccess", "mdb"); 54 add("application/oda", "oda"); 55 add("application/ogg", "ogg"); [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
D | CSharp3Target.java | 49 add("abstract"); add("event"); add("new"); add("struct"); 50 add("as"); add("explicit"); add("null"); add("switch"); 51 add("base"); add("extern"); add("object"); add("this"); 52 add("bool"); add("false"); add("operator"); add("throw"); 53 add("break"); add("finally"); add("out"); add("true"); 54 add("byte"); add("fixed"); add("override"); add("try"); 55 add("case"); add("float"); add("params"); add("typeof"); 56 add("catch"); add("for"); add("private"); add("uint"); 57 add("char"); add("foreach"); add("protected"); add("ulong"); 58 add("checked"); add("goto"); add("public"); add("unchecked"); [all …]
|
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
D | CountryCodeToRegionCodeMap.java | 42 listWithRegionCode.add("US"); in getCountryCodeToRegionCodeMap() 43 listWithRegionCode.add("AG"); in getCountryCodeToRegionCodeMap() 44 listWithRegionCode.add("AI"); in getCountryCodeToRegionCodeMap() 45 listWithRegionCode.add("AS"); in getCountryCodeToRegionCodeMap() 46 listWithRegionCode.add("BB"); in getCountryCodeToRegionCodeMap() 47 listWithRegionCode.add("BM"); in getCountryCodeToRegionCodeMap() 48 listWithRegionCode.add("BS"); in getCountryCodeToRegionCodeMap() 49 listWithRegionCode.add("CA"); in getCountryCodeToRegionCodeMap() 50 listWithRegionCode.add("DM"); in getCountryCodeToRegionCodeMap() 51 listWithRegionCode.add("DO"); in getCountryCodeToRegionCodeMap() [all …]
|
/external/llvm/test/Transforms/Reassociate/ |
D | 2012-05-08-UndefLeak.ll | 10 ; CHECK-NEXT: add i64 %{{.*}}, 1617 12 %t0 = add i64 %x0, 1 13 %t1 = add i64 %x0, 2 14 %t2 = add i64 %x0, 3 15 %t3 = add i64 %x0, 4 16 %t4 = add i64 %x0, 5 17 %t5 = add i64 %x0, 6 18 %t6 = add i64 %x0, 7 19 %t7 = add i64 %x0, 8 20 %t8 = add i64 %x0, 9 [all …]
|
/external/llvm/lib/Transforms/IPO/ |
D | PassManagerBuilder.cpp | 88 PM.add(createTypeBasedAliasAnalysisPass()); in addInitialAliasAnalysisPasses() 89 PM.add(createBasicAliasAnalysisPass()); in addInitialAliasAnalysisPasses() 96 if (LibraryInfo) FPM.add(new TargetLibraryInfo(*LibraryInfo)); in populateFunctionPassManager() 102 FPM.add(createCFGSimplificationPass()); in populateFunctionPassManager() 103 FPM.add(createScalarReplAggregatesPass()); in populateFunctionPassManager() 104 FPM.add(createEarlyCSEPass()); in populateFunctionPassManager() 105 FPM.add(createLowerExpectIntrinsicPass()); in populateFunctionPassManager() 112 MPM.add(Inliner); in populateModulePassManager() 120 if (LibraryInfo) MPM.add(new TargetLibraryInfo(*LibraryInfo)); in populateModulePassManager() 127 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars in populateModulePassManager() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-03-23-MultiUseSched.ll | 37 %tmp25 = add i64 %tmp6, %tmp5 ; <i64> [#uses=1] 38 %tmp26 = add i64 %tmp25, %tmp4 ; <i64> [#uses=1] 39 %tmp27 = add i64 %tmp7, %tmp4 ; <i64> [#uses=1] 40 %tmp28 = add i64 %tmp27, %tmp26 ; <i64> [#uses=1] 41 %tmp29 = add i64 %tmp28, %tmp24 ; <i64> [#uses=2] 42 %tmp30 = add i64 %tmp2, %tmp1 ; <i64> [#uses=1] 43 %tmp31 = add i64 %tmp30, %tmp ; <i64> [#uses=1] 44 %tmp32 = add i64 %tmp2, %tmp1 ; <i64> [#uses=1] 45 %tmp33 = add i64 %tmp31, %tmp32 ; <i64> [#uses=1] 46 %tmp34 = add i64 %tmp29, %tmp3 ; <i64> [#uses=5] [all …]
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | 2011-10-04-ConstEvolve.ll | 14 %0 = add i32 %iv, 1 15 %1 = add i32 %0, 2 16 %2 = add i32 %1, %0 17 %3 = add i32 %2, %1 18 %4 = add i32 %3, %2 19 %5 = add i32 %4, %3 20 %6 = add i32 %5, %4 21 %7 = add i32 %6, %5 22 %8 = add i32 %7, %6 23 %9 = add i32 %8, %7 [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | AbstractMultisetTest.java | 87 ms.add("a"); in testCountOne() 93 ms.add("a"); in testCountTwo() 94 ms.add("a"); in testCountTwo() 100 ms.add("a"); in testCountAfterRemoval() 117 assertEquals(0, ms.add("a", 0)); in testAddNoneToNone() 122 ms.add("a"); in testAddNoneToSome() 123 assertEquals(1, ms.add("a", 0)); in testAddNoneToSome() 128 assertEquals(0, ms.add("a", 3)); in testAddSeveralAtOnce() 133 ms.add("a", 2); in testAddSomeToSome() 134 assertEquals(2, ms.add("a", 3)); in testAddSomeToSome() [all …]
|
D | AbstractCollectionTest.java | 55 c.add("a"); in testIsEmptyNo() 60 assertTrue(c.add("a")); in testAddOne() 65 assertTrue(c.add("a")); in testAddSeveralTimes() 66 assertTrue(c.add("b")); in testAddSeveralTimes() 67 c.add("a"); in testAddSeveralTimes() 68 c.add("b"); in testAddSeveralTimes() 79 c.add("a"); in testRemoveOneFromOneStandard() 85 c.add("a"); in testContainsNo() 90 c.add("a"); in testContainsOne() 95 c.add("a"); in testContainsAfterRemoval() [all …]
|
D | TreeMultisetTest.java | 50 multiset.add("foo", 2); in testCreate() 51 multiset.add("bar"); in testCreate() 60 multiset.add("foo", 2); in testCreateWithComparator() 61 multiset.add("bar"); in testCreateWithComparator() 76 ms.add("a", 3); in testToString() 77 ms.add("c", 1); in testToString() 78 ms.add("b", 2); in testToString() 114 multiset.add("a", 3); in testElementSetIteratorBashing() 115 multiset.add("c", 1); in testElementSetIteratorBashing() 116 multiset.add("b", 2); in testElementSetIteratorBashing() [all …]
|
/external/llvm/test/MC/MBlaze/ |
D | mblaze_operands.s | 10 # CHECK: add 13 add r0, r0, r0 15 # CHECK: add 18 add r1, r1, r1 20 # CHECK: add 23 add r2, r2, r2 25 # CHECK: add 28 add r3, r3, r3 30 # CHECK: add 33 add r4, r4, r4 [all …]
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | ImageSourceCGWin.cpp | 55 UTIMap.add("public.html", "html"); in preferredExtensionForImageSourceType() 56 UTIMap.add("public.jpeg", "jpeg"); in preferredExtensionForImageSourceType() 57 UTIMap.add("public.jpeg-2000", "jp2"); in preferredExtensionForImageSourceType() 58 UTIMap.add("public.plain-text", "txt"); in preferredExtensionForImageSourceType() 59 UTIMap.add("public.png", "png"); in preferredExtensionForImageSourceType() 60 UTIMap.add("public.tiff", "tiff"); in preferredExtensionForImageSourceType() 61 UTIMap.add("public.xbitmap-image", "xbm"); in preferredExtensionForImageSourceType() 62 UTIMap.add("public.xml", "xml"); in preferredExtensionForImageSourceType() 63 UTIMap.add("com.adobe.illustrator.ai-image", "ai"); in preferredExtensionForImageSourceType() 64 UTIMap.add("com.adobe.pdf", "pdf"); in preferredExtensionForImageSourceType() [all …]
|
/external/elfutils/tests/ |
D | testfile45.expect.bz2 |
|
/external/webkit/Source/WebCore/storage/ |
D | DatabaseAuthorizer.cpp | 68 m_whitelistedFunctions.add("sqlite_rename_table"); in addWhitelistedFunctions() 69 m_whitelistedFunctions.add("sqlite_rename_trigger"); in addWhitelistedFunctions() 71 m_whitelistedFunctions.add("glob"); in addWhitelistedFunctions() 74 m_whitelistedFunctions.add("abs"); in addWhitelistedFunctions() 75 m_whitelistedFunctions.add("changes"); in addWhitelistedFunctions() 76 m_whitelistedFunctions.add("coalesce"); in addWhitelistedFunctions() 77 m_whitelistedFunctions.add("glob"); in addWhitelistedFunctions() 78 m_whitelistedFunctions.add("ifnull"); in addWhitelistedFunctions() 79 m_whitelistedFunctions.add("hex"); in addWhitelistedFunctions() 80 m_whitelistedFunctions.add("last_insert_rowid"); in addWhitelistedFunctions() [all …]
|
/external/webkit/Source/WebCore/editing/ |
D | RemoveFormatCommand.cpp | 50 elements.add(acronymTag); in isElementForRemoveFormatCommand() 51 elements.add(bTag); in isElementForRemoveFormatCommand() 52 elements.add(bdoTag); in isElementForRemoveFormatCommand() 53 elements.add(bigTag); in isElementForRemoveFormatCommand() 54 elements.add(citeTag); in isElementForRemoveFormatCommand() 55 elements.add(codeTag); in isElementForRemoveFormatCommand() 56 elements.add(dfnTag); in isElementForRemoveFormatCommand() 57 elements.add(emTag); in isElementForRemoveFormatCommand() 58 elements.add(fontTag); in isElementForRemoveFormatCommand() 59 elements.add(iTag); in isElementForRemoveFormatCommand() [all …]
|
/external/webkit/Source/WebCore/platform/wince/ |
D | MIMETypeRegistryWinCE.cpp | 64 mimetypeMap.add("txt", "text/plain"); in initMIMETypeEntensionMap() 65 mimetypeMap.add("pdf", "application/pdf"); in initMIMETypeEntensionMap() 66 mimetypeMap.add("ps", "application/postscript"); in initMIMETypeEntensionMap() 67 mimetypeMap.add("html", "text/html"); in initMIMETypeEntensionMap() 68 mimetypeMap.add("htm", "text/html"); in initMIMETypeEntensionMap() 69 mimetypeMap.add("xml", "text/xml"); in initMIMETypeEntensionMap() 70 mimetypeMap.add("xsl", "text/xsl"); in initMIMETypeEntensionMap() 71 mimetypeMap.add("js", "application/x-javascript"); in initMIMETypeEntensionMap() 72 mimetypeMap.add("xhtml", "application/xhtml+xml"); in initMIMETypeEntensionMap() 73 mimetypeMap.add("rss", "application/rss+xml"); in initMIMETypeEntensionMap() [all …]
|
/external/llvm/test/CodeGen/Mips/ |
D | fp-spill-reload.ll | 11 %add.1 = add nsw i32 %1, 1 14 %add.2 = add nsw i32 %2, 2 17 %add.3 = add nsw i32 %3, 3 20 %add.4 = add nsw i32 %4, 4 23 %add.5 = add nsw i32 %5, 5 26 %add.6 = add nsw i32 %6, 6 29 %add.7 = add nsw i32 %7, 7 30 …call void @foo2(i32 %0, i32 %add.1, i32 %add.2, i32 %add.3, i32 %add.4, i32 %add.5, i32 %add.6, i3… 32 …call void @foo2(i32 %0, i32 %add.1, i32 %add.2, i32 %add.3, i32 %add.4, i32 %add.5, i32 %add.6, i3…
|
/external/llvm/test/Transforms/GVN/ |
D | pr12979.ll | 5 ; CHECK: %add1 = add i32 %x, %y 6 ; CHECK: %foo = add i32 %add1, %add1 8 %add1 = add nsw i32 %x, %y 9 %add2 = add i32 %x, %y 10 %foo = add i32 %add1, %add2 16 ; CHECK: %add1 = add i32 %x, %y 17 ; CHECK: %foo = add i32 %add1, %add1 19 %add1 = add nuw i32 %x, %y 20 %add2 = add i32 %x, %y 21 %foo = add i32 %add1, %add2 [all …]
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
D | Support_SimpleDateFormat.java | 168 v.add(new FieldContainer(0, 4, Field.YEAR)); in getDateVector1() 169 v.add(new FieldContainer(4, 6, Field.MONTH)); in getDateVector1() 170 v.add(new FieldContainer(6, 8, Field.DAY_OF_MONTH)); in getDateVector1() 171 v.add(new FieldContainer(8, 10, Field.HOUR_OF_DAY0)); in getDateVector1() 172 v.add(new FieldContainer(10, 12, Field.MINUTE)); in getDateVector1() 173 v.add(new FieldContainer(12, 14, Field.SECOND)); in getDateVector1() 180 v.add(new FieldContainer(0, 2, Field.WEEK_OF_YEAR)); in getDateVector2() 181 v.add(new FieldContainer(3, 4, Field.WEEK_OF_MONTH)); in getDateVector2() 182 v.add(new FieldContainer(5, 7, Field.DAY_OF_MONTH)); in getDateVector2() 183 v.add(new FieldContainer(8, 17, Field.MONTH)); in getDateVector2() [all …]
|
/external/webkit/Source/WebCore/platform/win/ |
D | MIMETypeRegistryWin.cpp | 77 mimetypeMap.add("txt", "text/plain"); in getMIMETypeForExtension() 78 mimetypeMap.add("pdf", "application/pdf"); in getMIMETypeForExtension() 79 mimetypeMap.add("ps", "application/postscript"); in getMIMETypeForExtension() 80 mimetypeMap.add("html", "text/html"); in getMIMETypeForExtension() 81 mimetypeMap.add("htm", "text/html"); in getMIMETypeForExtension() 82 mimetypeMap.add("xml", "text/xml"); in getMIMETypeForExtension() 83 mimetypeMap.add("xsl", "text/xsl"); in getMIMETypeForExtension() 84 mimetypeMap.add("js", "application/x-javascript"); in getMIMETypeForExtension() 85 mimetypeMap.add("xhtml", "application/xhtml+xml"); in getMIMETypeForExtension() 86 mimetypeMap.add("rss", "application/rss+xml"); in getMIMETypeForExtension() [all …]
|
/external/webkit/ |
D | CleanSpec.mk | 47 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libwebcore_intermediates) 48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libwebcore_intermediates) 49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libwebcore_intermediates) 50 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libwebcore_intermediates) 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libwebcore_intermediates) 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libwebcore_intermediates) 53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libwebcore_intermediates) 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libwebcore_intermediates) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libwebcore_intermediates) 56 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libwebcore_intermediates) [all …]
|
/external/openssl/crypto/aes/asm/ |
D | aes-mips.s | 20 add $3,$6,16 37 add $1,$7 38 add $2,$7 39 add $24,$7 40 add $25,$7 58 add $1,$7 59 add $2,$7 60 add $24,$7 61 add $25,$7 79 add $1,$7 [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | Scalar.cpp | 75 unwrap(PM)->add(createAggressiveDCEPass()); in LLVMAddAggressiveDCEPass() 79 unwrap(PM)->add(createCFGSimplificationPass()); in LLVMAddCFGSimplificationPass() 83 unwrap(PM)->add(createDeadStoreEliminationPass()); in LLVMAddDeadStoreEliminationPass() 87 unwrap(PM)->add(createGVNPass()); in LLVMAddGVNPass() 91 unwrap(PM)->add(createIndVarSimplifyPass()); in LLVMAddIndVarSimplifyPass() 95 unwrap(PM)->add(createInstructionCombiningPass()); in LLVMAddInstructionCombiningPass() 99 unwrap(PM)->add(createJumpThreadingPass()); in LLVMAddJumpThreadingPass() 103 unwrap(PM)->add(createLICMPass()); in LLVMAddLICMPass() 107 unwrap(PM)->add(createLoopDeletionPass()); in LLVMAddLoopDeletionPass() 111 unwrap(PM)->add(createLoopIdiomPass()); in LLVMAddLoopIdiomPass() [all …]
|
/external/apache-harmony/auth/src/test/java/common/javax/security/auth/x500/ |
D | X500PrincipalTest.java | 1950 list.add("", "", "", "", new byte[] { 0x30, 0x00 }); // empty RDN sequence in testValidDN() 1953 list.add("CN=A,C=B", "CN=A,C=B", "CN=A, C=B", "cn=a,c=b"); in testValidDN() 1954 list.add("C=B,CN=A", "C=B,CN=A", "C=B, CN=A", "c=b,cn=a"); in testValidDN() 1955 list.add("CN=A,CN=A", "CN=A,CN=A", "CN=A, CN=A", "cn=a,cn=a"); // duplicate RDNs in testValidDN() 1958 list.add("CN=A , C=B", "CN=A,C=B", "CN=A, C=B"); in testValidDN() 1959 list.add("CN=A , C=B", "CN=A,C=B", "CN=A, C=B"); in testValidDN() 1960 list.add("CN=A;C=B", "CN=A,C=B", "CN=A, C=B"); in testValidDN() 1961 list.add("CN=A ; C=B", "CN=A,C=B", "CN=A, C=B"); in testValidDN() 1963 list.add(" CN=A,C=B ", "CN=A,C=B", "CN=A, C=B"); // spaces at beg&end in testValidDN() 1964 list.add(" CN=A,C=\"B\" ", "CN=A,C=B", "CN=A, C=B"); // spaces at beg&end in testValidDN() [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | overflow.ll | 12 %add = add nsw i64 %conv2, %conv 13 %add.off = add i64 %add, 2147483648 15 %0 = icmp ugt i64 %add.off, 4294967295 24 %conv9 = trunc i64 %add to i32 31 ; promote it since the add.off instruction has another use, and 2) it is unsafe 32 ; because the add-with-off makes the high bits of the original add live. 37 %add = add nsw i64 %conv2, %conv 38 %add.off = add i64 %add, 2147483648 40 store i64 %add.off, i64* %P 43 %0 = icmp ugt i64 %add.off, 4294967295 [all …]
|