Home
last modified time | relevance | path

Searched refs:add (Results 1 – 25 of 3926) sorted by relevance

12345678910>>...158

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
DCSharp3Target.java49 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/
DCountryCodeToRegionCodeMap.java42 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/lib/Transforms/IPO/
DPassManagerBuilder.cpp88 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/
D2009-03-23-MultiUseSched.ll37 %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/
D2011-10-04-ConstEvolve.ll14 %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/
DAbstractMultisetTest.java87 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 …]
DAbstractCollectionTest.java55 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 …]
DTreeMultisetTest.java50 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/
Dmblaze_operands.s10 # 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/
DImageSourceCGWin.cpp55 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/
Dtestfile45.expect.bz2 ... section .text: 4 5 0: 00 01 add %al,(%rcx) 6 2:
/external/webkit/Source/WebCore/storage/
DDatabaseAuthorizer.cpp68 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/
DRemoveFormatCommand.cpp50 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/
DMIMETypeRegistryWinCE.cpp64 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/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DSupport_SimpleDateFormat.java168 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 …]
DSupport_MessageFormat.java88 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4)); in getMessageVector1()
89 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH)); in getMessageVector1()
90 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4)); in getMessageVector1()
91 v.add(new FieldContainer(7, 9, Field.ARGUMENT, 4)); in getMessageVector1()
92 v.add(new FieldContainer(7, 9, DateFormat.Field.DAY_OF_MONTH)); in getMessageVector1()
93 v.add(new FieldContainer(9, 11, Field.ARGUMENT, 4)); in getMessageVector1()
94 v.add(new FieldContainer(11, 15, Field.ARGUMENT, 4)); in getMessageVector1()
95 v.add(new FieldContainer(11, 15, DateFormat.Field.YEAR)); in getMessageVector1()
96 v.add(new FieldContainer(19, 20, Field.ARGUMENT, 3)); in getMessageVector1()
97 v.add(new FieldContainer(19, 20, DateFormat.Field.HOUR1)); in getMessageVector1()
[all …]
/external/webkit/Source/WebCore/platform/win/
DMIMETypeRegistryWin.cpp77 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/
DCleanSpec.mk47 $(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/
Daes-mips.s20 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/
DScalar.cpp75 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/
DX500PrincipalTest.java1950 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/
Doverflow.ll12 %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 …]
Dnsw.ll42 ; CHECK: add nsw i32 %x, 5
44 %add = add nsw i32 %x, 2
45 %add3 = add nsw i32 %add, 3
50 ; CHECK: add i8 %x, -126
52 %add = add nsw i8 %x, 127
53 %add3 = add nsw i8 %add, 3
58 ; CHECK: add i8 %x, 3
60 %add = add i8 %x, 1
61 %add3 = add nsw i8 %add, 2
66 ; CHECK: add i8 %A, %B
[all …]
/external/littlemock/tests/com/google/testing/littlemock/
DLittleMockTest.java118 public void add(String input); in add() method
180 verify(createNotARealMock()).add("something"); in testVerify_FailsIfNotCreatedByOurMockMethod()
186 mFoo.add("something"); in testVerify_SuccessfulVerification()
187 verify(mFoo).add("something"); in testVerify_SuccessfulVerification()
191 mFoo.add("something"); in testVerify_SuccessfulVerification_NormalOrder()
192 mFoo.add("something else"); in testVerify_SuccessfulVerification_NormalOrder()
193 verify(mFoo).add("something"); in testVerify_SuccessfulVerification_NormalOrder()
194 verify(mFoo).add("something else"); in testVerify_SuccessfulVerification_NormalOrder()
198 mFoo.add("something"); in testVerify_SuccessfulVerification_ReverseOrder()
199 mFoo.add("something else"); in testVerify_SuccessfulVerification_ReverseOrder()
[all …]
/external/llvm/test/CodeGen/Thumb2/
Dthumb2-mov.ll8 ;CHECK: add.w r0, r0, #11206827
9 %ret = add i32 %lhs, 11206827 ; 0x00ab00ab
15 ;CHECK: add.w r0, r0, #11206656
17 %ret = add i32 %lhs, 11206843 ; 0x00ab00bb
23 ;CHECK: add.w r0, r0, #11206827
24 ;CHECK: add.w r0, r0, #16777216
25 %ret = add i32 %lhs, 27984043 ; 0x01ab00ab
31 ;CHECK: add.w r0, r0, #16777472
32 ;CHECK: add.w r0, r0, #11206827
33 %ret = add i32 %lhs, 27984299 ; 0x01ab01ab
[all …]

12345678910>>...158