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

1 2 3

  /external/clang/test/CodeGenCXX/
2003-11-18-PtrMemConstantInitializer.cpp 7 struct Operator {
11 Operator opTab[] = {
  /external/clang/include/clang/Basic/
OperatorKinds.h 22 OO_None, //< Not an overloaded operator
29 /// \brief Retrieve the spelling of the given overloaded operator, without
30 /// the preceding "operator" keyword.
31 const char *getOperatorSpelling(OverloadedOperatorKind Operator);
  /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/llvm/utils/TableGen/
SetTheory.h 67 /// Operator - A callback representing a DAG operator.
68 class Operator {
71 virtual ~Operator() {}
73 /// apply - Apply this operator to Expr's arguments and insert the result
96 StringMap<Operator*> Operators;
118 /// addOperator - Add a DAG operator.
119 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() +
SetTheory.cpp 29 struct AddOp : public SetTheory::Operator {
36 struct SubOp : public SetTheory::Operator {
51 struct AndOp : public SetTheory::Operator {
65 struct SetIntBinOp : public SetTheory::Operator {
72 throw "Operator requires (Op Set, Int) arguments: " + Expr->getAsString();
143 struct InterleaveOp : public SetTheory::Operator {
161 struct SequenceOp : public SetTheory::Operator {
219 void SetTheory::Operator::anchor() { }
236 void SetTheory::addOperator(StringRef Name, Operator *Op) {
268 Operator *Op = Operators.lookup(OpInit->getDef()->getName())
    [all...]
CodeGenDAGPatterns.cpp 577 bool RecordPtrCmp::operator()(const Record *LHS, const Record *RHS) const {
    [all...]
CodeGenDAGPatterns.h 139 bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
140 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
273 bool operator==(const TreePredicateFn &RHS) const {
277 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
304 /// Operator - The Record for the operator if this is an interior node (not
306 Record *Operator;
328 : Operator(Op), Val(0), TransformFn(0), Children(Ch) {
332 : Operator(0), Val(val), TransformFn(0) {
363 Record *getOperator() const { assert(!isLeaf()); return Operator; }
    [all...]
  /packages/apps/Settings/tests/src/com/android/settings/tests/
Operator.java 22 public class Operator extends Activity {
  /external/llvm/include/llvm/
Operator.h 1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
28 /// Operator - This is a utility class that provides an abstraction for the
31 class Operator : public User {
33 // Do not implement any of these. The Operator class is intended to be used
35 void *operator new(size_t, unsigned);
36 void *operator new(size_t s);
37 Operator();
38 ~Operator();
60 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...]
  /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...]
SyntaxChecker.h 98 ALWAYS_INLINE bool operator!() { return !type; }
121 ExpressionType makeAssignNode(ExpressionType, Operator, ExpressionType, bool, bool, int, int, int) { return AssignmentExpr; }
122 ExpressionType makePrefixNode(ExpressionType, Operator, int, int, int) { return PreExpr; }
123 ExpressionType makePostfixNode(ExpressionType, Operator, int, int, int) { return PostExpr; }
237 void assignmentStackAppend(int, int, int, int, int, Operator) { }
NodeConstructors.h 30 inline void* ParserArenaFreeable::operator new(size_t size, JSGlobalData* globalData)
35 inline void* ParserArenaDeletable::operator new(size_t size, JSGlobalData* globalData)
296 inline PostfixResolveNode::PostfixResolveNode(JSGlobalData* globalData, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
302 inline PostfixBracketNode::PostfixBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
311 inline PostfixDotNode::PostfixDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
320 inline PostfixErrorNode::PostfixErrorNode(JSGlobalData* globalData, ExpressionNode* expr, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
375 inline PrefixResolveNode::PrefixResolveNode(JSGlobalData* globalData, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
381 inline PrefixBracketNode::PrefixBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
390 inline PrefixDotNode::PrefixDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset)
399 inline PrefixErrorNode::PrefixErrorNode(JSGlobalData* globalData, ExpressionNode* expr, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset
    [all...]
  /external/webkit/Source/WebCore/css/
MediaQueryExp.cpp 66 if (value->unit == CSSParserValue::Operator && value->iValue == '/')
CSSParserValues.cpp 73 else if (unit == CSSParserValue::Operator) {
CSSParserValues.h 38 operator String() const { return String(characters, length); }
39 operator AtomicString() const { return AtomicString(characters, length); }
54 Operator = 0x100000,
CSSParser.cpp     [all...]
  /packages/apps/Settings/tests/src/com/android/settings/
SettingsHookTests.java 20 import com.android.settings.tests.Operator;
38 * Tests for the Settings operator/manufacturer hook.
71 * Test that the operator/manufacturer settings hook test application is
82 * Test that the operator test activity has registered an intent-filter for
118 * Test that the operator preference is available in the Settings
  /external/llvm/lib/Analysis/
ValueTracking.cpp 24 #include "llvm/Operator.h"
325 Operator *I = dyn_cast<Operator>(V);
652 Operator *LU = dyn_cast<Operator>(L);
    [all...]
Loads.cpp 21 #include "llvm/Operator.h"
69 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
70 V = cast<Operator>(V)->getOperand(0);
  /external/clang/include/clang/Sema/
ParsedTemplate.h 156 /// FIXME: Temporarily stores the overloaded operator kind.
157 OverloadedOperatorKind Operator;
214 ASTTemplateArgsPtr::operator[](unsigned Arg) const {
  /external/llvm/include/llvm/Support/
PatternMatch.h 34 #include "llvm/Operator.h"
574 if (Operator *O = dyn_cast<Operator>(V))
628 if (Operator *O = dyn_cast<Operator>(V))
655 if (Operator *O = dyn_cast<Operator>(V))
681 if (Operator *O = dyn_cast<Operator>(V))
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /external/clang/lib/Lex/
PPExpressions.cpp 356 // If this operator is live and overflowed, report the issue.
398 /// getPrecedence - Return the precedence of the specified binary operator
456 tok::TokenKind Operator = PeekTok.getKind();
458 // If this is a short-circuiting operator, see if the RHS of the operator is
464 if (Operator == tok::ampamp && LHS.Val == 0)
466 else if (Operator == tok::pipepipe && LHS.Val != 0)
468 else if (Operator == tok::question && LHS.Val == 0)
473 // Consume the operator, remembering the operator's location for reporting
    [all...]

Completed in 892 milliseconds

1 2 3