• Home
  • Raw
  • Download

Lines Matching refs:Usage

58 void CompilerOptions::ParseHugeMethodMax(const StringPiece& option, UsageFn Usage) {  in ParseHugeMethodMax()  argument
59 ParseUintOption(option, "--huge-method-max", &huge_method_threshold_, Usage); in ParseHugeMethodMax()
62 void CompilerOptions::ParseLargeMethodMax(const StringPiece& option, UsageFn Usage) { in ParseLargeMethodMax() argument
63 ParseUintOption(option, "--large-method-max", &large_method_threshold_, Usage); in ParseLargeMethodMax()
66 void CompilerOptions::ParseSmallMethodMax(const StringPiece& option, UsageFn Usage) { in ParseSmallMethodMax() argument
67 ParseUintOption(option, "--small-method-max", &small_method_threshold_, Usage); in ParseSmallMethodMax()
70 void CompilerOptions::ParseTinyMethodMax(const StringPiece& option, UsageFn Usage) { in ParseTinyMethodMax() argument
71 ParseUintOption(option, "--tiny-method-max", &tiny_method_threshold_, Usage); in ParseTinyMethodMax()
74 void CompilerOptions::ParseNumDexMethods(const StringPiece& option, UsageFn Usage) { in ParseNumDexMethods() argument
75 ParseUintOption(option, "--num-dex-methods", &num_dex_methods_threshold_, Usage); in ParseNumDexMethods()
78 void CompilerOptions::ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage) { in ParseInlineMaxCodeUnits() argument
79 ParseUintOption(option, "--inline-max-code-units", &inline_max_code_units_, Usage); in ParseInlineMaxCodeUnits()
83 UsageFn Usage ATTRIBUTE_UNUSED) { in ParseDumpInitFailures()
97 UsageFn Usage) { in ParseRegisterAllocationStrategy() argument
105 Usage("Unrecognized register allocation strategy. Try linear-scan, or graph-color."); in ParseRegisterAllocationStrategy()
109 bool CompilerOptions::ParseCompilerOption(const StringPiece& option, UsageFn Usage) { in ParseCompilerOption() argument
113 Usage("Unknown --compiler-filter value %s", compiler_filter_string); in ParseCompilerOption()
118 ParseHugeMethodMax(option, Usage); in ParseCompilerOption()
120 ParseLargeMethodMax(option, Usage); in ParseCompilerOption()
122 ParseSmallMethodMax(option, Usage); in ParseCompilerOption()
124 ParseTinyMethodMax(option, Usage); in ParseCompilerOption()
126 ParseNumDexMethods(option, Usage); in ParseCompilerOption()
128 ParseInlineMaxCodeUnits(option, Usage); in ParseCompilerOption()
144 ParseDouble(option.data(), '=', 0.0, 100.0, &top_k_profile_threshold_, Usage); in ParseCompilerOption()
148 ParseDumpInitFailures(option, Usage); in ParseCompilerOption()
154 ParseRegisterAllocationStrategy(option, Usage); in ParseCompilerOption()