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

  /external/clang/test/CodeGenCXX/
2003-11-18-PtrMemConstantInitializer.cpp 7 struct Operator {
11 Operator opTab[] = {
  /packages/apps/Settings/tests/src/com/android/settings/tests/
Operator.java 22 public class Operator extends Activity {
  /external/llvm/utils/TableGen/
SetTheory.h 67 /// Operator - A callback representing a DAG operator.
68 struct Operator {
69 virtual ~Operator() {}
71 /// apply - Apply this operator to Expr's arguments and insert the result
92 StringMap<Operator*> Operators;
114 /// addOperator - Add a DAG operator.
115 void addOperator(StringRef Name, Operator*);
PseudoLoweringEmitter.cpp 87 " has unexpected operator type!");
88 Record *Operator = OpDef->getDef();
89 if (!Operator->isSubClassOf("Instruction"))
90 throw TGError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
93 CodeGenInstruction Insn(Operator);
96 throw TGError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
100 throw TGError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
CodeGenDAGPatterns.cpp 574 bool RecordPtrCmp::operator()(const Record *LHS, const Record *RHS) const {
    [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 152 /// FIXME: Temporarily stores the overloaded operator kind.
153 OverloadedOperatorKind Operator;
206 ASTTemplateArgsPtr::operator[](unsigned Arg) const {
DeclSpec.h 372 void operator=(const DeclSpec&); // DO NOT IMPLEMENT
758 const UnqualifiedId &operator=(const UnqualifiedId &); // DO NOT IMPLEMENT
765 /// \brief An overloaded operator name, e.g., operator+.
767 /// \brief A conversion function name, e.g., operator int.
769 /// \brief A user-defined literal name, e.g., operator "" _i.
790 /// \brief When Kind == IK_OperatorFunctionId, the overloaded operator
793 /// \brief The kind of overloaded operator.
794 OverloadedOperatorKind Operator;
797 /// the operator, e.g., the "new", "[", and "]" tokens in
    [all...]
  /external/llvm/include/llvm/
Operator.h 1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
27 /// Operator - This is a utility class that provides an abstraction for the
30 class Operator : public User {
32 // Do not implement any of these. The Operator class is intended to be used
34 void *operator new(size_t, unsigned);
35 void *operator new(size_t s);
36 Operator();
37 ~Operator();
59 static inline bool classof(const Operator *) { return true;
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 328 /// Insertion operator for diagnostics. This allows sending TemplateName's
330 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
442 /// overloaded operator kind (when set).
452 /// \brief The overloaded operator name.
455 OverloadedOperatorKind Operator;
480 OverloadedOperatorKind Operator)
481 : Qualifier(Qualifier, true), Operator(Operator),
485 OverloadedOperatorKind Operator,
487 : Qualifier(Qualifier, true), Operator(Operator),
    [all...]
ExprCXX.h 35 /// \brief A call to an overloaded operator written using operator
38 /// Represents a call to an overloaded operator written using operator
49 /// \brief The overloaded operator.
50 OverloadedOperatorKind Operator;
58 Operator(Op) {}
63 /// getOperator - Returns the kind of overloaded operator that this
65 OverloadedOperatorKind getOperator() const { return Operator; }
66 void setOperator(OverloadedOperatorKind Kind) { Operator = Kind;
    [all...]
  /external/webkit/Source/WebCore/css/
CSSParserValues.h 38 operator String() const { return String(characters, length); }
39 operator AtomicString() const { return AtomicString(characters, length); }
54 Operator = 0x100000,
  /external/llvm/lib/TableGen/
TGParser.cpp 716 /// ParseOperation - Parse an operator. This returns null on error.
742 TokError("did not get type for unary operator");
762 TokError("expected '(' after unary operator");
777 TokError("expected list or string type argument in unary operator");
784 TokError("expected list or string type argumnet in unary operator");
792 TokError("expected list type argumnet in unary operator");
797 TokError("empty list argument in unary operator");
804 TokError("untyped list element in unary operator");
813 assert(LHSt && "expected list type argument in unary operator");
816 TokError("expected list type argumnet in unary operator");
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp 770 /// operator delete[] for the given type has a size_t parameter.
777 // Try to find an operator delete[] in class scope.
787 // Very likely: there's no operator delete[].
790 // If it's ambiguous, it should be illegal to call operator delete[]
807 // If class T does not declare [an operator delete[] with one
809 // named operator delete[] with exactly two parameters, the
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h 66 enum Operator {
106 void* operator new(size_t, JSGlobalData*);
115 void* operator new(size_t, JSGlobalData*);
602 PostfixResolveNode(JSGlobalData*, const Identifier&, Operator, unsigned divot, unsigned startOffset, unsigned endOffset);
607 Operator m_operator;
612 PostfixBracketNode(JSGlobalData*, ExpressionNode* base, ExpressionNode* subscript, Operator, unsigned divot, unsigned startOffset, unsigned endOffset);
619 Operator m_operator;
624 PostfixDotNode(JSGlobalData*, ExpressionNode* base, const Identifier&, Operator, unsigned divot, unsigned startOffset, unsigned endOffset);
631 Operator m_operator;
636 PostfixErrorNode(JSGlobalData*, ExpressionNode*, Operator, unsigned divot, unsigned startOffset, unsigned endOffset)
    [all...]
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 

Completed in 588 milliseconds