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

1234567891011>>

/external/python/cpython2/Lib/test/crashers/
H A Dcompiler_recursion.py5 compile('()'*9**5, '?', 'exec')
H A Dinfinite_loop_re.py8 starttag = re.compile(r'<[a-zA-Z][-_.:a-zA-Z0-9]*\s*('
/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/tensorflow/tensorflow/java/src/test/java/org/tensorflow/processor/
H A DOperatorProcessorTest.java18 import static com.google.testing.compile.CompilationSubject.assertThat;
20 import com.google.testing.compile.Compilation;
21 import com.google.testing.compile.Compiler;
22 import com.google.testing.compile.JavaFileObjects;
33 Compilation compile = compile("org/tensorflow/processor/operator/good/BasicGood.java");
34 assertThat(compile).succeededWithoutWarnings();
35 assertThat(compile).generatedSourceFile("org.tensorflow.op.Ops");
40 assertThat(compile("org/tensorflow/processor/operator/bad/BasicBad.java")).failed();
44 private static Compilation compile(Strin method in class:OperatorProcessorTest
[all...]
/external/smali/util/
H A Dbuild.gradle33 compile depends.findbugs
34 compile depends.guava
35 compile depends.jcommander
/external/python/cpython3/Lib/test/
H A Dtest_flufl.py8 compile(code.format('<>'), '<BDFL test>', 'exec',
10 self.assertRaises(SyntaxError, compile, code.format('!='),
16 compile(code.format('!='), '<BDFL test>', 'exec')
17 self.assertRaises(SyntaxError, compile, code.format('<>'),
/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.gradle48 * Finally, if none of that is true, attempt to compile against the full source trees.
62 compile 'org.antlr:antlr:3.5.2'
63 compile 'com.google.jsilver:jsilver:1.0.0'
64 compile 'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
66 compile 'com.google.guava:guava:15.0'
70 compile project(path: ':antlr', configuration: 'antlrRuntime')
71 compile project(':jsilver')
72 compile project(':tagsoup')
81 compile files(((URLClassLoader) ToolProvider.getSystemToolClassLoader()).getURLs())
/external/python/cpython3/Lib/test/crashers/
H A Dinfinite_loop_re.py8 starttag = re.compile(r'<[a-zA-Z][-_.:a-zA-Z0-9]*\s*('
/external/jacoco/jacoco-maven-plugin.test/it/it-report-aggregate/
H A Dverify.bsh17 if ( !Pattern.compile( "Loading execution data file \\S*child1.target.jacoco.exec").matcher( buildLog ).find() ) {
21 if ( !Pattern.compile( "Loading execution data file \\S*child1-test.target.jacoco.exec").matcher( buildLog ).find() ) {
25 if ( !Pattern.compile( "Loading execution data file \\S*child2.target.jacoco.exec").matcher( buildLog ).find() ) {
29 if ( !Pattern.compile( "Loading execution data file \\S*report.target.jacoco.exec").matcher( buildLog ).find() ) {
/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/jacoco/jacoco-maven-plugin.test/it/it-report-aggregate-customization/
H A Dverify.bsh19 if ( !Pattern.compile( "Loading execution data file \\S*child1.target.child1.coverage").matcher( buildLog ).find() ) {
23 if ( Pattern.compile( "Loading execution data file \\S*child2").matcher( buildLog ).find() ) {
/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/python/cpython2/Lib/compiler/
H A D__init__.py17 compile(source, filename, mode, flags=None, dont_inherit=None)
18 Returns a code object. A replacement for the builtin compile() function.
31 from compiler.pycodegen import compile, compileFile namespace
/external/skia/gn/
H A Dhighest_version_dir.py13 regex = re.compile(sys.argv[2])
/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,} (.)$')

Completed in 296 milliseconds

1234567891011>>