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

1 2 3 4

  /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)
  /cts/tools/utils/
buildCts.py 88 def __WritePlan(self, plan, plan_name):
89 print 'Generating test plan %s' % plan_name
90 plan.Write(os.path.join(self.plan_repository, plan_name + '.xml'))
104 plan = tools.TestPlan(packages)
105 plan.Exclude('android\.performance.*')
106 self.__WritePlan(plan, 'CTS')
107 self.__WritePlan(plan, 'CTS-TF')
109 plan = tools.TestPlan(packages)
110 plan.Exclude('android\.performance.*')
111 plan.Exclude('android\.media\.cts\.StreamingMediaPlayerTest.*'
    [all...]
  /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...]
  /external/harfbuzz_ng/src/
hb-ot-shape-fallback-private.hh 35 HB_INTERNAL void _hb_ot_shape_fallback_position (const hb_ot_shape_plan_t *plan,
39 HB_INTERNAL void _hb_ot_shape_fallback_position_recategorize_marks (const hb_ot_shape_plan_t *plan,
44 HB_INTERNAL void _hb_ot_shape_fallback_kern (const hb_ot_shape_plan_t *plan,
hb-ot-shape-complex-sea.cc 68 setup_syllables (const hb_ot_shape_plan_t *plan,
72 initial_reordering (const hb_ot_shape_plan_t *plan,
76 final_reordering (const hb_ot_shape_plan_t *plan,
81 collect_features_sea (hb_ot_shape_planner_t *plan)
83 hb_ot_map_builder_t *map = &plan->map;
105 override_features_sea (hb_ot_shape_planner_t *plan)
107 plan->map.add_feature (HB_TAG('l','i','g','a'), 0, F_GLOBAL);
166 setup_masks_sea (const hb_ot_shape_plan_t *plan HB_UNUSED,
182 setup_syllables (const hb_ot_shape_plan_t *plan HB_UNUSED,
200 initial_reordering_consonant_syllable (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-private.hh 76 inline void compile (hb_ot_shape_plan_t &plan)
78 plan.props = props;
79 plan.shaper = shaper;
80 map.compile (plan.map);
hb-ot-shape-complex-myanmar.cc 66 setup_syllables (const hb_ot_shape_plan_t *plan,
70 initial_reordering (const hb_ot_shape_plan_t *plan,
74 final_reordering (const hb_ot_shape_plan_t *plan,
79 collect_features_myanmar (hb_ot_shape_planner_t *plan)
81 hb_ot_map_builder_t *map = &plan->map;
104 override_features_myanmar (hb_ot_shape_planner_t *plan)
106 plan->map.add_feature (HB_TAG('l','i','g','a'), 0, F_GLOBAL);
117 plan->map.add_feature (HB_TAG('m','a','r','k'), 0, F_GLOBAL);
268 setup_masks_myanmar (const hb_ot_shape_plan_t *plan HB_UNUSED,
284 setup_syllables (const hb_ot_shape_plan_t *plan HB_UNUSED
    [all...]
hb-ot-shape.cc 173 hb_ot_shape_plan_t *plan = (hb_ot_shape_plan_t *) calloc (1, sizeof (hb_ot_shape_plan_t)); local
174 if (unlikely (!plan))
183 planner.compile (*plan);
185 if (plan->shaper->data_create) {
186 plan->data = plan->shaper->data_create (plan);
187 if (unlikely (!plan->data))
191 return plan;
195 _hb_ot_shaper_shape_plan_data_destroy (hb_ot_shaper_shape_plan_data_t *plan)
212 hb_ot_shape_plan_t *plan; member in struct:hb_ot_shape_context_t
628 hb_ot_shape_plan_t plan; local
    [all...]
hb-ot-shape-complex-private.hh 66 * Shapers should use plan->map to add their features and callbacks.
69 void (*collect_features) (hb_ot_shape_planner_t *plan);
73 * Shapers should use plan->map to override features and add callbacks after
77 void (*override_features) (hb_ot_shape_planner_t *plan);
82 * Whatever shapers return will be accessible through plan->data later.
83 * If NULL is returned, means a plan failure.
85 void *(*data_create) (const hb_ot_shape_plan_t *plan);
89 * plan->data is passed here for destruction.
90 * If NULL is returned, means a plan failure.
101 void (*preprocess_text) (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-complex-arabic.cc 160 arabic_fallback_shape (const hb_ot_shape_plan_t *plan,
165 collect_features_arabic (hb_ot_shape_planner_t *plan)
167 hb_ot_map_builder_t *map = &plan->map;
217 data_create_arabic (const hb_ot_shape_plan_t *plan)
223 arabic_plan->do_fallback = plan->props.script == HB_SCRIPT_ARABIC;
225 arabic_plan->mask_array[i] = plan->map.get_1_mask (arabic_features[i]);
227 arabic_plan->do_fallback = arabic_plan->do_fallback && plan->map.needs_fallback (arabic_features[i]);
304 setup_masks_arabic (const hb_ot_shape_plan_t *plan,
308 const arabic_shape_plan_t *arabic_plan = (const arabic_shape_plan_t *) plan->data;
318 arabic_fallback_shape (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-normalize-private.hh 56 const hb_ot_shape_plan_t *plan; member in struct:hb_ot_shape_normalize_context_t
hb-ot-shape-complex-indic.cc 402 setup_syllables (const hb_ot_shape_plan_t *plan,
406 initial_reordering (const hb_ot_shape_plan_t *plan,
410 final_reordering (const hb_ot_shape_plan_t *plan,
415 collect_features_indic (hb_ot_shape_planner_t *plan)
417 hb_ot_map_builder_t *map = &plan->map;
441 override_features_indic (hb_ot_shape_planner_t *plan)
445 plan->map.add_feature (HB_TAG('k','e','r','n'), 0, F_GLOBAL);
447 plan->map.add_feature (HB_TAG('l','i','g','a'), 0, F_GLOBAL);
513 data_create_indic (const hb_ot_shape_plan_t *plan)
521 if (plan->props.script == indic_configs[i].script)
    [all...]
hb-ot-shape-complex-arabic-fallback.hh 56 arabic_fallback_synthesize_lookup_single (const hb_ot_shape_plan_t *plan HB_UNUSED,
106 arabic_fallback_synthesize_lookup_ligature (const hb_ot_shape_plan_t *plan HB_UNUSED,
186 arabic_fallback_synthesize_lookup (const hb_ot_shape_plan_t *plan,
191 return arabic_fallback_synthesize_lookup_single (plan, font, feature_index);
193 return arabic_fallback_synthesize_lookup_ligature (plan, font);
208 arabic_fallback_plan_create (const hb_ot_shape_plan_t *plan,
216 fallback_plan->mask_array[i] = plan->map.get_1_mask (arabic_fallback_features[i]);
218 fallback_plan->lookup_array[i] = arabic_fallback_synthesize_lookup (plan, font, i);
hb-ot-shape-fallback.cc 165 _hb_ot_shape_fallback_position_recategorize_marks (const hb_ot_shape_plan_t *plan HB_UNUSED,
193 position_mark (const hb_ot_shape_plan_t *plan,
285 position_around_base (const hb_ot_shape_plan_t *plan,
331 if (HB_DIRECTION_IS_HORIZONTAL (plan->props.direction))
332 horiz_dir = plan->props.direction;
334 horiz_dir = hb_script_get_horizontal_direction (plan->props.script);
351 position_mark (plan, font, buffer, cluster_extents, i, this_combining_class);
370 position_cluster (const hb_ot_shape_plan_t *plan,
389 position_around_base (plan, font, buffer, i, j);
396 _hb_ot_shape_fallback_position (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-complex-default.cc 53 collect_features_default (hb_ot_shape_planner_t *plan)
57 switch ((hb_tag_t) plan->props.script)
71 plan->map.add_global_bool_feature (*script_features);
hb-ot-shape-normalize.cc 271 _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
275 hb_ot_shape_normalization_mode_t mode = plan->shaper->normalization_preference ?
276 plan->shaper->normalization_preference (&buffer->props) :
279 plan,
283 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode,
284 plan->shaper->compose ? plan->shaper->compose : compose_unicode
  /external/clang/test/PCH/
field-designator.c 31 static const struct U plan = { .e = 1 }; local
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_centscreen.c 44 curmode.mode = curmode.physx = curmode.physy = curmode.plan =
53 if (listedmode.plan>=8) {
59 modeinfo.depth = listedmode.plan;
66 curmode.mode = curmode.physx = curmode.physy = curmode.plan =
84 newmode.plan = planes;
101 newmode.mode = newmode.physx = newmode.physy = newmode.plan =
  /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);

Completed in 869 milliseconds

1 2 3 4