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

1 2 3 4

  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
address_input_helper.cc 38 // Used for building a hierarchy of rules, each one connected to its parent.
71 const std::vector<Node>* hierarchy,
73 assert(hierarchy != NULL);
81 if (hierarchy[depth].size() == 1) {
82 for (const Node* node = &hierarchy[depth].front();
134 // hierarchy that matches the postal code. Note that the postal code might
139 // This hierarchy is used to store rules that represent possible matches
140 // at each level of the hierarchy.
141 std::vector<Node> hierarchy[kHierarchyDepth]; local
142 CheckChildrenForPostCodeMatches(*address, lookup_key, NULL, hierarchy);
    [all...]
validation_task.cc 74 const Supplier::RuleHierarchy& hierarchy) {
80 } else if (hierarchy.rule[0] == NULL) {
91 CheckUnknownValue(hierarchy);
92 CheckPostalCodeFormatAndValue(hierarchy);
93 CheckUsesPoBox(hierarchy);
157 const Supplier::RuleHierarchy& hierarchy) const {
161 hierarchy.rule[depth - 1] == NULL ||
162 hierarchy.rule[depth - 1]->GetSubKeys().empty() ||
163 hierarchy.rule[depth] != NULL)) {
171 const Supplier::RuleHierarchy& hierarchy) const
    [all...]
