HomeSort by relevance Sort by last modified time
    Searched refs:compiler_options (Results 1 - 14 of 14) sorted by null

  /art/compiler/dex/
verification_results.cc 23 #include "driver/compiler_options.h"
32 VerificationResults::VerificationResults(const CompilerOptions* compiler_options)
33 : compiler_options_(compiler_options),
38 UNUSED(compiler_options);
verification_results.h 42 explicit VerificationResults(const CompilerOptions* compiler_options);
mir_analysis.cc 27 #include "driver/compiler_options.h"
1010 const CompilerOptions& compiler_options = cu_->compiler_driver->GetCompilerOptions(); local
1011 CompilerOptions::CompilerFilter compiler_filter = compiler_options.GetCompilerFilter();
1022 if (!compiler_options.IsCompilationEnabled()) {
1032 small_cutoff = compiler_options.GetSmallMethodThreshold();
1033 default_cutoff = compiler_options.GetLargeMethodThreshold();
1036 small_cutoff = compiler_options.GetTinyMethodThreshold();
1037 default_cutoff = compiler_options.GetSmallMethodThreshold();
1040 small_cutoff = compiler_options.GetHugeMethodThreshold();
1041 default_cutoff = compiler_options.GetHugeMethodThreshold()
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
idl_schema.py 346 compiler_options=None,
352 self.compiler_options = compiler_options
375 if self.compiler_options is not None:
376 compiler_options = self.compiler_options
378 compiler_options = {}
387 'compiler_options': compiler_options,
414 compiler_options = {
    [all...]
cpp_bundle_generator.py 192 implementation_header = namespace.compiler_options.get(
200 if "implemented_in" in namespace.compiler_options:
202 'compiler_options not found: %s' %
model.py 100 - |compiler_options| the compiler_options dict, only not empty if
128 self.compiler_options = json.get('compiler_options', {})
130 self.compiler_options = {}
h_generator.py 26 self._generate_error_messages = namespace.compiler_options.get(
cc_generator.py 29 self._generate_error_messages = namespace.compiler_options.get(
    [all...]
  /art/dex2oat/
dex2oat.cc 46 #include "driver/compiler_options.h"
246 const CompilerOptions& compiler_options,
256 std::unique_ptr<Dex2Oat> dex2oat(new Dex2Oat(&compiler_options,
508 explicit Dex2Oat(const CompilerOptions* compiler_options,
515 : compiler_options_(compiler_options),
524 CHECK(compiler_options != nullptr);
    [all...]
  /art/runtime/gc/space/
image_space.cc 188 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions(); local
189 for (size_t i = 0; i < compiler_options.size(); ++i) {
190 arg_vector.push_back(compiler_options[i].c_str());
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm     [all...]
  /art/compiler/driver/
compiler_driver.cc 40 #include "driver/compiler_options.h"
332 CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options,
344 profile_present_(false), compiler_options_(compiler_options),
393 if (compiler_options->GetGenerateGDBInformation()) {
    [all...]
compiler_driver.h 30 #include "driver/compiler_options.h"
104 explicit CompilerDriver(const CompilerOptions* compiler_options,
    [all...]
  /art/runtime/
class_linker.cc 661 const std::vector<std::string>& compiler_options = Runtime::Current()->GetCompilerOptions(); local
662 for (size_t i = 0; i < compiler_options.size(); ++i) {
663 argv.push_back(compiler_options[i].c_str());
    [all...]

Completed in 799 milliseconds