HomeSort by relevance Sort by last modified time
    Searched defs:Operator (Results 1 - 25 of 36) sorted by null

1 2

  /frameworks/compile/mclinker/lib/Script/
Operator.cpp 1 //===- Operator.cpp -------------------------------------------------------===//
9 #include <mcld/Script/Operator.h>
19 // Operator
21 const char* Operator::OpNames[] = {
76 Operator::Operator(Arity pArity,
78 : ExprToken(ExprToken::OPERATOR),
85 Operator::~Operator()
89 void Operator::dump() cons
    [all...]
  /external/clang/test/CodeGenCXX/
2003-11-18-PtrMemConstantInitializer.cpp 7 struct Operator {
11 Operator opTab[] = {
  /external/deqp/modules/gles2/scripts/
gen-reserved_operators.py 33 if op.operator == "~":
36 self.operation = 'value ' + op.operator + ' 1;'
46 class Operator():
47 def __init__(self, operator, name):
48 self.operator = operator
54 Operator("%", "modulo"),
55 Operator("~", "bitwise_not"),
56 Operator("<<", "bitwise_shift_left"),
57 Operator(">>", "bitwise_shift_right")
    [all...]
  /packages/apps/Settings/tests/src/com/android/settings/tests/
Operator.java 22 public class Operator extends Activity {
  /external/llvm/include/llvm/TableGen/
SetTheory.h 68 /// Operator - A callback representing a DAG operator.
69 class Operator {
72 virtual ~Operator() {}
74 /// apply - Apply this operator to Expr's arguments and insert the result
98 StringMap<Operator*> Operators;
120 /// addOperator - Add a DAG operator.
121 void addOperator(StringRef Name, Operator*);
  /external/chromium_org/v8/src/compiler/
operator.cc 5 #include "src/compiler/operator.h"
11 Operator::~Operator() {}
17 : Operator(opcode, properties, mnemonic),
operator.h 16 // An operator represents description of the "computation" of a node in the
24 // parameters" which are compile-time constant parameters to the operator, such
26 // Static parameters are private to the operator and only semantically
27 // meaningful to the operator itself.
28 class Operator : public ZoneObject {
32 // Properties inform the operator-independent optimizer about legal
33 // transformations for nodes that have this operator.
50 Operator(Opcode opcode, Properties properties, const char* mnemonic)
52 virtual ~Operator();
54 // A small integer unique to all instances of a particular kind of operator,
    [all...]
  /external/chromium_org/base/metrics/
histogram_samples.h 48 enum Operator { ADD, SUBTRACT };
49 virtual bool AddSubtractImpl(SampleCountIterator* iter, Operator op) = 0;
  /external/llvm/lib/IR/
User.cpp 13 #include "llvm/IR/Operator.h"
49 Use *Begin = static_cast<Use*>(::operator new(size));
56 // User operator new Implementations
59 void *User::operator new(size_t s, unsigned Us) {
60 void *Storage = ::operator new(s + sizeof(Use) * Us);
71 // User operator delete Implementation
74 void User::operator delete(void *Usr) {
79 ::operator delete(Storage);
83 // Operator Class
86 Operator::~Operator()
    [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 22 struct Operator;
89 Operator *Op; // The Operation used to generate this value.
101 static std::vector<Operator*> TheOperators;
103 /// Operator - This is a vector operation that is available for use.
104 struct Operator {
110 Operator(unsigned short shufflemask, const char *name, unsigned opnum,
115 ~Operator() {
304 Operator *Op = TheOperators[opnum];
469 struct vmrghw : public Operator {
470 vmrghw() : Operator(0x0415, "vmrghw", OP_VMRGHW) {
    [all...]
  /external/clang/include/clang/Sema/
ParsedTemplate.h 156 /// FIXME: Temporarily stores the overloaded operator kind.
157 OverloadedOperatorKind Operator;
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 134 " has unexpected operator type!");
135 Record *Operator = OpDef->getDef();
136 if (!Operator->isSubClassOf("Instruction"))
137 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
140 CodeGenInstruction Insn(Operator);
143 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
147 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
CodeGenDAGPatterns.cpp     [all...]
  /frameworks/base/tools/split-select/
Rule.h 33 enum Operator {
46 Operator op;
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.h 88 UChar operator[](unsigned i) const
118 operator String() const { return is8Bit() ? String(m_data.characters8, m_length) : StringImpl::create8BitIfPossible(m_data.characters16, m_length); }
119 operator AtomicString() const { return is8Bit() ? AtomicString(m_data.characters8, m_length) : AtomicString(m_data.characters16, m_length); }
151 Operator = 0x100000,
  /external/clang/include/clang/AST/
TemplateName.h 332 /// Insertion operator for diagnostics. This allows sending TemplateName's
334 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
446 /// overloaded operator kind (when set).
456 /// \brief The overloaded operator name.
459 OverloadedOperatorKind Operator;
484 OverloadedOperatorKind Operator)
485 : Qualifier(Qualifier, true), Operator(Operator),
489 OverloadedOperatorKind Operator,
491 : Qualifier(Qualifier, true), Operator(Operator),
    [all...]
ExprCXX.h 41 /// \brief A call to an overloaded operator written using operator
44 /// Represents a call to an overloaded operator written using operator
55 /// \brief The overloaded operator.
56 OverloadedOperatorKind Operator;
59 // Record the FP_CONTRACT state that applies to this operator call. Only
71 Operator(Op), FPContractable(fpContractable) {
78 /// \brief Returns the kind of overloaded operator that this
80 OverloadedOperatorKind getOperator() const { return Operator; }
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 85 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=",
92 Funny = group(Operator, Bracket, Special)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 81 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=",
88 Funny = group(Operator, Bracket, Special)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 85 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=",
92 Funny = group(Operator, Bracket, Special)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 81 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=",
88 Funny = group(Operator, Bracket, Special)
  /external/llvm/include/llvm/IR/
Operator.h 1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
31 /// Operator - This is a utility class that provides an abstraction for the
34 class Operator : public User {
36 // The Operator class is intended to be used as a utility, and is never itself
38 void *operator new(size_t, unsigned) LLVM_DELETED_FUNCTION;
39 void *operator new(size_t s) LLVM_DELETED_FUNCTION;
40 Operator() LLVM_DELETED_FUNCTION;
46 ~Operator();
77 /// despite that operator having the potential for overflow
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
Operator.h 1 //===- Operator.h ---------------------------------------------------------===//
23 /** \class Operator
24 * \brief This class defines the interfaces to an operator token.
27 class Operator : public ExprToken
38 /* arithmetic operator */
97 Operator(Arity pArity, Type pType);
103 virtual ~Operator();
118 return pToken->kind() == ExprToken::OPERATOR;
121 template<Operator::Type TYPE>
122 static Operator& create()
    [all...]
  /external/chromium_org/base/test/
trace_event_analyzer.h 99 bool operator< (const ProcessThreadID& rhs) const {
113 bool operator< (const TraceEvent& rhs) const {
391 Query operator==(const Query& rhs) const;
392 Query operator!=(const Query& rhs) const;
393 Query operator< (const Query& rhs) const;
394 Query operator<=(const Query& rhs) const;
395 Query operator> (const Query& rhs) const;
396 Query operator>=(const Query& rhs) const;
397 Query operator&&(const Query& rhs) const;
398 Query operator||(const Query& rhs) const
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 786 /// ParseOperation - Parse an operator. This returns null on error.
811 TokError("did not get type for unary operator");
831 TokError("expected '(' after unary operator");
846 TokError("expected list or string type argument in unary operator");
853 TokError("expected list or string type argument in unary operator");
861 TokError("expected list type argument in unary operator");
866 TokError("empty list argument in unary operator");
873 TokError("untyped list element in unary operator");
882 assert(LHSt && "expected list type argument in unary operator");
885 TokError("expected list type argument in unary operator");
    [all...]

Completed in 1095 milliseconds

1 2