Searched refs:compile (Results 1 - 25 of 1109) sorted by relevance

1234567891011>>

/external/smali/dexlib2/accessorTestGenerator/
H A Dbuild.gradle33 compile project(':util')
34 compile 'com.google.code.findbugs:jsr305:1.3.9'
35 compile 'com.google.guava:guava:13.0.1'
36 compile 'org.antlr:ST4:4.0.7'
/external/selinux/python/sepolicy/sepolicy/templates/
H A Dsemodule.py24 compile="""
H A Dscript.py24 compile="""\
/external/jarjar/
H A Dbuild.gradle28 compile files('lib/apache-ant-1.9.4.jar')
29 compile files('lib/asm-4.0.jar')
30 compile files('lib/asm-commons-4.0.jar')
31 compile files('lib/maven-plugin-api.jar')
/external/libcxx/test/libcxx/selftest/
H A Dtest.fail.cpp11 #error This test should not compile.
/external/smali/util/
H A Dbuild.gradle33 compile depends.commons_cli
34 compile depends.findbugs
35 compile depends.guava
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
H A DLog4jRuleSet.java37 SingleConversionRule crImport0 = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.log4j.Logger;"), "import org.slf4j.Logger;",
40 SingleConversionRule catImport = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.log4j.Category;"), "import org.slf4j.Logger;",
43 SingleConversionRule crImport1 = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.log4j.LogManager;"), "import org.slf4j.LoggerFactory;");
45 SingleConversionRule crImport2 = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.log4j.*;"), "import org.slf4j.Logger;",
48 SingleConversionRule crImportMDC = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.log4j.MDC;"), "import org.slf4j.MDC;");
50 SingleConversionRule crFactory0 = new SingleConversionRule(Pattern.compile("Logger.getLogger\\("), "LoggerFactory.getLogger(");
52 SingleConversionRule crFactory1 = new SingleConversionRule(Pattern.compile("\\sCategory.getInstance\\("), " LoggerFactory.getLogger(");
54 SingleConversionRule crFactory2 = new SingleConversionRule(Pattern.compile("LogManager.getLogger\\("), "LoggerFactory.getLogger(");
56 SingleConversionRule variable0 = new SingleConversionRule(Pattern.compile("(\\sCategory\\b)"), " Logger");
58 SingleConversionRule variable1 = new SingleConversionRule(Pattern.compile("(
[all...]
H A DJCLRuleSet.java43 SingleConversionRule cr0 = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.commons.logging.LogFactory;"),
47 SingleConversionRule cr1 = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.commons.logging.Log;"), "import org.slf4j.Logger;");
49 SingleConversionRule cr2 = new SingleConversionRule(Pattern.compile("(\\sLog\\b)"), " Logger");
51 SingleConversionRule cr3 = new SingleConversionRule(Pattern.compile("(^Log\\b)"), "Logger");
53 SingleConversionRule cr4 = new SingleConversionRule(Pattern.compile("LogFactory.getFactory\\(\\).getInstance\\("), "LoggerFactory.getLogger(");
55 SingleConversionRule cr5 = new SingleConversionRule(Pattern.compile("LogFactory.getLog\\("), "LoggerFactory.getLogger(");
H A DJULRuleSet.java43 SingleConversionRule crImport0 = new SingleConversionRule(Pattern.compile("import\\s*+java.util.logging.Logger;"), "import org.slf4j.Logger;",
46 SingleConversionRule crImport1 = new SingleConversionRule(Pattern.compile("import\\s*+org.apache.log4j.LogManager;"), "import org.slf4j.LoggerFactory;");
48 SingleConversionRule crImport2 = new SingleConversionRule(Pattern.compile("import\\s*+java.util.logging.*;"), "import org.slf4j.Logger;",
51 SingleConversionRule crFactory0 = new SingleConversionRule(Pattern.compile("Logger.getLogger\\("), "LoggerFactory.getLogger(");
53 SingleConversionRule crFactory1 = new SingleConversionRule(Pattern.compile("LogManager.getLogger\\("), "LoggerFactory.getLogger(");
55 SingleConversionRule crWarning = new SingleConversionRule(Pattern.compile("\\.warning\\("), ".warn(");
56 SingleConversionRule crSevere = new SingleConversionRule(Pattern.compile("\\.severe\\("), ".error(");
/external/clang/test/Parser/
H A Dms-if-exists.c14 this will not compile.
17 this will not compile.
40 this will not compile.
44 this will not compile.
61 __if_exists(Type_not) { this will not compile }
73 __if_not_exists(Type) { this will not compile }
H A Dms-if-exists.cpp15 this will not compile.
18 this will not compile.
41 this will not compile.
45 this will not compile.
62 __if_exists(MayExist::Type_not) { this will not compile }
74 __if_not_exists(MayExist::Type) { this will not compile }
91 this will not compile.
95 this will not compile.
/external/doclava/
H A Dbuild.gradle47 * If prebuilts are available, use them. Otherwise, attempt to compile against
57 compile 'org.antlr:antlr:3.5.2'
58 compile 'com.google.jsilver:jsilver:1.0.0'
59 compile 'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
61 compile 'com.google.guava:guava:15.0'
65 compile project(path: ':antlr', configuration: 'antlrRuntime')
66 compile project(':jsilver')
67 compile project(':tagsoup')
76 compile files(((URLClassLoader) ToolProvider.getSystemToolClassLoader()).getURLs())
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/object/
H A DMatchesPatternTest.java15 Matcher<String> matcher = new MatchesPattern(Pattern.compile("."));
23 assertThat("a", new MatchesPattern(Pattern.compile("a")));
28 assertDoesNotMatch("A different string does not match", new MatchesPattern(Pattern.compile("a")), "b");
33 assertDoesNotMatch("A substring does not match", new MatchesPattern(Pattern.compile("a")), "ab");
38 Matcher<?> m = new MatchesPattern(Pattern.compile("a[bc](d|e)"));
44 final Matcher<String> matcher = new MatchesPattern(Pattern.compile("a"));
50 Matcher<?> m = MatchesPattern.matchesPattern(Pattern.compile("a[bc](d|e)"));
/external/apache-http/src/org/apache/http/conn/util/
H A DInetAddressUtils.java50 Pattern.compile(
54 Pattern.compile(
58 Pattern.compile(
/external/javasqlite/src/main/java/SQLite/
H A DVm.java16 * Internal last error code for compile()/step() methods.
29 * Vm vm = db.compile("select * from x; select * from y;");
33 * while (vm.compile()) {
55 public native boolean compile() throws SQLite.Exception; method in class:Vm
/external/skia/infra/bots/recipe_modules/core/resources/
H A Dbinary_size_utils.py28 sym_re = re.compile(r'^[0-9a-f]{8,} ' # address (8+ hex digits)
34 addr_re = re.compile(r'^[0-9a-f]{8,} (.) ([^\t]+)(?:\t.*)?$')
36 noaddr_re = re.compile(r'^ {8,} (.) (.*)$')
38 addr_only_re = re.compile(r'^[0-9a-f]{8,} (.)$')
/external/skia/platform_tools/android/apps/viewer/
H A Dbuild.gradle10 compile 'com.android.support:support-v13:23.3.0'
11 compile 'com.android.support:appcompat-v7:23.3.0'
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPatterns.java44 Pattern.compile(TOP_LEVEL_DOMAIN_STR);
78 public static final Pattern WEB_URL = Pattern.compile(
97 = Pattern.compile(
104 = Pattern.compile(
110 = Pattern.compile(
121 = Pattern.compile( // sdd = space, dot, or dash
/external/smali/baksmali/
H A Dbuild.gradle42 compile project(':util')
43 compile project(':dexlib2')
44 compile depends.commons_cli
45 compile depends.guava
57 from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
/external/clang/tools/scan-build-py/libscanbuild/
H A Dcompilation.py53 re.compile(r'^(intercept-|analyze-|)c(c|\+\+)$'),
54 re.compile(r'^([^-]*-)*[mg](cc|\+\+)(-\d+(\.\d+){0,2})?$'),
55 re.compile(r'^([^-]*-)*clang(\+\+)?(-\d+(\.\d+){0,2})?$'),
56 re.compile(r'^llvm-g(cc|\+\+)$'),
66 flags: list of compile options
78 # iterate on the compile options
91 # some parameters could look like filename, take as compile option
97 # and consider everything else as compile option.
135 cplusplus = re.compile(r'^(.+)(\+\+)(-.+|)$')
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DCssFuzzerTest.java182 CssTokens.TokenType.AT, Pattern.compile("@" + IDENT));
184 CssTokens.TokenType.COLON, Pattern.compile(":"));
186 CssTokens.TokenType.COLUMN, Pattern.compile("\\|\\|"));
188 CssTokens.TokenType.COMMA, Pattern.compile(","));
191 Pattern.compile("[^\\w\u0000- \u0080-\uffff\\-]"));
193 CssTokens.TokenType.DIMENSION, Pattern.compile(NUMBER + "[a-z]+"));
195 CssTokens.TokenType.DOT_IDENT, Pattern.compile("\\." + IDENT));
197 CssTokens.TokenType.FUNCTION, Pattern.compile(IDENT + "[(]"));
199 CssTokens.TokenType.HASH_ID, Pattern.compile("#" + IDENT_PART + "+"));
202 Pattern.compile("#[
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/examples/
H A DEbayPolicyExample.java65 private static final Pattern COLOR_NAME = Pattern.compile(
70 private static final Pattern COLOR_CODE = Pattern.compile(
73 private static final Pattern NUMBER_OR_PERCENT = Pattern.compile(
75 private static final Pattern PARAGRAPH = Pattern.compile(
77 private static final Pattern HTML_ID = Pattern.compile(
80 private static final Pattern HTML_TITLE = Pattern.compile(
82 private static final Pattern HTML_CLASS = Pattern.compile(
85 private static final Pattern ONSITE_URL = Pattern.compile(
87 private static final Pattern OFFSITE_URL = Pattern.compile(
91 private static final Pattern NUMBER = Pattern.compile(
[all...]
/external/ltp/testcases/realtime/func/pi-tests/
H A Dparse-testpi1.py36 exp1= re.compile("pthread pol 0 pri 0")
37 exp2= re.compile(r'^Noise Thread')
38 exp3=re.compile("[1-9]\d{2,3}")
H A Dparse-testpi2.py37 exp1= re.compile("pthread pol 2 pri 10")
38 exp2= re.compile(r'^Noise Thread')
39 exp3=re.compile("[1-9]\d{2,3}")
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DSimpleFormatterTest.java32 SimpleFormatter fmt = SimpleFormatter.compile("This doesn''t have templates '{0}");
71 SimpleFormatter.compile("{}");
76 SimpleFormatter.compile("{12d");
86 SimpleFormatter.compile("{0} meter").format("1"));
91 SimpleFormatter fmt = SimpleFormatter.compile("a{20}c");
103 SimpleFormatter.compile(
109 SimpleFormatter fmt = SimpleFormatter.compile(
135 SimpleFormatter fmt = SimpleFormatter.compile(
160 SimpleFormatter fmt = SimpleFormatter.compile(
173 SimpleFormatter fmt = SimpleFormatter.compile("{
[all...]

Completed in 633 milliseconds

1234567891011>>