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

1 2

  /external/apache-http/src/org/apache/http/conn/routing/
BasicRouteDirector.java 56 * @param plan the planned route
64 public int nextStep(RouteInfo plan, RouteInfo fact) {
65 if (plan == null) {
73 step = firstStep(plan);
74 else if (plan.getHopCount() > 1)
75 step = proxiedStep(plan, fact);
77 step = directStep(plan, fact);
87 * @param plan the planned route
91 protected int firstStep(RouteInfo plan) {
93 return (plan.getHopCount() > 1)
    [all...]
HttpRouteDirector.java 76 * @param plan the planned route
84 public int nextStep(RouteInfo plan, RouteInfo fact)
  /external/chromium/chrome/browser/chromeos/
network_message_observer_unittest.cc 16 CellularDataPlan plan; local
17 plan.plan_type = type;
18 plan.plan_start_time = base::Time::FromDoubleT(start_sec);
19 plan.plan_end_time = base::Time::FromDoubleT(end_sec);
20 plan.plan_data_bytes = bytes;
21 plan.data_bytes_used = used;
22 return plan;
27 // Test the code that checks if a data plan is an applicable backup plan.
31 // ((start time - 1 sec) <= end time of currently active plan)
34 CellularDataPlan plan = local
    [all...]
network_message_observer.h 30 static bool IsApplicableBackupPlan(const CellularDataPlan* plan,
35 virtual void InitNewPlan(const CellularDataPlan* plan);
38 virtual void ShowLowDataNotification(const CellularDataPlan* plan);
49 // Saves the current cellular and plan information.
50 // |plan| can be NULL. In that case, we set it to unknown.
52 const CellularDataPlan* plan);
61 // Last cellular data plan unique id.
63 // Last cellular data plan type.
network_message_observer.cc 69 const CellularDataPlan* plan, const CellularDataPlan* other_plan) {
70 // By applicable plan, we mean that the other plan has data AND the timeframe
72 // ((start time - 1 sec) <= end time of currently active plan).
74 // second in time between the old plan and the new plan.
78 (other_plan->plan_start_time - plan->plan_end_time).InSeconds() <= 1;
100 void NetworkMessageObserver::InitNewPlan(const CellularDataPlan* plan) {
103 if (plan->plan_type == CELLULAR_DATA_PLAN_UNLIMITED) {
106 ASCIIToUTF16(plan->plan_name)))
    [all...]
  /cts/tools/utils/
buildCts.py 94 def __WritePlan(self, plan, plan_name):
95 print 'Generating test plan %s' % plan_name
96 plan.Write(os.path.join(self.plan_repository, plan_name + '.xml'))
108 plan = tools.TestPlan(packages)
109 plan.Exclude('android\.core\.vm-tests')
110 plan.Exclude('android\.performance.*')
111 plan.Include(r'android\.core\.vm-tests-tf')
112 self.__WritePlan(plan, 'CTS-TF')
113 self.__WritePlan(plan, 'CTS')
115 plan.Exclude(r'android\.tests\.sigtest'
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios_centscreen.c 51 curmode.mode = curmode.physx = curmode.physy = curmode.plan =
60 if (listedmode.plan>=8) {
62 listedmode.physy, listedmode.plan, SDL_FALSE
67 curmode.mode = curmode.physx = curmode.physy = curmode.plan =
85 newmode.plan = planes;
100 newmode.mode = newmode.physx = newmode.physy = newmode.plan =
SDL_xbios_centscreen.h 58 unsigned short plan; /* bitplanes */ member in struct:__anon9849
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPlanTest.java 73 mPlan = new TestPlan("plan");
77 * Simple test for parsing a plan containing two uris
86 * @param plan
88 private void assertTestData(TestPlan plan) {
89 assertEquals(2, plan.getTestUris().size());
90 Iterator<String> iter = plan.getTestUris().iterator();
94 assertFalse(plan.getExcludedTestFilter(TEST_URI1).hasExclusion());
95 assertFalse(plan.getExcludedTestFilter(TEST_URI2).hasExclusion());
99 * Test parsing a plan containing a single excluded test
110 * Test parsing a plan containing multiple excluded test
    [all...]
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 135 #details-plan-table {
202 #detailsInternetPage[cellplanloading] .no-plan-info,
203 #detailsInternetPage[cellplanloading] .plan-details-info,
205 #detailsInternetPage[hascellplan] .plan-loading-info,
206 #detailsInternetPage[hascellplan] .no-plan-info,
207 #detailsInternetPage[nocellplan] .plan-loading-info,
208 #detailsInternetPage[nocellplan] .plan-details-info,
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
fixChangeLogPatchThenSetChangeLogDateAndReviewer.pl 78 plan(tests => 1 * $testCasesCount); # Total number of assertions.
prepareParsedPatch.pl 125 plan(tests => $testCasesCount);
parseDiffHeader.pl 105 plan(tests => 2 * $testCasesCount); # Total number of assertions.
parsePatch.pl 78 plan(tests => @expectedDiffHashRefs * @diffHashRefKeys);
setChangeLogDateAndReviewer.pl 115 plan(tests => 1 * $testCasesCount); # Total number of assertions.
parseSvnDiffHeader.pl 204 plan(tests => 2 * $testCasesCount); # Total number of assertions.
  /cts/tools/utils/cts/
tools.py 111 """A CTS test plan generator."""
114 """Instantiate a test plan with a list of available package names.
124 """Exclude all packages matching the given regular expression from the plan.
140 """Include all packages matching the given regular expressions in the plan.
155 """Write the test plan to the given file.
160 file_name: The name of the file into which the test plan should be written.
163 plan = doc.createElement('TestPlan')
164 plan.setAttribute('version', '1.0')
165 doc.appendChild(plan)
170 plan.appendChild(entry
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
CtsTest.java 65 * Supports running all the tests contained in a CTS plan, or individual test packages.
70 public static final String PLAN_OPTION = "plan";
81 @Option(name = PLAN_OPTION, description = "the test plan to run.",
207 * Set the plan name to run.
377 throw new IllegalArgumentException("failed to find CTS plan file", e);
379 throw new IllegalArgumentException("failed to parse CTS plan file", e);
413 Log.i(LOG_TAG, String.format("Executing CTS test plan %s", mPlanName));
415 ITestPlan plan = createPlan(mPlanName); local
416 plan.parse(createXmlStream(ctsPlanFile));
417 for (String uri : plan.getTestUris())
455 ITestPlan plan = createPlan(planCreator); local
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
network_library.h 570 // Plan data will be passed through Network::Observer::CellularDataPlanChanged
770 // Cellular Data Plan management.
778 explicit CellularDataPlan(const CellularDataPlanInfo &plan)
779 : plan_name(plan.plan_name ? plan.plan_name : ""),
780 plan_type(plan.plan_type),
781 update_time(base::Time::FromInternalValue(plan.update_time)),
782 plan_start_time(base::Time::FromInternalValue(plan.plan_start_time)),
783 plan_end_time(base::Time::FromInternalValue(plan.plan_end_time)),
784 plan_data_bytes(plan.plan_data_bytes)
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.h 69 // Initiates cellular plan data refresh. The results from libcros will be
102 // Converts CellularDataPlan structure into dictionary for JS. Formats plan
105 const chromeos::CellularDataPlan* plan);
  /external/v8/benchmarks/
deltablue.js 290 * change their output during plan execution. This is called "stay
630 * Extract a plan for resatisfaction starting from the given source
632 * assumes that stay optimization is desired; the plan will contain
635 * not included in the plan.
637 * to the plan under construction. A constraint may be appended to
638 * the plan when all its input variables are known. A variable is
640 * been computed by a constraint appearing earlier in the plan), b)
641 * the variable is 'stay' (i.e. it is a constant at plan execution
650 var plan = new Plan();
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 284 * change their output during plan execution. This is called "stay
624 * Extract a plan for resatisfaction starting from the given source
626 * assumes that stay optimization is desired; the plan will contain
629 * not included in the plan.
631 * to the plan under construction. A constraint may be appended to
632 * the plan when all its input variables are known. A variable is
634 * been computed by a constraint appearing earlier in the plan), b)
635 * the variable is 'stay' (i.e. it is a constant at plan execution
644 var plan = new Plan();
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 284 * change their output during plan execution. This is called "stay
624 * Extract a plan for resatisfaction starting from the given source
626 * assumes that stay optimization is desired; the plan will contain
629 * not included in the plan.
631 * to the plan under construction. A constraint may be appended to
632 * the plan when all its input variables are known. A variable is
634 * been computed by a constraint appearing earlier in the plan), b)
635 * the variable is 'stay' (i.e. it is a constant at plan execution
644 var plan = new Plan();
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 284 * change their output during plan execution. This is called "stay
624 * Extract a plan for resatisfaction starting from the given source
626 * assumes that stay optimization is desired; the plan will contain
629 * not included in the plan.
631 * to the plan under construction. A constraint may be appended to
632 * the plan when all its input variables are known. A variable is
634 * been computed by a constraint appearing earlier in the plan), b)
635 * the variable is 'stay' (i.e. it is a constant at plan execution
644 var plan = new Plan();
    [all...]
  /external/v8/test/mjsunit/
string-match.js 84 var stringSample = "A man, a plan, a canal: Panama";
130 ["A", "man", "a", "plan", "a", "canal", "Panama"],

Completed in 1634 milliseconds

1 2