Searched refs:add (Results 1 - 25 of 3273) sorted by relevance

1234567891011>>

/external/okhttp/src/main/java/libcore/net/
H A DMimeUtils.java46 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("applicatio
358 private static void add(String mimeType, String extension) { method in class:MimeUtils
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCSharp3Target.java49 add("abstract"); add("event"); add("new"); add("struct");
50 add("as"); add("explicit"); add("null"); add("switch");
51 add("base"); add("exter
[all...]
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageSourceCGWin.cpp55 UTIMap.add("public.html", "html");
56 UTIMap.add("public.jpeg", "jpeg");
57 UTIMap.add("public.jpeg-2000", "jp2");
58 UTIMap.add("public.plain-text", "txt");
59 UTIMap.add("public.png", "png");
60 UTIMap.add("public.tiff", "tiff");
61 UTIMap.add("public.xbitmap-image", "xbm");
62 UTIMap.add("public.xml", "xml");
63 UTIMap.add("com.adobe.illustrator.ai-image", "ai");
64 UTIMap.add("co
[all...]
/external/webkit/Source/WebCore/editing/
H A DRemoveFormatCommand.cpp50 elements.add(acronymTag);
51 elements.add(bTag);
52 elements.add(bdoTag);
53 elements.add(bigTag);
54 elements.add(citeTag);
55 elements.add(codeTag);
56 elements.add(dfnTag);
57 elements.add(emTag);
58 elements.add(fontTag);
59 elements.add(iTa
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DMIMETypeRegistryWin.cpp77 mimetypeMap.add("txt", "text/plain");
78 mimetypeMap.add("pdf", "application/pdf");
79 mimetypeMap.add("ps", "application/postscript");
80 mimetypeMap.add("html", "text/html");
81 mimetypeMap.add("htm", "text/html");
82 mimetypeMap.add("xml", "text/xml");
83 mimetypeMap.add("xsl", "text/xsl");
84 mimetypeMap.add("js", "application/x-javascript");
85 mimetypeMap.add("xhtml", "application/xhtml+xml");
86 mimetypeMap.add("rs
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-member.cpp8 return add<2>(j);
11 template <int i> int add(int j) function in class:MyClass
21 // CHECK: [[C_TEMP]] = metadata !{i32 {{.*}}, i32 0, metadata {{.*}}, metadata !"add<2>", metadata !"add<2>", metadata !"_ZN7MyClass3addILi2EEEii", metadata {{.*}}
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractCollectionTest.java55 c.add("a");
60 assertTrue(c.add("a"));
65 assertTrue(c.add("a"));
66 assertTrue(c.add("b"));
67 c.add("a");
68 c.add("b");
79 c.add("a");
85 c.add("a");
90 c.add("a");
95 c.add("
[all...]
H A DAbstractMultisetTest.java87 ms.add("a");
93 ms.add("a");
94 ms.add("a");
100 ms.add("a");
117 assertEquals(0, ms.add("a", 0));
122 ms.add("a");
123 assertEquals(1, ms.add("a", 0));
128 assertEquals(0, ms.add("a", 3));
133 ms.add("a", 2);
134 assertEquals(2, ms.add("
[all...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DCountryCodeToRegionCodeMap.java42 listWithRegionCode.add("US");
43 listWithRegionCode.add("AG");
44 listWithRegionCode.add("AI");
45 listWithRegionCode.add("AS");
46 listWithRegionCode.add("BB");
47 listWithRegionCode.add("BM");
48 listWithRegionCode.add("BS");
49 listWithRegionCode.add("CA");
50 listWithRegionCode.add("DM");
51 listWithRegionCode.add("D
[all...]
/external/webkit/Source/WebCore/platform/wince/
H A DMIMETypeRegistryWinCE.cpp64 mimetypeMap.add("txt", "text/plain");
65 mimetypeMap.add("pdf", "application/pdf");
66 mimetypeMap.add("ps", "application/postscript");
67 mimetypeMap.add("html", "text/html");
68 mimetypeMap.add("htm", "text/html");
69 mimetypeMap.add("xml", "text/xml");
70 mimetypeMap.add("xsl", "text/xsl");
71 mimetypeMap.add("js", "application/x-javascript");
72 mimetypeMap.add("xhtml", "application/xhtml+xml");
73 mimetypeMap.add("rs
[all...]
/external/llvm/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp88 PM.add(createTypeBasedAliasAnalysisPass());
89 PM.add(createBasicAliasAnalysisPass());
96 if (LibraryInfo) FPM.add(new TargetLibraryInfo(*LibraryInfo));
102 FPM.add(createCFGSimplificationPass());
103 FPM.add(createScalarReplAggregatesPass());
104 FPM.add(createEarlyCSEPass());
105 FPM.add(createLowerExpectIntrinsicPass());
112 MPM.add(Inliner);
120 if (LibraryInfo) MPM.add(new TargetLibraryInfo(*LibraryInfo));
127 MPM.add(createGlobalOptimizerPas
[all...]
H A DIPO.cpp54 unwrap(PM)->add(createArgumentPromotionPass());
58 unwrap(PM)->add(createConstantMergePass());
62 unwrap(PM)->add(createDeadArgEliminationPass());
66 unwrap(PM)->add(createFunctionAttrsPass());
70 unwrap(PM)->add(createFunctionInliningPass());
74 unwrap(PM)->add(llvm::createAlwaysInlinerPass());
78 unwrap(PM)->add(createGlobalDCEPass());
82 unwrap(PM)->add(createGlobalOptimizerPass());
86 unwrap(PM)->add(createIPConstantPropagationPass());
90 unwrap(PM)->add(createPruneEHPas
[all...]
/external/clang/test/Index/
H A Dcomplete-at-exprstmt.m14 + (int)add:(int)x to:(int)y;
15 + (int)add:(int)x to:(int)y plus:(int)z;
19 @selector(add:to:);
49 // CHECK-CC4: NotImplemented:{TypedText add:to:} (40)
50 // CHECK-CC4: NotImplemented:{TypedText add:to:plus:} (40)
53 // CHECK-CC5: NotImplemented:{Informative add:}{TypedText to:} (40)
54 // CHECK-CC5: NotImplemented:{Informative add:}{TypedText to:plus:} (40)
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DIElementList.java20 IElementList add (IContent content); method in interface:IElementList
21 IElementList add (int index, IContent content); method in interface:IElementList
/external/llvm/lib/Transforms/Scalar/
H A DScalar.cpp75 unwrap(PM)->add(createAggressiveDCEPass());
79 unwrap(PM)->add(createCFGSimplificationPass());
83 unwrap(PM)->add(createDeadStoreEliminationPass());
87 unwrap(PM)->add(createGVNPass());
91 unwrap(PM)->add(createIndVarSimplifyPass());
95 unwrap(PM)->add(createInstructionCombiningPass());
99 unwrap(PM)->add(createJumpThreadingPass());
103 unwrap(PM)->add(createLICMPass());
107 unwrap(PM)->add(createLoopDeletionPass());
111 unwrap(PM)->add(createLoopIdiomPas
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DSupport_MessageFormat.java88 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4));
89 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH));
90 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4));
91 v.add(new FieldContainer(7, 9, Field.ARGUMENT, 4));
92 v.add(new FieldContainer(7, 9, DateFormat.Field.DAY_OF_MONTH));
93 v.add(new FieldContainer(9, 11, Field.ARGUMENT, 4));
94 v.add(new FieldContainer(11, 15, Field.ARGUMENT, 4));
95 v.add(new FieldContainer(11, 15, DateFormat.Field.YEAR));
96 v.add(new FieldContainer(19, 20, Field.ARGUMENT, 3));
97 v.add(ne
[all...]
H A DSupport_SimpleDateFormat.java168 v.add(new FieldContainer(0, 4, Field.YEAR));
169 v.add(new FieldContainer(4, 6, Field.MONTH));
170 v.add(new FieldContainer(6, 8, Field.DAY_OF_MONTH));
171 v.add(new FieldContainer(8, 10, Field.HOUR_OF_DAY0));
172 v.add(new FieldContainer(10, 12, Field.MINUTE));
173 v.add(new FieldContainer(12, 14, Field.SECOND));
180 v.add(new FieldContainer(0, 2, Field.WEEK_OF_YEAR));
181 v.add(new FieldContainer(3, 4, Field.WEEK_OF_MONTH));
182 v.add(new FieldContainer(5, 7, Field.DAY_OF_MONTH));
183 v.add(ne
[all...]
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DCountryCodeToRegionCodeMapForTesting.java42 listWithRegionCode.add("US");
43 listWithRegionCode.add("BS");
47 listWithRegionCode.add("IT");
51 listWithRegionCode.add("GB");
55 listWithRegionCode.add("PL");
59 listWithRegionCode.add("DE");
63 listWithRegionCode.add("MX");
67 listWithRegionCode.add("AR");
71 listWithRegionCode.add("BR");
75 listWithRegionCode.add("A
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1278.js33 function add(x, y) { function
50 assertEquals(0, add(0, 0));
51 assertEquals(0, add(0, -0));
52 assertEquals(0, add(-0, 0));
53 assertEquals(-0, add(-0, -0));
/external/webkit/Source/WebCore/storage/
H A DDatabaseAuthorizer.cpp68 m_whitelistedFunctions.add("sqlite_rename_table");
69 m_whitelistedFunctions.add("sqlite_rename_trigger");
71 m_whitelistedFunctions.add("glob");
74 m_whitelistedFunctions.add("abs");
75 m_whitelistedFunctions.add("changes");
76 m_whitelistedFunctions.add("coalesce");
77 m_whitelistedFunctions.add("glob");
78 m_whitelistedFunctions.add("ifnull");
79 m_whitelistedFunctions.add("hex");
80 m_whitelistedFunctions.add("last_insert_rowi
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DDefaultCMSSignatureEncryptionAlgorithmFinder.java20 // RSA_PKCS1d5.add(PKCSObjectIdentifiers.md2WithRSAEncryption);
21 // RSA_PKCS1d5.add(PKCSObjectIdentifiers.md4WithRSAEncryption);
23 RSA_PKCS1d5.add(PKCSObjectIdentifiers.md5WithRSAEncryption);
24 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha1WithRSAEncryption);
26 // RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha224WithRSAEncryption);
28 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha256WithRSAEncryption);
29 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha384WithRSAEncryption);
30 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha512WithRSAEncryption);
32 // RSA_PKCS1d5.add(OIWObjectIdentifiers.md4WithRSAEncryption);
33 // RSA_PKCS1d5.add(OIWObjectIdentifier
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9FieldID.java54 fieldIdParams.add(new ASN1Integer(m));
58 fieldIdParams.add(tpBasis);
59 fieldIdParams.add(new ASN1Integer(k1));
63 fieldIdParams.add(ppBasis);
65 pentanomialParams.add(new ASN1Integer(k1));
66 pentanomialParams.add(new ASN1Integer(k2));
67 pentanomialParams.add(new ASN1Integer(k3));
68 fieldIdParams.add(new DERSequence(pentanomialParams));
104 v.add(this.id);
105 v.add(thi
[all...]
/external/compiler-rt/lib/arm/
H A Dswitch16.S36 add r0, lr, r0, lsl #1 // compute address of element in table
38 add ip, lr, ip, lsl #1 // compute address of last element in table
40 add ip, lr, r0, lsl #1 // compute label = lr + element*2
H A Dswitch32.S36 add r0, lr, r0, lsl #2 // compute address of element in table
38 add ip, lr, ip, lsl #2 // compute address of last element in table
40 add ip, lr, r0 // compute label = lr + element
/external/clang/test/PCH/
H A Dblocks.c8 int do_add(int x, int y) { return add(x, y); }

Completed in 885 milliseconds

1234567891011>>