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

1 2 3 4 5

  /cts/tools/utils/
buildCts.py 104 def __WritePlan(self, plan, plan_name):
105 print 'Generating test plan %s' % plan_name
106 plan.Write(os.path.join(self.plan_repository, plan_name + '.xml'))
120 plan = tools.TestPlan(packages)
121 plan.Exclude('android\.car')
122 plan.Exclude('android\.performance.*')
123 self.__WritePlan(plan, 'CTS')
124 self.__WritePlan(plan, 'CTS-TF')
126 plan = tools.TestPlan(packages)
127 plan.Exclude('android\.car'
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-private.hh 80 inline void compile (hb_ot_shape_plan_t &plan)
82 plan.props = props;
83 plan.shaper = shaper;
84 map.compile (plan.map);
86 plan.rtlm_mask = plan.map.get_1_mask (HB_TAG ('r','t','l','m'));
87 plan.frac_mask = plan.map.get_1_mask (HB_TAG ('f','r','a','c'));
88 plan.numr_mask = plan.map.get_1_mask (HB_TAG ('n','u','m','r'))
    [all...]
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,
48 HB_INTERNAL void _hb_ot_shape_fallback_spaces (const hb_ot_shape_plan_t *plan,
hb-ot-shape-complex-arabic-private.hh 40 data_create_arabic (const hb_ot_shape_plan_t *plan);
hb-ot-shape-complex-tibetan.cc 40 collect_features_tibetan (hb_ot_shape_planner_t *plan)
43 plan->map.add_global_bool_feature (*script_features);
hb-ot-shape-complex-use.cc 96 setup_syllables (const hb_ot_shape_plan_t *plan,
100 clear_substitution_flags (const hb_ot_shape_plan_t *plan,
104 record_rphf (const hb_ot_shape_plan_t *plan,
108 record_pref (const hb_ot_shape_plan_t *plan,
112 reorder (const hb_ot_shape_plan_t *plan,
117 collect_features_use (hb_ot_shape_planner_t *plan)
119 hb_ot_map_builder_t *map = &plan->map;
195 data_create_use (const hb_ot_shape_plan_t *plan)
201 use_plan->rphf_mask = plan->map.get_1_mask (HB_TAG('r','p','h','f'));
203 if (has_arabic_joining (plan->props.script)
    [all...]
hb-ot-shape.cc 168 hb_ot_shape_plan_t *plan = (hb_ot_shape_plan_t *) calloc (1, sizeof (hb_ot_shape_plan_t)); local
169 if (unlikely (!plan))
178 planner.compile (*plan);
180 if (plan->shaper->data_create) {
181 plan->data = plan->shaper->data_create (plan);
182 if (unlikely (!plan->data))
186 return plan;
190 _hb_ot_shaper_shape_plan_data_destroy (hb_ot_shaper_shape_plan_data_t *plan)
207 hb_ot_shape_plan_t *plan; member in struct:hb_ot_shape_context_t
845 hb_ot_shape_plan_t plan; local
    [all...]
hb-ot-shape-complex-arabic-fallback.hh 48 arabic_fallback_synthesize_lookup_single (const hb_ot_shape_plan_t *plan HB_UNUSED,
101 arabic_fallback_synthesize_lookup_ligature (const hb_ot_shape_plan_t *plan HB_UNUSED,
184 arabic_fallback_synthesize_lookup (const hb_ot_shape_plan_t *plan,
189 return arabic_fallback_synthesize_lookup_single (plan, font, feature_index);
191 return arabic_fallback_synthesize_lookup_ligature (plan, font);
226 const hb_ot_shape_plan_t *plan,
248 fallback_plan->mask_array[j] = plan->map.get_1_mask (manifest[i].tag);
271 const hb_ot_shape_plan_t *plan,
278 fallback_plan->mask_array[j] = plan->map.get_1_mask (arabic_fallback_features[i]);
281 fallback_plan->lookup_array[j] = arabic_fallback_synthesize_lookup (plan, font, i)
    [all...]
hb-ot-shape-complex-arabic.cc 166 nuke_joiners (const hb_ot_shape_plan_t *plan,
171 arabic_fallback_shape (const hb_ot_shape_plan_t *plan,
176 record_stch (const hb_ot_shape_plan_t *plan,
181 collect_features_arabic (hb_ot_shape_planner_t *plan)
183 hb_ot_map_builder_t *map = &plan->map;
216 bool has_fallback = plan->props.script == HB_SCRIPT_ARABIC && !FEATURE_IS_SYRIAC (arabic_features[i]);
222 if (plan->props.script == HB_SCRIPT_ARABIC)
259 data_create_arabic (const hb_ot_shape_plan_t *plan)
265 arabic_plan->do_fallback = plan->props.script == HB_SCRIPT_ARABIC;
266 arabic_plan->has_stch = !!plan->map.get_1_mask (HB_TAG ('s','t','c','h'))
    [all...]
hb-ot-shape-complex-private.hh 70 * Shapers should use plan->map to add their features and callbacks.
73 void (*collect_features) (hb_ot_shape_planner_t *plan);
77 * Shapers should use plan->map to override features and add callbacks after
81 void (*override_features) (hb_ot_shape_planner_t *plan);
86 * Whatever shapers return will be accessible through plan->data later.
87 * If NULL is returned, means a plan failure.
89 void *(*data_create) (const hb_ot_shape_plan_t *plan);
93 * plan->data is passed here for destruction.
94 * If NULL is returned, means a plan failure.
105 void (*preprocess_text) (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-fallback.cc 165 _hb_ot_shape_fallback_position_recategorize_marks (const hb_ot_shape_plan_t *plan HB_UNUSED,
195 position_mark (const hb_ot_shape_plan_t *plan,
303 position_around_base (const hb_ot_shape_plan_t *plan,
350 if (HB_DIRECTION_IS_HORIZONTAL (plan->props.direction))
351 horiz_dir = plan->props.direction;
353 horiz_dir = hb_script_get_horizontal_direction (plan->props.script);
370 position_mark (plan, font, buffer, cluster_extents, i, this_combining_class);
389 position_cluster (const hb_ot_shape_plan_t *plan,
409 position_around_base (plan, font, buffer, i, j);
416 _hb_ot_shape_fallback_position (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-normalize-private.hh 54 const hb_ot_shape_plan_t *plan; member in struct:hb_ot_shape_normalize_context_t
hb-ot-shape-complex-myanmar.cc 76 setup_syllables (const hb_ot_shape_plan_t *plan,
80 initial_reordering (const hb_ot_shape_plan_t *plan,
84 final_reordering (const hb_ot_shape_plan_t *plan,
89 collect_features_myanmar (hb_ot_shape_planner_t *plan)
91 hb_ot_map_builder_t *map = &plan->map;
114 override_features_myanmar (hb_ot_shape_planner_t *plan)
116 plan->map.add_feature (HB_TAG('l','i','g','a'), 0, F_GLOBAL);
273 setup_masks_myanmar (const hb_ot_shape_plan_t *plan HB_UNUSED,
290 setup_syllables (const hb_ot_shape_plan_t *plan HB_UNUSED,
403 initial_reordering_syllable (const hb_ot_shape_plan_t *plan,
    [all...]
hb-ot-shape-complex-hangul.cc 54 collect_features_hangul (hb_ot_shape_planner_t *plan)
56 hb_ot_map_builder_t *map = &plan->map;
63 override_features_hangul (hb_ot_shape_planner_t *plan)
68 plan->map.add_feature (HB_TAG('c','a','l','t'), 0, F_GLOBAL);
79 data_create_hangul (const hb_ot_shape_plan_t *plan)
86 hangul_plan->mask_array[i] = plan->map.get_1_mask (hangul_features[i]);
131 preprocess_text_hangul (const hb_ot_shape_plan_t *plan,
391 setup_masks_hangul (const hb_ot_shape_plan_t *plan,
395 const hangul_shape_plan_t *hangul_plan = (const hangul_shape_plan_t *) plan->data;
hb-ot-shape-complex-indic.cc 396 setup_syllables (const hb_ot_shape_plan_t *plan,
400 initial_reordering (const hb_ot_shape_plan_t *plan,
404 final_reordering (const hb_ot_shape_plan_t *plan,
408 clear_syllables (const hb_ot_shape_plan_t *plan,
413 collect_features_indic (hb_ot_shape_planner_t *plan)
415 hb_ot_map_builder_t *map = &plan->map;
444 override_features_indic (hb_ot_shape_planner_t *plan)
449 switch ((hb_tag_t) plan->props.script)
452 plan->map.add_feature (HB_TAG('k','e','r','n'), 0, F_GLOBAL);
457 plan->map.add_feature (HB_TAG('l','i','g','a'), 0, F_GLOBAL)
    [all...]
hb-ot-shape-normalize.cc 288 _hb_ot_shape_normalize (const hb_ot_shape_plan_t *plan,
296 hb_ot_shape_normalization_mode_t mode = plan->shaper->normalization_preference;
298 plan,
302 plan->shaper->decompose ? plan->shaper->decompose : decompose_unicode,
303 plan->shaper->compose ? plan->shaper->compose : compose_unicode
hb-ot-map-private.hh 68 typedef void (*pause_func_t) (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer);
123 const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
124 HB_INTERNAL void substitute (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
125 HB_INTERNAL void position (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
  /external/apache-http/src/org/apache/http/conn/routing/
BasicRouteDirector.java 61 * @param plan the planned route
69 public int nextStep(RouteInfo plan, RouteInfo fact) {
70 if (plan == null) {
78 step = firstStep(plan);
79 else if (plan.getHopCount() > 1)
80 step = proxiedStep(plan, fact);
82 step = directStep(plan, fact);
92 * @param plan the planned route
96 protected int firstStep(RouteInfo plan) {
98 return (plan.getHopCount() > 1)
    [all...]
HttpRouteDirector.java 81 * @param plan the planned route
89 public int nextStep(RouteInfo plan, RouteInfo fact)
  /system/connectivity/shill/mobile_operator_db/
serviceproviders.prototxt 36 plan : POSTPAID
47 plan : POSTPAID
68 plan : POSTPAID
84 plan : POSTPAID
102 plan : POSTPAID
109 plan : POSTPAID
128 plan : POSTPAID
146 plan : POSTPAID
165 plan : POSTPAID
172 plan : POSTPAI
    [all...]
  /external/clang/test/PCH/
field-designator.c 31 static const struct U plan = { .e = 1 }; local
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPlanTest.java 78 mPlan = new TestPlan("plan", AbiUtils.getAbisSupportedByCompatibility());
82 * Simple test for parsing a plan containing two names
91 * @param plan
93 private void assertTestData(TestPlan plan) {
95 assertEquals(2 * abis.size(), plan.getTestIds().size());
98 Iterator<String> iter = plan.getTestIds().iterator();
105 assertFalse(plan.getTestFilter(test1Id).hasExclusion());
106 assertFalse(plan.getTestFilter(test2Id).hasExclusion());
111 * Test parsing a plan containing a single excluded test
127 * Test parsing a plan containing multiple excluded test
    [all...]
  /cts/common/util/src/com/android/compatibility/common/util/
IInvocationResult.java 44 * @param plan the plan associated with this result.
46 void setTestPlan(String plan);
49 * @return the test plan associated with this result.
InvocationResult.java 121 public void setTestPlan(String plan) {
122 mTestPlan = plan;
  /cts/tools/utils/cts/
tools.py 111 """A CTS test plan generator."""
114 """Instantiate a test plan with a list of available package names.
128 """Include only specific tests in this plan.
146 """Exclude specific tests from this plan.
163 """Exclude all packages matching the given regular expression from the plan.
179 """Include all packages matching the given regular expressions in the plan.
194 """Write the test plan to the given file.
199 file_name: The name of the file into which the test plan should be written.
202 plan = doc.createElement('TestPlan')
203 plan.setAttribute('version', '1.0'
    [all...]

Completed in 5099 milliseconds

1 2 3 4 5