Searched refs:relation (Results 1 - 25 of 49) sorted by relevance

12

/external/bison/src/
H A Drelation.h26 If GRAPH is a relation, then GRAPH[Node] is a list of adjacent
33 typedef relation_nodes *relation; typedef
36 /* Report a relation R that has SIZE vertices. */
37 void relation_print (relation r, relation_node size, FILE *out);
39 /* Compute the transitive closure of the FUNCTION on the relation R
44 void relation_digraph (relation r, relation_node size, bitsetv *function);
47 void relation_transpose (relation *R_arg, relation_node n);
H A Drelation.c27 #include "relation.h"
30 relation_print (relation r, relation_node size, FILE *out)
54 static relation R;
97 relation_digraph (relation r, relation_node size, bitsetv *function)
125 relation_transpose (relation *R_arg, relation_node n)
127 relation r = *R_arg;
129 relation new_R = xnmalloc (n, sizeof *new_R);
131 relation end_R = xnmalloc (n, sizeof *end_R);
/external/iproute2/tc/
H A Demp_ematch.y30 %type <i> invert relation
50 | match relation expr
52 $1->relation = $2;
82 relation: label
H A Dm_ematch.h61 int relation; member in struct:ematch
H A Dm_ematch.c181 .flags = t->relation
241 if (tree->relation == 0)
565 if (t->relation == TCF_EM_REL_AND)
567 else if (t->relation == TCF_EM_REL_OR)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddadrcoll.cpp107 el.relation = Collator::LESS;
111 el.relation = Collator::EQUAL;
115 el.relation = Collator::GREATER;
262 Collator::EComparisonResult relation = Collator::EQUAL; local
276 relation = Collator::EQUAL;
281 if(relation == Collator::EQUAL && source->relation != Collator::EQUAL) {
282 relation = source->relation;
284 doTest(col, source->source, target->source, relation);
[all...]
H A Ddadrcoll.h33 Collator::EComparisonResult relation; member in class:SeqElement
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSelectorFilter.cpp135 CSSSelector::Relation relation = selector.relation(); local
142 switch (relation) {
167 relation = current->relation();
H A DCSSSelector.h38 // ** tagHistory() and relation():
42 // simple selector in the list. The relation() method returns the relationship of the current simple selector to
46 // --> (relation == Descendant)
48 // --> (relation == SubSelector)
51 // Note that currently a bare selector such as ".a" has a relation() of Descendant. This is a bug - instead the relation should be
61 // --> (relation == ShadowPseudo)
299 // FIXME: selectors with no tagHistory() get a relation() of Descendant (and sometimes even SubSelector). It should instead be
301 Relation relation() const { return static_cast<Relation>(m_relation); } function in class:blink::CSSSelector
302 void setRelation(Relation relation) argument
[all...]
H A DSelectorChecker.cpp164 if (context.selector->relation() != CSSSelector::SubSelector) {
241 CSSSelector::Relation relation = context.selector->relation(); local
244 if (!context.isSubSelector && (context.element->isLink() || (relation != CSSSelector::Descendant && relation != CSSSelector::Child)))
249 switch (relation) {
1102 CSSSelector::Relation relation = current->relation(); local
1103 if (relation == CSSSelector::SubSelector)
1105 if (relation !
[all...]
H A DCSSSelector.cpp425 printf("\n%*s--> (relation == %d)\n", indent, "", relation());
428 printf("\n%*s--> (relation == %d)\n", indent, "", relation());
578 || sel1->relation() != sel2->relation()
674 if (cs->relation() == CSSSelector::SubSelector && cs->tagHistory())
718 if (cs->relation() != CSSSelector::SubSelector || !cs->tagHistory())
724 switch (cs->relation()) {
823 if (prevSubSelector->relation() !
[all...]
H A DRuleSet.cpp60 if (selector.relation() == CSSSelector::SubSelector) {
100 if (current->relation() != CSSSelector::SubSelector) {
184 for (; it && it->relation() == CSSSelector::SubSelector; it = it->tagHistory()) {
201 // Custom pseudos come before ids and classes in the order of tagHistory, and have a relation of
H A DCSSSelectorList.cpp188 return selector.relation() == CSSSelector::ShadowDeep || selector.isShadowPseudoElement();
H A DRuleFeature.cpp177 if (component->relation() != CSSSelector::SubSelector)
266 switch (current->relation()) {
325 switch (current->relation()) {
422 if (mode == UseLocalStyleChange && current->relation() != CSSSelector::SubSelector)
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DStyleSheetInvalidationAnalysis.cpp58 CSSSelector::Relation relation = current->relation(); local
61 if (relation == CSSSelector::ShadowDeep || relation == CSSSelector::ShadowPseudo)
63 if (relation != CSSSelector::Descendant && relation != CSSSelector::Child && relation != CSSSelector::SubSelector)
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValues.cpp132 void CSSParserSelector::appendTagHistory(CSSSelector::Relation relation, PassOwnPtr<CSSParserSelector> selector) argument
137 end->setRelation(relation);
H A DCSSParserValues.h220 CSSSelector::Relation relation() const { return m_selector->relation(); }
256 return m_selector->relation() == CSSSelector::ShadowPseudo;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAnchorElement.h35 // Link relation bitmask values.
80 bool hasRel(uint32_t relation) const;
H A DHTMLAnchorElement.cpp285 bool HTMLAnchorElement::hasRel(uint32_t relation) const
287 return m_linkRelations & relation;
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h947 // The relation between an NativeArray object (see below) and the
972 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
973 Init(array, count, relation);
1001 // 'relation' is kCopy.
1002 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1003 if (relation == kReference) {
1011 relation_to_source_ = relation;
/external/llvm/utils/llvm-build/llvmbuild/
H A Dmain.py142 '%r (%s)' % (ci.name, relation)
143 for relation,ci in current_stack)
162 for relation,referent_name in ci.get_component_references():
167 ci.name, referent_name, relation))
170 current_stack.append((relation,ci))
181 # about only checking cycles by relation type. If we do that, it falls
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp993 Collation::Level relation; local
1000 relation = Collation::PRIMARY_LEVEL;
1003 relation = Collation::SECONDARY_LEVEL;
1006 relation = Collation::TERTIARY_LEVEL;
1009 relation = Collation::QUATERNARY_LEVEL;
1012 relation = Collation::CASE_LEVEL;
1015 relation = Collation::IDENTICAL_LEVEL;
1018 relation = Collation::NO_LEVEL;
1023 relation = Collation::ZERO_LEVEL;
1029 errln("no relation (
1675 Collation::Level relation = parseRelationAndString(s, errorCode); local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmath_semantic_attr.js1199 RELATION: 'relation',
1213 // Relation sequence of a single relation.
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DSelectorQuery.cpp251 if (selector->relation() == CSSSelector::SubSelector)
254 if (selector->relation() == CSSSelector::DirectAdjacent || selector->relation() == CSSSelector::IndirectAdjacent)
402 if (selector->relation() != CSSSelector::SubSelector)
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-internal.h1015 // The relation between an NativeArray object (see below) and the
1040 NativeArray(const Element* array, size_t count, RelationToSource relation) { argument
1041 Init(array, count, relation);
1069 // 'relation' is kCopy.
1070 void Init(const Element* array, size_t a_size, RelationToSource relation) { argument
1071 if (relation == kReference) {
1079 relation_to_source_ = relation;

Completed in 525 milliseconds

12