Home
last modified time | relevance | path

Searched refs:option (Results 1 – 14 of 14) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DTestModuleConfigHandler.java75 Option.Builder option = Option.newBuilder(); in startElement() local
76 option.setName(attributes.getValue(NAME_TAG)); in startElement()
77 option.setValue(attributes.getValue(VALUE_TAG)); in startElement()
80 option.setKey(keyStr); in startElement()
83 mTestCase.addOptions(option); in startElement()
84 if (GTEST_CLASS_TAG.equalsIgnoreCase(option.getName())) { in startElement()
85 mModuleName = option.getValue(); in startElement()
88 mTargetPreparer.addOptions(option); in startElement()
/cts/tests/tests/graphics/src/android/graphics/cts/
DBitmapFactory_OptionsTest.java47 BitmapFactory.Options option = new BitmapFactory.Options(); in testRequestCancelDecode() local
49 assertFalse(option.mCancel); in testRequestCancelDecode()
50 option.requestCancelDecode(); in testRequestCancelDecode()
51 assertTrue(option.mCancel); in testRequestCancelDecode()
/cts/suite/audio_quality/lib/src/audio/
DBuffer.cpp45 void Buffer::changeToMono(ConvertOption option) in changeToMono() argument
49 if (option == EKeepCh0) { in changeToMono()
54 } else if (option == EKeepCh1) { in changeToMono()
/cts/tools/utils/
DDescriptionGenerator.java113 for (String[] option : options) { in start()
114 if (option.length == 2) { in start()
115 if (option[0].equals(OUTPUT_PATH_OPTION)) { in start()
116 outputPath = option[1]; in start()
117 } else if (option[0].equals(ARCHITECTURE_OPTION)) { in start()
118 architecture = option[1]; in start()
164 public static int optionLength(String option) { in optionLength() argument
165 if (option.equals(OUTPUT_PATH_OPTION)) { in optionLength()
/cts/hostsidetests/theme/
Dandroid_device.py93 def run_instrumentation_test(self, option): argument
95 return self.run_shell_command("am instrument -w --no-window-animation %s" % option)
DREADME70 There is an option to build locally an Android system image and use an emulator that is stored in
71 Android source tree under "prebuilts/android-emulator/linux-x86_64/emulator". This option does not
/cts/suite/audio_quality/lib/include/audio/
DBuffer.h105 void changeToMono(ConvertOption option);
/cts/tools/cts-api-coverage/proto/
Dtestsuite.proto21 option java_package = "com.android.cts.apicoverage";
22 option java_outer_classname = "TestSuiteProto";
Dcts_report.proto20 option java_package = "com.android.cts.apicoverage";
21 option java_outer_classname = "CtsReportProto";
/cts/tests/tests/batterysaving/common/proto/
Dbattery_saver_cts_common.proto18 option java_outer_classname = "BatterySavingCtsCommon";
/cts/tests/tests/syncmanager/common/proto/
Dsync_manager_cts.proto18 option java_outer_classname = "SyncManagerCtsProto";
/cts/tests/tests/proto/src/android/util/proto/cts/
Dtest.proto45 option allow_alias = true;
/cts/apps/CameraITS/build/scripts/
Dgpylint_rcfile9 # option multiple times (only on the command line, not in the configuration
16 …ute-defined-outside-init,locally-disabled,star-args,pointless-except,bad-option-value,global-state…
19 # either give multiple identifier separated by comma (,) or put this option
20 # multiple time. See also the "--disable" option for examples.
/cts/tests/tests/media/src/android/media/cts/
DMediaMetadataRetrieverTest.java322 private void testGetFrameAtTime(int option, int[][] testCases) { in testGetFrameAtTime() argument
326 bitmaps.add(r.getFrameAtTime(testCases[i][0], option)); in testGetFrameAtTime()