HomeSort by relevance Sort by last modified time
    Searched refs:operator (Results 51 - 75 of 197) sorted by null

1 23 4 5 6 7 8

  /external/webkit/Source/WebCore/platform/mac/
KURLMac.mm 59 KURL::operator NSURL *() const
  /external/webkit/Source/WebCore/svg/
SVGFECompositeElement.idl 44 readonly attribute SVGAnimatedEnumeration operator;
  /external/webkit/Source/WebKit2/Shared/mac/
LayerTreeContextMac.mm 61 bool operator==(const LayerTreeContext& a, const LayerTreeContext& b)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
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. *)
89 (* If this is a unary operator, read it. *)
93 (* If the current token is not an operator, it must be a primary expr. *)
110 (* Parse the unary expression after the binary operator. *)
117 (* If BinOp binds less tightly with rhs than the operator after
118 * rhs, let the pending operator take rhs as its lhs. *)
162 'Token.Kwd op ?? "expected an operator";
171 (* Verify right number of arguments for operator. *)
173 then raise (Stream.Error "invalid number of operands for operator")
    [all...]
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaContentVerifierProviderBuilder.java 1 package org.bouncycastle.operator.jcajce;
20 import org.bouncycastle.operator.ContentVerifier;
21 import org.bouncycastle.operator.ContentVerifierProvider;
22 import org.bouncycastle.operator.OperatorCreationException;
23 import org.bouncycastle.operator.OperatorStreamException;
24 import org.bouncycastle.operator.RawContentVerifier;
25 import org.bouncycastle.operator.RuntimeOperatorException;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
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. *)
103 (* If this is a unary operator, read it. *)
107 (* If the current token is not an operator, it must be a primary expr. *)
124 (* Parse the primary expression after the binary operator. *)
131 (* If BinOp binds less tightly with rhs than the operator after
132 * rhs, let the pending operator take rhs as its lhs. *)
188 'Token.Kwd op ?? "expected an operator";
197 (* Verify right number of arguments for operator. *)
199 then raise (Stream.Error "invalid number of operands for operator")
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceErrorMac.mm 105 ResourceError::operator NSError *() const
115 ResourceError::operator CFErrorRef() const
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokens.py 58 OPERATOR = 'operator'
110 def IsOperator(self, operator):
111 """Tests if this token is the given operator.
114 operator: The operator to compare to.
117 True if this token is a operator token with the given name.
119 return self.type == JavaScriptTokenType.OPERATOR and self.string == operator
122 """Tests if this token is an assignment operator
    [all...]
  /external/valgrind/main/drd/tests/
annotate_smart_pointer2.stderr.exp 5 by 0x........: smart_ptr<counter>::operator=(counter*) (annotate_smart_pointer.cpp:?)
8 at 0x........: ...operator new... (vg_replace_malloc.c:...)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInfoGenerator.java 20 import org.bouncycastle.operator.ContentSigner;
21 import org.bouncycastle.operator.DefaultDigestAlgorithmIdentifierFinder;
22 import org.bouncycastle.operator.DigestAlgorithmIdentifierFinder;
23 import org.bouncycastle.operator.DigestCalculator;
24 import org.bouncycastle.operator.DigestCalculatorProvider;
25 import org.bouncycastle.operator.OperatorCreationException;
  /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. *)
63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
71 * rhs, let the pending operator take rhs as its lhs. *)
ast.ml 13 (* variant for a binary operator. *)
  /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. *)
63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
71 * rhs, let the pending operator take rhs as its lhs. *)
ast.ml 13 (* variant for a binary operator. *)
  /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. *)
63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
71 * rhs, let the pending operator take rhs as its lhs. *)
ast.ml 13 (* variant for a binary operator. *)
  /external/webkit/Source/WebCore/bindings/objc/
ObjCEventListener.mm 82 bool ObjCEventListener::operator==(const EventListener& listener)
  /external/valgrind/main/massif/tests/
peak2.stderr.exp 4 Massif: operator new(unsigned)
5 Massif: operator new(unsigned long)
7 Massif: operator new[](unsigned)
8 Massif: operator new[](unsigned long)
14 Massif: operator new(unsigned, std::nothrow_t const&)
15 Massif: operator new[](unsigned, std::nothrow_t const&)
16 Massif: operator new(unsigned long, std::nothrow_t const&)
17 Massif: operator new[](unsigned long, std::nothrow_t const&)
  /external/webkit/Tools/QueueStatusServer/handlers/
dashboard.py 29 import operator namespace
statusbubble.py 29 import operator namespace
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 99 for (String operator : sOperators) {
100 if (sReplacementTable.containsKey(operator)) {
101 parsedText = parsedText.replace(operator, sReplacementTable.get(operator));
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 73 /** Connection operator for this pool */
74 protected final ClientConnectionOperator operator; field in class:ConnPoolByRoute
96 public ConnPoolByRoute(final ClientConnectionOperator operator, final HttpParams params) {
98 if (operator == null) {
99 throw new IllegalArgumentException("Connection operator may not be null");
101 this.operator = operator;
315 entry = createEntry(rospl, operator);
320 entry = createEntry(rospl, operator);
476 * @param op the operator for creating a connectio
    [all...]
  /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. *)
99 (* Parse the primary expression after the binary operator. *)
106 (* If BinOp binds less tightly with rhs than the operator after
107 * rhs, let the pending operator take rhs as its lhs. *)

Completed in 4039 milliseconds

1 23 4 5 6 7 8