Searched refs:option (Results 1 - 19 of 19) sorted by relevance

/art/test/116-nodex2oat/
H A Drun25 ${RUN} ${flags} --runtime-option -Xnodex2oat
29 ${RUN} ${flags} --runtime-option -Xdex2oat
/art/test/117-nopatchoat/
H A Drun28 ${RUN} ${flags} --runtime-option -Xnodex2oat
32 ${RUN} ${flags} --runtime-option -Xdex2oat
/art/test/304-method-tracing/
H A Drun18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin
/art/test/118-noimage-dex2oat/
H A Drun24 BPATH="--runtime-option -Xbootclasspath:$ANDROID_HOST_OUT/../common/obj/JAVA_LIBRARIES/core-libart-hostdex_intermediates/javalib.jar"
28 BPATH="--runtime-option -Xbootclasspath:/system/framework/core-libart.jar"
33 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat
37 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
/art/test/119-noimage-patchoat/
H A Drun28 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin}
32 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
/art/runtime/
H A Dparsed_options.cc107 static gc::CollectorType ParseCollectorType(const std::string& option) { argument
108 if (option == "MS" || option == "nonconcurrent") {
110 } else if (option == "CMS" || option == "concurrent") {
112 } else if (option == "SS") {
114 } else if (option == "GSS") {
116 } else if (option == "CC") {
118 } else if (option == "MC") {
125 bool ParsedOptions::ParseXGcOption(const std::string& option) { argument
898 ParseDouble(const std::string& option, char after_char, double min, double max, double* parsed_value) argument
[all...]
H A Dparsed_options.h120 bool ParseXGcOption(const std::string& option);
121 bool ParseStringAfterChar(const std::string& option, char after_char, std::string* parsed_value);
122 bool ParseInteger(const std::string& option, char after_char, int* parsed_value);
123 bool ParseUnsignedInteger(const std::string& option, char after_char, unsigned int* parsed_value);
124 bool ParseDouble(const std::string& option, char after_char, double min, double max,
H A Druntime.h136 void AddCompilerOption(std::string option) { argument
137 compiler_options_.push_back(option);
658 // The option 'native_bridge_library_filename' specifies the name of the native bridge.
H A Djni_internal.cc3022 JavaVMOption* option = &args->options[i]; local
3023 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
/art/test/etc/
H A Dhost-run-test-jar52 option="$1"
53 BOOT_OPT="$option"
54 BUILD_BOOT_OPT="--boot-image=${option#-Ximage:}"
100 elif [ "x$1" = "x-Xcompiler-option" ]; then
102 option="$1"
103 FLAGS="${FLAGS} -Xcompiler-option $option"
104 COMPILER_FLAGS="${COMPILER_FLAGS} $option"
106 elif [ "x$1" = "x--runtime-option" ]; then
108 option
[all...]
H A Dpush-and-run-test-jar40 elif [ "x$1" = "x-Xcompiler-option" ]; then
42 option="$1"
43 FLAGS="${FLAGS} -Xcompiler-option $option"
45 elif [ "x$1" = "x--runtime-option" ]; then
47 option="$1"
48 FLAGS="${FLAGS} $option"
106 echo "unknown $0 option: $1" 1>&2
151 # TODO: add a separate --ddms option?
179 FLAGS="${FLAGS} -Xcompiler-option
[all...]
H A Dpush-and-run-prebuilt-test-jar44 elif [ "x$1" = "x-Xcompiler-option" ]; then
46 option="$1"
47 FLAGS="${FLAGS} -Xcompiler-option $option"
48 COMPILE_FLAGS="${COMPILE_FLAGS} $option"
50 elif [ "x$1" = "x--runtime-option" ]; then
52 option="$1"
53 FLAGS="${FLAGS} $option"
113 echo "unknown $0 option: $1" 1>&2
164 # TODO: add a separate --ddms option
[all...]
/art/dex2oat/
H A Ddex2oat.cc765 Usage("Missing char %c in option %s\n", c, s.c_str());
771 void ParseDouble(const std::string& option, char after_char, argument
774 ParseStringAfterChar(option, after_char, &substring);
789 Usage("Invalid double value %s for option %s\n", substring.c_str(), option.c_str());
912 const StringPiece option(argv[i]);
915 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
917 if (option.starts_with("--dex-file=")) {
918 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
919 } else if (option
[all...]
/art/test/115-native-bridge/
H A Drun29 exec ${RUN} --runtime-option -XX:NativeBridge=libnativebridgetest.so ${MODARGS} NativeBridgeMain
/art/patchoat/
H A Dpatchoat.cc957 const StringPiece option(argv[i]);
960 LOG(INFO) << "patchoat: option[" << i << "]=" << argv[i];
962 if (option.starts_with("--instruction-set=")) {
964 const char* isa_str = option.substr(strlen("--instruction-set=")).data();
969 } else if (option.starts_with("--input-oat-location=")) {
974 input_oat_location = option.substr(strlen("--input-oat-location=")).data();
975 } else if (option.starts_with("--input-oat-file=")) {
980 input_oat_filename = option.substr(strlen("--input-oat-file=")).data();
981 } else if (option.starts_with("--input-oat-fd=")) {
986 const char* oat_fd_str = option
[all...]
/art/test/
H A Drun-test116 elif [ "x$1" = "x-Xcompiler-option" ]; then
118 option="$1"
119 run_args="${run_args} -Xcompiler-option $option"
121 elif [ "x$1" = "x--runtime-option" ]; then
123 option="$1"
124 run_args="${run_args} --runtime-option $option"
194 echo "unknown $0 option: $1" 1>&2
207 # Fallback to nuclear option
[all...]
H A DAndroid.run-test.mk360 run_test_options := $(addprefix --runtime-option ,$(DALVIKVM_FLAGS))
413 run_test_options += -Xcompiler-option --compiler-backend=Optimizing
444 run_test_options += --runtime-option -Xgc:preverify --runtime-option -Xgc:postverify \
445 --runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc
452 run_test_options += --runtime-option -Xgc:SS --runtime-option -Xms2m \
453 --runtime-option -Xmx2m --runtime-option
[all...]
/art/oatdump/
H A Doatdump.cc1716 const StringPiece option(argv[i]);
1717 if (option.starts_with("--oat-file=")) {
1718 oat_filename = option.substr(strlen("--oat-file=")).data();
1719 } else if (option.starts_with("--image=")) {
1720 image_location = option.substr(strlen("--image=")).data();
1721 } else if (option.starts_with("--boot-image=")) {
1722 boot_image_location = option.substr(strlen("--boot-image=")).data();
1723 } else if (option.starts_with("--instruction-set=")) {
1724 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
1736 } else if (option
[all...]
/art/build/
H A DAndroid.common_build.mk100 DALVIKVM_FLAGS += -Xcompiler-option --compiler-backend=Optimizing

Completed in 9419 milliseconds