/external/llvm/test/FrontendC++/ |
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() +
|
TGParser.cpp | 676 /// ParseOperation - Parse an operator. This returns null on error. 702 TokError("did not get type for unary operator"); 722 TokError("expected '(' after unary operator"); 737 TokError("expected list or string type argument in unary operator"); 744 TokError("expected list or string type argumnet in unary operator"); 752 TokError("expected list type argumnet in unary operator"); 757 TokError("empty list argument in unary operator"); 764 TokError("untyped list element in unary operator"); 773 assert(LHSt && "expected list type argument in unary operator"); 776 TokError("expected list type argumnet in unary operator"); [all...] |
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 | 369 void operator=(const DeclSpec&); // DO NOT IMPLEMENT 750 const UnqualifiedId &operator=(const UnqualifiedId &); // DO NOT IMPLEMENT 757 /// \brief An overloaded operator name, e.g., operator+. 759 /// \brief A conversion function name, e.g., operator int. 761 /// \brief A user-defined literal name, e.g., operator "" _i. 782 /// \brief When Kind == IK_OperatorFunctionId, the overloaded operator 785 /// \brief The kind of overloaded operator. 786 OverloadedOperatorKind Operator; 789 /// 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 | 331 /// Insertion operator for diagnostics. This allows sending TemplateName's 333 const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, 445 /// overloaded operator kind (when set). 455 /// \brief The overloaded operator name. 458 OverloadedOperatorKind Operator; 483 OverloadedOperatorKind Operator) 484 : Qualifier(Qualifier, true), Operator(Operator), 488 OverloadedOperatorKind Operator, 490 : 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/clang/lib/Sema/ |
SemaExprCXX.cpp | 779 /// operator delete[] for the given type has a size_t parameter. 786 // Try to find an operator delete[] in class scope. 796 // Very likely: there's no operator delete[]. 799 // If it's ambiguous, it should be illegal to call operator delete[] 816 // If class T does not declare [an operator delete[] with one 818 // 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 | |