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

12 3

  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 61 AssignmentInfo(ExpressionNode* node, int start, int divot, int initAssignments, Operator op)
73 Operator m_op;
127 ExpressionNode* makeAssignNode(ExpressionNode* left, Operator, ExpressionNode* right, bool leftHasAssignments, bool rightHasAssignments, int start, int divot, int end);
128 ExpressionNode* makePrefixNode(ExpressionNode*, Operator, int start, int divot, int end);
129 ExpressionNode* makePostfixNode(ExpressionNode*, Operator, int start, int divot, int end);
575 void assignmentStackAppend(int& assignmentStackDepth, ExpressionNode* node, int start, int divot, int assignmentCount, Operator op)
    [all...]
JSParser.cpp 508 Scope* operator->() { return &m_scopeStack->at(m_index); }
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 148 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternative
512 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) {
513 switch (Operator) {
  /external/llvm/lib/VMCore/
Value.cpp 20 #include "llvm/Operator.h"
360 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
361 V = cast<Operator>(V)->getOperand(0);
600 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
604 Entry->operator=(0);
661 Entry->operator=(New);
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 16 #include "llvm/Operator.h"
54 if (const Operator *U = dyn_cast<Operator>(V)) {
67 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul))
84 if (Operator::getOpcode(V) != Instruction::IntToPtr)
    [all...]
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 272 %type <character> operator
1390 operator: label
    [all...]
SVGCSSParser.cpp 330 if (value && value->unit == CSSParserValue::Operator && value->iValue == ',')
  /external/clang/lib/Parse/
ParseTemplate.cpp 56 void operator++() {
61 operator unsigned() const { return Depth; }
653 // operator.
845 TemplateId->Operator = OO_None;
848 TemplateId->Operator = TemplateName.OperatorFunctionId.Operator;
    [all...]
ParseExprCXX.cpp 467 /// '::' operator-function-id
496 /// direct operand of the address-of operator. This is, besides member contexts,
519 // This is only the direct operand of an & operator if it is not
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
DeclSpec.cpp     [all...]
SemaLookup.cpp 75 bool operator()(const UnqualUsingEntry &L, const UnqualUsingEntry &R) {
79 bool operator()(const UnqualUsingEntry &E, const DeclContext *DC) {
83 bool operator()(const DeclContext *DC, const UnqualUsingEntry &E) {
229 // Operator lookup is its own crazy thing; it is not the same
230 // as (e.g.) looking up an operator name for redeclaration.
231 assert(!Redeclaration && "cannot do redeclaration operator lookup");
557 // If the copy assignment operator has not yet been declared, do so now.
566 // If the move assignment operator has not yet been declared, do so now.
701 // [...] For each such operator, if argument deduction succeeds
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 26 #include "llvm/Operator.h"
269 const Operator *Op = dyn_cast<Operator>(V);
271 // The only non-operator case we can handle are GlobalAliases.
    [all...]
InlineCost.cpp 25 #include "llvm/Operator.h"
784 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
785 V = cast<Operator>(V)->getOperand(0);
    [all...]
ScalarEvolution.cpp 69 #include "llvm/Operator.h"
457 bool operator()(const SCEV *LHS, const SCEV *RHS) const {
    [all...]
InstructionSimplify.cpp 22 #include "llvm/Operator.h"
716 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
717 V = cast<Operator>(V)->getOperand(0);
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 37 /// \brief A call to an overloaded operator written using operator
40 /// Represents a call to an overloaded operator written using operator
51 /// \brief The overloaded operator.
52 OverloadedOperatorKind Operator;
60 Operator(Op) {}
65 /// getOperator - Returns the kind of overloaded operator that this
67 OverloadedOperatorKind getOperator() const { return Operator; }
68 void setOperator(OverloadedOperatorKind Kind) { Operator = Kind;
    [all...]
ASTContext.h 524 reference operator*() const { return Import; }
525 pointer operator->() const { return Import; }
527 import_iterator &operator++() {
532 import_iterator operator++(int) {
538 friend bool operator==(import_iterator X, import_iterator Y) {
542 friend bool operator!=(import_iterator X, import_iterator Y) {
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 27 #include "llvm/Operator.h"
48 class Operator;
74 void operator=(const SCEV &); // DO NOT IMPLEMENT
81 /// operator. NSW is a misnomer that we use to mean no signed overflow or
151 inline raw_ostream &operator<<(raw_ostream &OS, const SCEV &S) {
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 832 /// ParseOperation - Parse an operator. This returns null on error.
857 TokError("did not get type for unary operator");
877 TokError("expected '(' after unary operator");
892 TokError("expected list or string type argument in unary operator");
899 TokError("expected list or string type argumnet in unary operator");
907 TokError("expected list type argumnet in unary operator");
912 TokError("empty list argument in unary operator");
919 TokError("untyped list element in unary operator");
928 assert(LHSt && "expected list type argument in unary operator");
931 TokError("expected list type argumnet in unary operator");
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 47 #include "llvm/Operator.h"
206 } else if (const Operator *Op = dyn_cast<Operator>(V)) {
336 /// SelectBinaryOp - Select and emit code for a binary operator instruction,
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 375 void operator=(const DeclSpec&); // DO NOT IMPLEMENT
769 const UnqualifiedId &operator=(const UnqualifiedId &); // DO NOT IMPLEMENT
776 /// \brief An overloaded operator name, e.g., operator+.
778 /// \brief A conversion function name, e.g., operator int.
780 /// \brief A user-defined literal name, e.g., operator "" _i.
801 /// \brief When Kind == IK_OperatorFunctionId, the overloaded operator
804 /// \brief The kind of overloaded operator.
805 OverloadedOperatorKind Operator;
808 /// the operator, e.g., the "new", "[", and "]" tokens in
    [all...]
Sema.h 186 void operator=(const Sema&); // DO NOT IMPLEMENT
556 /// A flag to remember whether the implicit forms of operator new and delete
674 /// constructor or assignment operator, we found a potential copy
675 /// constructor/assignment operator whose first parameter is const-qualified.
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 531 static RegisterID* emitPreIncOrDec(BytecodeGenerator& generator, RegisterID* srcDst, Operator oper)
536 static RegisterID* emitPostIncOrDec(BytecodeGenerator& generator, RegisterID* dst, RegisterID* srcDst, Operator oper)
640 ? "Postfix ++ operator applied to value that is not a reference."
641 : "Postfix -- operator applied to value that is not a reference.");
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 606 milliseconds

12 3