HomeSort by relevance Sort by last modified time
    Searched defs:Compile (Results 51 - 75 of 90) sorted by null

1 23 4

  /art/compiler/
image_test.h 63 void Compile(CompilerDriver* driver,
80 void Compile(ImageHeader::StorageMode storage_mode,
141 inline void CompilationHelper::Compile(CompilerDriver* driver,
364 inline void ImageTest::Compile(ImageHeader::StorageMode storage_mode,
378 helper.Compile(compiler_driver_.get(), storage_mode);
393 Compile(storage_mode, /*out*/ helper);
  /art/compiler/utils/
assembler_test_base.h 118 Compile(assembly_text, &res, test_name);
210 // Compile the assembly file from_file to a binary file to_file. Returns true on success.
377 // Compile the given assembly code and extract the binary, if possible. Put result into res.
378 bool Compile(const std::string& assembly_code,
397 res->error_msg = "Could not compile.";
  /external/pcre/pcrecpp/
pcrecpp.cc 64 re_partial_ = Compile(UNANCHORED);
66 re_full_ = Compile(ANCHOR_BOTH);
90 pcre2_code* RE::Compile(Anchor anchor) {
98 // As of pcre2 the newline mode must be passed through the compile context.
119 // UNANCHORED Compile the original pattern, and use
121 // ANCHOR_START Compile the original pattern, and use
211 // compile-time and now, but this is simpler and safe enough.
  /external/regex-re2/util/
pcre.cc 68 re_partial_ = Compile(UNANCHORED);
70 re_full_ = Compile(ANCHOR_BOTH);
103 pcre* PCRE::Compile(Anchor anchor) {
109 // UNANCHORED Compile the original pattern, and use
111 // ANCHOR_START Compile the original pattern, and use
    [all...]
  /frameworks/base/tools/aapt2/cmd/
Compile.cpp 33 #include "compile/IdAssigner.h"
34 #include "compile/InlineXmlFormatParser.h"
35 #include "compile/Png.h"
36 #include "compile/PseudolocaleGenerator.h"
37 #include "compile/XmlIdCollector.h"
645 int Compile(const std::vector<StringPiece>& args, IDiagnostics* diagnostics) {
662 if (!flags.Parse("aapt2 compile", args, &std::cerr)) {
675 flags.Usage("aapt2 compile", &std::cerr);
  /prebuilts/go/darwin-x86/src/regexp/
regexp.go 81 // read-only after Compile
90 expr string // as passed to Compile
104 // String returns the source text used to compile the regular expression.
121 // Compile parses a regular expression and returns, if successful,
131 func Compile(expr string) (*Regexp, error) {
132 return compile(expr, syntax.Perl, false)
135 // CompilePOSIX is like Compile but restricts the regular expression
155 return compile(expr, syntax.POSIX, true)
166 func compile(expr string, mode syntax.Flags, longest bool) (*Regexp, error) { func
175 prog, err := syntax.Compile(re
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
regexp.go 81 // read-only after Compile
90 expr string // as passed to Compile
104 // String returns the source text used to compile the regular expression.
121 // Compile parses a regular expression and returns, if successful,
131 func Compile(expr string) (*Regexp, error) {
132 return compile(expr, syntax.Perl, false)
135 // CompilePOSIX is like Compile but restricts the regular expression
155 return compile(expr, syntax.POSIX, true)
166 func compile(expr string, mode syntax.Flags, longest bool) (*Regexp, error) { func
175 prog, err := syntax.Compile(re
    [all...]
  /external/regex-re2/re2/
compile.cc 5 // Compile regular expression to Prog.
131 static Prog *Compile(Regexp* re, bool reversed, int64 max_mem);
991 Prog* Compiler::Compile(Regexp* re, bool reversed, int64 max_mem) {
1080 return Compiler::Compile(this, false, max_mem);
1084 return Compiler::Compile(this, true, max_mem);
1099 // Compile alternation of fragments.
    [all...]
  /art/compiler/optimizing/
code_generator.cc 230 void CodeGenerator::Compile(CodeAllocator* allocator) {
    [all...]
optimizing_compiler.cc 302 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 252 mutable std::unique_ptr<tools::gcc::Compiler> Compile;
    [all...]
  /external/v8/src/
compiler.cc 20 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h"
524 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"),
674 // Compile either unoptimized code or bytecode for the interpreter.
740 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"),
795 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.compile"),
    [all...]
api.cc 471 if (!ScriptCompiler::Compile(context, &source).ToLocal(&script)) return false;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xmltrnsf.h 106 virtual HRESULT WINAPI Compile(VARIANT *pvInputSource,BSTR strNamespacePath,LONG lClassFlags,LONG lInstanceFlags,WmiXMLCompilationTypeEnum iOperation,IDispatch *pCtx,VARIANT_BOOL *pStatus) = 0;
146 HRESULT (WINAPI *Compile)(IWmiXMLTransformer *This,VARIANT *pvInputSource,BSTR strNamespacePath,LONG lClassFlags,LONG lInstanceFlags,WmiXMLCompilationTypeEnum iOperation,IDispatch *pCtx,VARIANT_BOOL *pStatus);
188 #define IWmiXMLTransformer_Compile(This,pvInputSource,strNamespacePath,lClassFlags,lInstanceFlags,iOperation,pCtx,pStatus) (This)->lpVtbl->Compile(This,pvInputSource,strNamespacePath,lClassFlags,lInstanceFlags,iOperation,pCtx,pStatus)
  /art/compiler/driver/
compiler_driver.cc 415 // Compile:
416 // 1) Compile all classes and methods enabled for compilation. May fall back to dex-to-dex
419 Compile(class_loader, dex_files, timings);
509 // This is the second pass when we dex-to-dex compile previously marked methods.
579 bool compile = compilation_enabled && local
588 // Is eligable for compilation by methods-to-compile filter.
592 if (compile) {
593 // NOTE: if compiler declines to compile this method, it will return null.
594 compiled_method = driver->GetCompiler()->Compile(code_item,
    [all...]
  /art/dex2oat/
dex2oat.cc 216 UsageError(" --dex-file=<dex-file>: specifies a .dex, .jar, or .apk file to compile.");
225 UsageError(" containing a classes.dex file to compile.");
269 UsageError(" --instruction-set=(arm|arm64|mips|mips64|x86|x86_64): compile for a particular");
278 UsageError(" --compile-pic: Force indirect use of code, methods, and classes");
    [all...]
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/CodeWarrior/
Metrowerks_Shell_Suite.py 116 def Compile(self, _object, _attributes={}, **_arguments):
117 """Compile: Compile the specified file(s)
118 Required argument: List of files to compile
748 Required argument: List of files to compile
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Metrowerks_Shell_Suite.py 116 def Compile(self, _object, _attributes={}, **_arguments):
117 """Compile: Compile the specified file(s)
118 Required argument: List of files to compile
748 Required argument: List of files to compile
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Metrowerks_Shell_Suite.py 116 def Compile(self, _object, _attributes={}, **_arguments):
117 """Compile: Compile the specified file(s)
118 Required argument: List of files to compile
748 Required argument: List of files to compile
    [all...]
  /external/v8/src/regexp/
jsregexp.cc 135 MaybeHandle<Object> RegExpImpl::Compile(Handle<JSRegExp> re,
337 // Compile the RegExp.
378 RegExpEngine::Compile(isolate, &zone, &compile_data, flags, pattern,
381 // Unable to compile regexp.
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/
xalan-2.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha4/
intellij-core-26.0.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/intellij-core/26.0.0-alpha5/
intellij-core-26.0.0-alpha5.jar 

Completed in 2129 milliseconds

1 23 4