HomeSort by relevance Sort by last modified time
    Searched refs:scenario (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/autotest/server/cros/cfm/configurable_test/
cfm_test.py 8 def __init__(self, scenario, configuration=configuration.Configuration()):
12 @param scenario The scenario to run.
16 self.scenario = scenario
20 return ('CfmTest\n scenario: %s\n configuration: %s'
21 % (self.scenario, self.configuration))
configurable_cfm_test_unittest.py 18 scenario=Scenario(
33 scenario=Scenario(
35 RepeatTimes(5, Scenario(
dsl.py 12 from autotest_lib.server.cros.cfm.configurable_test.scenario import *
actions_unittest.py 8 from autotest_lib.server.cros.cfm.configurable_test import scenario
109 scenarios = [scenario.Scenario(dummy_action1),
110 scenario.Scenario(dummy_action2)]
125 scenarios1 = [scenario.Scenario(scenario1_action1),
126 scenario.Scenario(scenario1_action2)]
129 scenarios2 = [scenario.Scenario(scenario2_action1)
    [all...]
actions.py 114 Repeats a scenario a number of times.
116 def __init__(self, times, scenario):
120 @param times The number of times to repeat the scenario.
121 @param scenario The scenario to repeat.
125 self.scenario = scenario
128 return 'Repeat[scenario=%s, times=%s]' % (self.scenario, self.times)
132 self.scenario.execute(context
    [all...]
configurable_cfm_test.py 28 cfm_test.scenario.execute(self.context)
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
NitzStateMachineTest.java 81 private static final Scenario UNIQUE_US_ZONE_SCENARIO = new Scenario.Builder()
113 private static final Scenario UNITED_KINGDOM_SCENARIO = new Scenario.Builder()
146 Scenario scenario = UNIQUE_US_ZONE_SCENARIO; local
148 .setClocksFromScenario(scenario)
156 long expectedTimeMillis = scenario.getActualTimeMillis() + clockIncrement;
157 script.countryReceived(scenario.getNetworkCountryIsoCode())
162 .nitzReceived(scenario.getNitzSignal()
174 Scenario scenario = UNITED_KINGDOM_SCENARIO; local
202 Scenario scenario = UNIQUE_US_ZONE_SCENARIO; local
230 Scenario scenario = UNITED_KINGDOM_SCENARIO; local
257 Scenario scenario = UNIQUE_US_ZONE_SCENARIO; local
281 Scenario scenario = UNITED_KINGDOM_SCENARIO; local
305 Scenario scenario = UNIQUE_US_ZONE_SCENARIO; local
329 Scenario scenario = UNITED_KINGDOM_SCENARIO; local
353 Scenario scenario = UNIQUE_US_ZONE_SCENARIO; local
387 Scenario scenario = UNITED_KINGDOM_SCENARIO; local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Trial.java 32 * An invocation of a single scenario measured with a single instrument and the results thereof.
42 private Scenario scenario; field in class:Trial
49 this.scenario = Scenario.DEFAULT;
57 this.scenario = builder.scenario;
73 public Scenario scenario() { method in class:Trial
74 return scenario;
114 private Scenario scenario; field in class:Trial.Builder
139 public Builder scenario(Scenario.Builder scenarioBuilder) { method in class:Trial.Builder
143 public Builder scenario(Scenario scenario) { method in class:Trial.Builder
    [all...]
  /hardware/interfaces/wifi/1.1/
IWifiChip.hal 49 * 802.11 connection type, number of MIMO streams, etc) for each scenario
60 * The framework must invoke this method with the appropriate scenario to let
65 * @param scenario One of the preselected scenarios defined in
75 selectTxPowerScenario(TxPowerScenario scenario) generates (WifiStatus status);
80 * scenario and let the wifi chip fall back to the default power values.
  /hardware/interfaces/wifi/1.2/
IWifiChip.hal 42 * 802.11 connection type, number of MIMO streams, etc) for each scenario
56 * The framework must invoke this method with the appropriate scenario to let
61 * @param scenario One of the preselected scenarios defined in
71 selectTxPowerScenario_1_2(TxPowerScenario scenario) generates (WifiStatus status);
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
ConcatTest.java 85 public static Object[] createTests(String scenario, Collection<Integer> c1, Collection<Integer> c2, Collection<Integer> expected) {
87 new ConcatTest(scenario, c1, c2, expected)
91 protected final String scenario; field in class:ConcatTest
96 public ConcatTest(String scenario, Collection<Integer> c1, Collection<Integer> c2, Collection<Integer> expected) {
97 this.scenario = scenario;
127 assertFalse(sp.hasCharacteristics(Spliterator.DISTINCT), scenario); local
129 assertFalse(sp.hasCharacteristics(Spliterator.SORTED), scenario); local
131 assertEquals(sp.hasCharacteristics(Spliterator.ORDERED), ordered, scenario); local
137 scenario); local
141 scenario); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
OrderingTest.java 848 Scenario<T> starter = new Scenario<T>((Ordering) ordering, list, emptyArray);
852 private static <T> void verifyScenario(Scenario<T> scenario, int level) {
853 scenario.testCompareTo();
854 scenario.testIsOrdered();
855 scenario.testMinAndMax();
856 scenario.testBinarySearch();
857 scenario.testSortedCopy();
861 verifyScenario(alteration.mutate(scenario), level + 1)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
OrderingTest.java 882 Scenario<T> starter = new Scenario<T>((Ordering) ordering, list, emptyArray);
886 private static <T> void verifyScenario(Scenario<T> scenario, int level) {
887 scenario.testCompareTo();
888 scenario.testIsOrdered();
889 scenario.testMinAndMax();
890 scenario.testBinarySearch();
891 scenario.testSortedCopy();
895 verifyScenario(alteration.mutate(scenario), level + 1)
    [all...]
  /external/parameter-framework/upstream/tools/clientSimulator/
pfClientSimulator.py 36 from clientsimulator.scenario.Scenario import Scenario
83 Scenario(consoleLogger,
89 logger.info("Scenario execution complete.")
101 parser.add_argument("-s", "--scenario", type=int, default=None, nargs='+',
107 " implicit if neither '--scenario' nor '--interactive' are "
203 if args.scenario is not None:
204 for elem in args.scenario:
206 if (args.scenario is None) or args.no_exit
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ConsoleOutput.java 22 import com.google.caliper.model.Scenario;
132 Scenario scenario = trial.scenario(); local
133 vmSpecs.add(scenario.vmSpec());
134 benchmarkSpecs.add(scenario.benchmarkSpec());
TrialModule.java 26 import com.google.caliper.model.Scenario;
134 .scenario(new Scenario.Builder()
  /external/abi-compliance-checker/
Makefile.pl 88 sub scenario() subroutine
293 scenario();
  /external/abi-dumper/
Makefile.pl 83 sub scenario() subroutine
262 scenario();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SarManager.java 55 /* Current SAR Scenario */
141 time for SAR scenario to take effect */
160 pw.println("Current SAR Scenario is " + scenarioToString(mCurrentSarScenario));
192 * update the Current SAR Scenario based on factors including:
206 // Only update HAL with new scenario if WiFi interface is enabled
208 Log.d(TAG, "Sending SAR Scenario #" + scenarioToString(newSarScenario));
218 * Update HAL with the new power scenario.
222 Log.e(TAG, "Failed to set TX power scenario");
227 * Convert SAR Scenario to string
229 private String scenarioToString(int scenario) {
    [all...]
  /hardware/interfaces/wifi/1.2/default/
wifi_chip.h 135 V1_1::IWifiChip::TxPowerScenario scenario,
143 TxPowerScenario scenario,
198 WifiStatus selectTxPowerScenarioInternal(V1_1::IWifiChip::TxPowerScenario scenario);
202 WifiStatus selectTxPowerScenarioInternal_1_2(TxPowerScenario scenario);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
BaseWrapContentTest.java 45 * It does so by running the same view scenario twice. Once with match parent setup to record all
115 protected void testScenerio(Scenario scenario) throws Throwable {
132 List<Snapshot> s1 = runScenario(scenario, matchParent, null);
135 List<Snapshot> s2 = runScenario(scenario, wrapContent, s1);
145 public List<Snapshot> runScenario(Scenario scenario, ViewGroup.LayoutParams lp,
151 RecyclerView.LayoutManager layoutManager = scenario.createLayoutManager();
157 mTestAdapter = new TestAdapter(scenario.getSeedAdapterSize());
164 for (Step step : scenario.mStepList)
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
wificonfig.cpp 294 wifi_power_scenario scenario)
303 ALOGV("%s : power scenario:%d", __FUNCTION__, scenario);
337 switch (scenario) {
356 ALOGE("wifi_select_tx_power_scenario: invalid scenario %d", scenario);
  /compatibility/cdd/3_software/
3_1_managed-api-compatibility.md 24 for specific requirements for this scenario.
  /external/ltp/
ltpmenu 38 # March 31 2003 - Made scenario menu creation dynamic and code
39 # to pull the test descriptions from the scenario files.
43 # scenario file.
314 # Input: Users selection of testcases; scenario file.
441 # Description: This function displays a list of scenario files located
447 # 2) Contents of selected scenario.
458 --title "LTP Scenario Files" \
461 2>/tmp/runltp.scenario.$$ || RC=$?
462 scenario_item=$(cat /tmp/runltp.scenario.$$)
466 --title "LTP Scenario Files"
    [all...]
  /frameworks/native/cmds/flatland/
Main.cpp 683 const char* scenario = "Scenario"; local
684 size_t len = strlen(scenario);
689 "Scenario", static_cast<int>(rightPad), "");

Completed in 458 milliseconds

1 2 3