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

1 2 3

  /external/bison/src/
relation.h 26 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);
relation.c 27 #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/
emp_ematch.y 30 %type <i> invert relation
50 | match relation expr
52 $1->relation = $2;
82 relation: label
m_ematch.h 61 int relation; member in struct:ematch
m_ematch.c 181 .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/
dadrcoll.cpp 107 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...]
dadrcoll.h 33 Collator::EComparisonResult relation; member in class:SeqElement
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.cpp 135 CSSSelector::Relation relation = selector.relation(); local
142 switch (relation) {
167 relation = current->relation();
CSSSelector.cpp 408 printf("\n%*s--> (relation == %d)\n", indent, "", relation());
411 printf("\n%*s--> (relation == %d)\n", indent, "", relation());
559 || sel1->relation() != sel2->relation()
651 if (cs->relation() == CSSSelector::SubSelector && cs->tagHistory())
693 if (cs->relation() != CSSSelector::SubSelector || !cs->tagHistory())
699 switch (cs->relation()) {
795 if (prevSubSelector->relation() != CSSSelector::SubSelector
    [all...]
CSSSelector.h 38 // ** 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)
126 enum Relation {
292 // FIXME: selectors with no tagHistory() get a relation() of Descendant (and sometimes even SubSelector). It should instead be
294 Relation relation() const { return static_cast<Relation>(m_relation); function in class:WebCore::CSSSelector
    [all...]
CSSParserValues.h 222 CSSSelector::Relation relation() const { return m_selector->relation(); }
227 void setRelation(CSSSelector::Relation value) { m_selector->setRelation(value); }
247 void insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector>, CSSSelector::Relation after);
248 void appendTagHistory(CSSSelector::Relation, PassOwnPtr<CSSParserSelector>);
258 return m_selector->relation() == CSSSelector::ShadowPseudo;
SelectorChecker.cpp 173 if (context.selector->relation() != CSSSelector::SubSelector) {
250 CSSSelector::Relation relation = context.selector->relation(); local
253 if (!context.isSubSelector && (context.element->isLink() || (relation != CSSSelector::Descendant && relation != CSSSelector::Child)))
258 switch (relation) {
1121 CSSSelector::Relation relation = current->relation(); local
    [all...]
CSSParserValues.cpp 201 void CSSParserSelector::insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector> selector, CSSSelector::Relation after)
210 void CSSParserSelector::appendTagHistory(CSSSelector::Relation relation, PassOwnPtr<CSSParserSelector> selector)
215 end->setRelation(relation);
RuleSet.cpp 60 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
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 58 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/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_tree_test.js 98 '<relation>=</relation>');
102 '<content><relation>=</relation></content>' +
111 '<content><relation>=</relation><relation>=</relation></content>' +
122 '<content><relation>=</relation><relation>=</relation>'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.h 35 // Link relation bitmask values.
79 bool hasRel(uint32_t relation) const;
  /libcore/luni/src/main/java/java/util/
TreeMap.java 26 import static java.util.TreeMap.Relation.*;
204 enum Relation {
213 * Returns a possibly-flipped relation for use in descending views.
217 Relation forOrder(boolean ascending) {
240 Node<K, V> created = find(key, Relation.CREATE);
251 Node<K, V> find(K key, Relation relation) {
256 if (relation == Relation.CREATE) {
285 switch (relation) {
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 993 Collation::Level relation; local
1675 Collation::Level relation = parseRelationAndString(s, errorCode); local
    [all...]

Completed in 797 milliseconds

1 2 3