Searched refs:compile (Results 1 – 25 of 36) sorted by relevance
12
/art/tools/ |
D | check_cfi.py | 36 section_re = re.compile("^debug_line\[0x[0-9a-f]+\]$", re.MULTILINE) 37 filename_re = re.compile('file_names\[ *(\d)+\]:\n\s*name: "(.*)"', re.MULTILINE) 38 line_re = re.compile('0x([0-9a-f]{16}) +(\d+) +\d+ +(\d+)' # addr, line, column, file 60 section_re = re.compile("\n(?! |\n)", re.MULTILINE) # New-line not followed by indent. 61 fda_re = re.compile(".* FDE .* pc=([0-9a-f]+)...([0-9a-f]+)") 82 section_re = re.compile("\n(?! |\n)", re.MULTILINE) # New-line not followed by indent. 83 sym_re = re.compile("([0-9a-f]+) <(.+)>:") 97 cfa_re = re.compile("0x([0-9a-f]+): CFA=([^\s:]+)") 106 inst_re = re.compile(r"([0-9a-f]+): +(?:[0-9a-f]{2} +)*(.*)") 130 rexprs.append((re.compile(rexpr), adjust_offset)) [all …]
|
D | analyze-init-failures.py | 27 _CLASS_RE = re.compile(r'^L(.*);$') 28 _ERROR_LINE_RE = re.compile(r'^dalvik.system.TransactionAbortError: (.*)') 29 _STACK_LINE_RE = re.compile(r'^\s*at\s[^\s]*\s([^\s]*)')
|
D | compile-jar.sh | 37 $ANDROID_BUILD_TOP/art/tools/compile-jar.py --arch=$ISA --odex-file=$OUTPUT $FILE $@
|
D | generate_operator_out.py | 24 _ENUM_START_RE = re.compile( 26 _ENUM_VALUE_RE = re.compile(r'([A-Za-z0-9_]+)(.*)') 27 _ENUM_END_RE = re.compile(r'^\s*\};$')
|
D | compile-classes.sh | 34 $ANDROID_BUILD_TOP/art/tools/compile-jar.sh $DEX_FILE $ODEX_FILE arm64 \
|
D | PresubmitJsonLinter.java | 110 Pattern.compile( in readExpectation() 118 Pattern.compile(reader.nextString(), FLAGS); in readExpectation()
|
D | run-libcore-tests.py | 504 failed_regex = re.compile(r"^.* FAIL \((?:EXEC_FAILED|ERROR)\)$", re.MULTILINE)
|
D | art | 396 --no-compile)
|
/art/runtime/interpreter/mterp/ |
D | gen_mterp.py | 31 opcode_re = re.compile(r"^\s*V\((....), (\w+),.*", re.DOTALL) 44 indent_re = re.compile(r"^%( *)") 47 escape_re = re.compile(r''' 98 exec(compile(script, script_filename, mode='exec'))
|
/art/test/511-clinit-interface/ |
D | info.txt | 1 Test that compilers don't crash when having to compile
|
/art/test/911-get-stack-trace/src/art/ |
D | PrintThread.java | 48 Pattern.compile(IGNORE_THREAD_NAME_REGEX).matcher(""); 55 Pattern.compile(CUT_STACK_THREAD_NAME_REGEX).matcher("");
|
/art/test/121-modifiers/ |
D | info.txt | 5 To reproduce, compile the source files. Asm.java needs the ASM libraries (core and tree). Then 8 Finally, compile with jack/jill or dx, and run baksmali.
|
/art/test/629-vdex-speed/ |
D | info.txt | 1 Regression test for vdex that used to not AOT compile
|
/art/test/674-vdex-uncompress/ |
D | info.txt | 1 Test that dex2oat can compile an APK that has uncompressed dex files,
|
/art/test/800-smali/ |
D | info.txt | 2 Will compile and run all the smali files in smali/ and run the test cases mentioned in src/Main.jav…
|
/art/tools/cpp-define-generator/ |
D | make_header.py | 34 asm_define_re = re.compile(r'">>(\w+) (?:\$|#)?([-0-9]+) (?:\$|#)?(0|1)<<"')
|
D | Android.bp | 17 // This produces human-readable asm_defines.s with the embedded compile-time constants. 54 // This extracts the compile-time constants from asm_defines.s and creates the header.
|
/art/test/664-aget-verifier/ |
D | info.txt | 5 checks and never actually null at runtime. This fails compile-time verification,
|
/art/test/965-default-verify/ |
D | info.txt | 4 build-src contains java files that are needed if you are to compile with javac
|
/art/tools/ahat/ |
D | Android.mk | 73 $(PRIVATE_AHAT_TEST_ART) --no-compile -d $(PRIVATE_AHAT_TEST_DALVIKVM_ARG) \ 84 $(PRIVATE_AHAT_TEST_ART) --no-compile -d $(PRIVATE_AHAT_TEST_DALVIKVM_ARG) \
|
/art/test/094-pattern/src/ |
D | Main.java | 72 public static final Pattern WEB_URL = Pattern.compile(WEB_URL_STR);
|
/art/tools/checker/match/ |
D | line.py | 65 pattern = re.compile(pattern)
|
/art/test/435-try-finally-without-catch/ |
D | info.txt | 10 be non-null at compile-time (as is the case in this test), it will
|
/art/tools/dexfuzz/src/dexfuzz/executors/ |
D | Device.java | 245 Matcher m = Pattern.compile("(\'[^\']+\'| *[^ ]+ *)").matcher(command); in splitCommand()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 503 bool compile = (compiler_options.GetCompilerFilter() == CompilerFilter::kEverything) || in CompileMethodQuick() local 506 compile = compile && !results->IsUncompilableMethod(method_ref); in CompileMethodQuick() 508 compile = compile && ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref); in CompileMethodQuick() 510 if (compile) { in CompileMethodQuick() 2581 auto compile = [&context, &compile_fn, profile_index](size_t class_def_index) { in CompileDexFile() local 2647 context.ForAllLambda(0, dex_file.NumClassDefs(), compile, thread_count); in CompileDexFile()
|
12