HomeSort by relevance Sort by last modified time
    Searched full:precedence (Results 1 - 25 of 962) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
049-if-expression-precedence.c 2 failure with operator precedence
  /external/mesa3d/src/glsl/glcpp/tests/
049-if-expression-precedence.c 2 failure with operator precedence
  /external/smack/src/org/xbill/DNS/
IPSECKEYRecord.java 35 private int precedence; field in class:IPSECKEYRecord
50 * @param precedence The record's precedence.
57 IPSECKEYRecord(Name name, int dclass, long ttl, int precedence,
62 this.precedence = checkU8("precedence", precedence);
100 precedence = in.readU8();
125 precedence = st.getUInt8();
153 sb.append(precedence);
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
expand.py 61 def _add_size(precedence, bucket, depth, committed, sizes):
62 stacktrace_sequence = precedence
89 precedence = ''
90 precedence += '(alloc=%d) ' % int(words[ALLOC_COUNT])
91 precedence += '(free=%d) ' % int(words[FREE_COUNT])
93 precedence += '(type=%s) ' % bucket.symbolized_typeinfo
94 precedence += '(type.name=%s) ' % bucket.typeinfo_name
95 ExpandCommand._add_size(precedence, bucket, depth,
  /external/dropbear/libtomcrypt/
TODO 9 Nice to have [in order of precedence]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
CollapsedBorderValue.h 44 CollapsedBorderValue(const BorderValue& border, const Color& color, EBorderPrecedence precedence)
49 , m_precedence(precedence)
59 EBorderPrecedence precedence() const { return static_cast<EBorderPrecedence>(m_precedence); } function in class:WebCore::CollapsedBorderValue
63 return width() == o.width() && style() == o.style() && precedence() == o.precedence();
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
contentSettings.html 34 <h3 id="pattern-precedence">Pattern precedence</h3>
37 the more specific pattern takes precedence.
39 <p>For example, the following patterns are ordered by precedence:</p>
61 precedence:</p>
88 specific primary pattern takes precedence. If there multiple rules have the same
90 precedence. For example, the following list of primary/secondary pattern pairs
91 is ordered by precedence:</p>
93 <tr><th>Precedence</th><th>Primary pattern</th><th>Secondary pattern</th>
126 it takes precedence over a rule without a resource identifier and the patter
    [all...]
types.html 40 <h3 id="ChromeSetting-precedence">Precedence</h3>
45 precedence.
83 the extension installed most recently takes precedence over the other
90 considering the precedence rules. It is used by Chrome.
  /external/chromium/chrome/browser/extensions/
extension_pref_value_map.h 21 // - The precedence of extensions is determined by their installation time.
22 // The extension that has been installed later takes higher precedence.
26 // extension pref value of the extension with the highest precedence.
28 // extension pref value of the extension with the highest precedence, unless
29 // another extension with higher precedence overrides it with a regular
44 // Extension B has higher precedence than A.
82 // Returns true if currently no extension with higher precedence controls the
93 // other extension with higher precedence overrides it.
156 // preferences values (i.e. the ones with the highest precedence)
  /external/chromium/net/base/
net_switches.cc 10 // as if it were a preloaded HSTS entry. It will take precedence over both
  /external/chromium_org/v8/src/
token.cc 34 #define T(name, string, precedence) #name,
41 #define T(name, string, precedence) string,
48 #define T(name, string, precedence) precedence,
  /external/v8/src/
token.cc 34 #define T(name, string, precedence) #name,
41 #define T(name, string, precedence) string,
48 #define T(name, string, precedence) precedence,
token.h 37 // same signature M(name, string, precedence), where name is the
39 // (or NULL, for literals), and precedence is the precedence (or 0).
49 #define IGNORE_TOKEN(name, string, precedence)
90 /* Binary operators sorted by precedence. */ \
108 /* Compare operators sorted by precedence. */ \
187 #define T(name, string, precedence) name,
280 // Returns the precedence > 0 for binary and compare
282 static int Precedence(Value tok) {
  /external/jmonkeyengine/engine/src/core/checkers/quals/
DefaultQualifier.java 15 * takes precedence.
16 * DefaultQualifier takes precedence over {@link DefaultQualifierInHierarchy}.
  /external/clang/test/Sema/
parentheses.cpp 7 (void)(x + someConditionFunc() ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '+'}} \
15 (void)(x - b ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '-'}} \
23 (void)(x * (x == y) ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '*'}} \
42 (void)(s << b ? "foo" : "bar"); // expected-warning {{operator '?:' has lower precedence than '<<'}} \
50 (void)(s << 5 == 1); // expected-warning {{overloaded operator << has lower precedence than comparison operator}} \
58 (void)(s >> 5 == 1); // expected-warning {{overloaded operator >> has lower precedence than comparison operator}} \
73 (void)(*s + true ? "foo" : "bar"); // expected-warning {{operator '?:' has lower precedence than '+'}} \
88 (void)(a >> b + c); // expected-warning {{operator '>>' has lower precedence than '+'; '+' will be evaluated first}} \
93 (void)(a - b << c); // expected-warning {{operator '<<' has lower precedence than '-'; '-' will be evaluated first}} \
99 Stream() >> b + c; // expected-warning {{operator '>>' has lower precedence than '+'; '+' will be evaluated first}}
    [all...]
  /development/tools/idegen/src/