validation_task.h 54 // Uses the address metadata of |hierarchy| to validate |address_|, writing
59 const Supplier::RuleHierarchy& hierarchy);
68 void CheckUnknownValue(const Supplier::RuleHierarchy& hierarchy) const;
72 const Supplier::RuleHierarchy& hierarchy) const;
75 void CheckUsesPoBox(const Supplier::RuleHierarchy& hierarchy) const;
preload_supplier.cc 183 std::stack<const Rule*> hierarchy; variable
184 hierarchy.push(*it);
186 // Push pointers to all parent Rule objects onto the hierarchy stack.
195 IndexMap::const_iterator* const hint = &hints[hierarchy.size() - 1];
200 hierarchy.push((*hint)->second);
206 // Append the names from all Rule objects on the hierarchy stack.
207 for (; !hierarchy.empty(); hierarchy.pop()) {
208 const Rule* rule = hierarchy.top();
290 Supplier::RuleHierarchy hierarchy; local
297 Supplier::RuleHierarchy hierarchy; local
    [all...]
  /external/doclava/res/assets/templates/
hierarchy.cs 4 .jd-hierarchy-spacer {
7 .jd-hierarchy-data {
28 <?cs loop:x=#0,cl.indent,#1 ?><td class="jd-hierarchy-spacer"></td><?cs /loop ?>
29 <td class="jd-hierarchy-data" colspan="<?cs var:cl.colspan ?>">
36 <td class="jd-hierarchy-data">
53 <th class="jd-hierarchy-data" colspan="<?cs var:colspan ?>">Class</th>
54 <th class="jd-hierarchy-data">Interfaces</th>
diff.cs 50 #hierarchy {
61 var table = $("#hierarchy")[0];
88 var table = $("#hierarchy")[0];
124 <table border="0" id="hierarchy">
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
HierarchicalFolderTruncationTests.java 56 private String truncate(String hierarchy) {
57 final SpannableStringBuilder result = mAdapter.truncateHierarchy(hierarchy);
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
address_input_helper.h 56 const Node* parent, std::vector<Node>* hierarchy) const;
preload_supplier.h 87 RuleHierarchy* hierarchy) const;
  /external/chromium_org/third_party/skia/gm/tests/
run.sh 144 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -w $THIS_IMAGE_DIR
146 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \
151 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -w $THIS_IMAGE_DIR
156 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \
161 $GM_BINARY --hierarchy --match selftest $CONFIGS -w $THIS_IMAGE_DIR
164 $GM_BINARY --hierarchy --match selftest $CONFIGS -r $THIS_IMAGE_DIR \
175 THIS_IMAGE_DIR=$IMAGES_DIR/different-pixels-no-hierarchy
181 --writeJsonSummaryPath $JSON_DIR/different-pixels-no-hierarchy.json
203 gm_test "--verbose --hierarchy --match selftest1 $CONFIGS -r $GM_INPUTS/images/identical-bytes" "$GM_OUTPUTS/compared-against-identical-bytes-images"
204 gm_test "--verbose --hierarchy --match selftest1 $CONFIGS -r $GM_INPUTS/json/identical-bytes.json" "$GM_OUTPUTS/compared-against- (…)
    [all...]
  /external/skia/gm/tests/
run.sh 144 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -w $THIS_IMAGE_DIR
146 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \
151 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -w $THIS_IMAGE_DIR
156 $GM_BINARY --hierarchy --match selftest1 $CONFIGS -r $THIS_IMAGE_DIR \
161 $GM_BINARY --hierarchy --match selftest $CONFIGS -w $THIS_IMAGE_DIR
164 $GM_BINARY --hierarchy --match selftest $CONFIGS -r $THIS_IMAGE_DIR \
175 THIS_IMAGE_DIR=$IMAGES_DIR/different-pixels-no-hierarchy
181 --writeJsonSummaryPath $JSON_DIR/different-pixels-no-hierarchy.json
203 gm_test "--verbose --hierarchy --match selftest1 $CONFIGS -r $GM_INPUTS/images/identical-bytes" "$GM_OUTPUTS/compared-against-identical-bytes-images"
204 gm_test "--verbose --hierarchy --match selftest1 $CONFIGS -r $GM_INPUTS/json/identical-bytes.json" "$GM_OUTPUTS/compared-against- (…)
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 150 Set<Class<?>> hierarchy = bus.flattenHierarchy(fixture.getClass()); local
152 assertEquals(5, hierarchy.size());
153 assertContains(Object.class, hierarchy);
154 assertContains(HierarchyFixtureInterface.class, hierarchy);
155 assertContains(HierarchyFixtureSubinterface.class, hierarchy);
156 assertContains(HierarchyFixtureParent.class, hierarchy);
157 assertContains(HierarchyFixture.class, hierarchy);
237 // Exists only for hierarchy mapping; no members.
242 // Exists only for hierarchy mapping; no members.
247 // Exists only for hierarchy mapping; no members
    [all...]
  /external/chromium_org/ppapi/cpp/documentation/
removefilesCPP.sh 31 rm hierarchy.html
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HierarchicalFolderSelectorAdapter.java 73 * Truncation of a hierarchy works as follows:
81 protected SpannableStringBuilder truncateHierarchy(String hierarchy) {
82 if (TextUtils.isEmpty(hierarchy)) {
85 final String[] splitHierarchy = hierarchy.split("/");
  /external/chromium_org/chrome/common/extensions/docs/server2/
cache_chain_object_store.py 20 stores higher in the hierarchy.
  /external/chromium_org/tools/json_schema_compiler/
model.py 15 hierarchy = _GetModelHierarchy(parent)
16 hierarchy.append(message)
18 self, 'Model parse exception at:\n' + '\n'.join(hierarchy))
520 """Returns the hierarchy of the given model entity."""
521 hierarchy = []
523 hierarchy.append(getattr(entity, 'name', repr(entity)))
525 hierarchy.insert(0, ' in %s' % entity.source_file)
527 hierarchy.reverse()
528 return hierarchy
  /external/libsepol/
Android.mk 20 src/hierarchy.c \
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 69 ViewHierarchy hierarchy = mCanvas.getViewHierarchy(); local
87 CanvasViewInfo vi = hierarchy.findViewInfoFor(node);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 186 ITypeHierarchy hierarchy = type.newTypeHierarchy(new NullProgressMonitor()); local
187 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
198 ITypeHierarchy hierarchy = type.newTypeHierarchy( local
200 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
ondemand_supply_task_test.cc 81 const Supplier::RuleHierarchy& hierarchy) {
84 ASSERT_EQ(&task_->hierarchy_, &hierarchy);
85 std::memcpy(rule_, hierarchy.rule, sizeof rule_);
supplier_test.cc 136 const Supplier::RuleHierarchy& hierarchy) {
139 std::memcpy(rule_, hierarchy.rule, sizeof rule_);
validation_task_test.cc 98 Supplier::RuleHierarchy hierarchy; local
102 hierarchy.rule[i] = &rule[i];
105 (*task->supplied_)(success_, *task->lookup_key_, hierarchy);
  /external/chromium_org/v8/test/mjsunit/
mirror-object.js 52 assertTrue(mirror instanceof debug.Mirror, 'Unexpected mirror hierarchy');
53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierarchy');
54 assertTrue(mirror instanceof debug.ObjectMirror, 'Unexpected mirror hierarchy');
61 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror, 'Unexpected mirror hierarchy');
63 assertTrue(mirror.protoObject() instanceof debug.Mirror, 'Unexpected mirror hierarchy');
64 assertTrue(mirror.prototypeObject() instanceof debug.Mirror, 'Unexpected mirror hierarchy');
72 assertTrue(properties[i] instanceof debug.Mirror, 'Unexpected mirror hierarchy');
73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierarchy');
80 assertTrue(internalProperties[i] instanceof debug.Mirror, 'Unexpected mirror hierarchy');
81 assertTrue(internalProperties[i] instanceof debug.InternalPropertyMirror, 'Unexpected mirror hierarchy');
    [all...]
  /external/chromium_org/chrome/browser/resources/
certificate_viewer.css 89 #hierarchy-section {
  /external/doclava/src/com/google/doclava/
FederationTagger.java 118 for (ClassInfo superclass : federatedClass.hierarchy()) {

Completed in 403 milliseconds

1 2 3 4