Eclipse.java 42 * If the user has a file named "path-precedence" in their project's
49 File precedence = new File("path-precedence"); local
50 if (precedence.exists()) {
51 Configuration.parseFile(precedence, patterns);
57 // Everything not matched by the user's precedence spec.
173 * A precedence bucket for source roots.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
53 (* If this is a binop, find its precedence. *)
55 let token_prec = precedence c in
72 let next_prec = precedence c2 in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
10 let precedence c = try Hashtbl.find binop_precedence c with Not_found -> -1 var
89 (* If this is a binop, find its precedence. *)
91 let token_prec = precedence c in
108 let next_prec = precedence c2 in
  /frameworks/compile/mclinker/lib/Support/
DefSymParser.cpp 22 static inline int precedence(const char* x) function
64 if (precedence(si) <= precedence(operatorStack.top())) {
65 // if the precedence of incoming operator is less or equal to
66 // top of stack, we clear stack till top is lower precedence
69 if (precedence(si) <= precedence(operatorStack.top())) {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
StylesheetComposed.java 71 * Adds all recomposable values for this precedence level into the recomposableElements Vector
83 // Now add in all of the recomposable elements at this precedence level
167 /** The precedence of this stylesheet in the global import list.
168 * The lowest precedence stylesheet is 0. A higher
169 * number has a higher precedence.
178 * Recalculate the precedence of this stylesheet in the global
179 * import list. The lowest precedence stylesheet is 0. A higher
180 * number has a higher precedence.
238 * Get the precedence of this stylesheet in the global import list.
239 * The lowest precedence is 0. A higher number has a higher precedence
    [all...]
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 1 //===--- OperatorPrecedence.h - Operator precedence levels ------*- C++ -*-===//
11 /// \brief Defines and computes precedence levels for binary/ternary operators.
46 /// \brief Return the precedence of the specified binary operator token.
  /external/apache-harmony/auth/src/test/java/common/tests/api/javax/security/auth/x500/
X500PrincipalTest.java 35 assertEquals("Output order precedence problem", expectedOuput, name);
49 assertEquals("Output order precedence problem", expectedOut, name);
79 assertEquals("Output order precedence problem", expected1779Out, rfc1779Name);
80 assertEquals("Output order precedence problem", expected2253Out, rfc2253Name);
  /external/chromium_org/chrome_elf/
README 13 conflicts (as the WinSxS dir and GAC both take precedence over private

Completed in 585 milliseconds

1 2 3 4 5 6 7 8 91011>>