/external/clang/test/CodeGenCXX/ |
H A D | 2003-11-18-PtrMemConstantInitializer.cpp | 7 struct Operator { struct 11 Operator opTab[] = {
|
/external/deqp/modules/gles2/scripts/ |
H A D | gen-reserved_operators.py | 68 class Operator(): class in inherits: 76 Operator("%", "modulo"), 77 Operator("~", "bitwise_not"), 78 Operator("<<", "bitwise_shift_left"), 79 Operator(">>", "bitwise_shift_right"), 80 Operator("&", "bitwise_and"), 81 Operator("^", "bitwise_xor"), 82 Operator("|", "bitwise_or"), 83 Operator("%=", "assign_modulo"), 84 Operator("<< [all...] |
/external/llvm/include/llvm/TableGen/ |
H A D | SetTheory.h | 68 /// Operator - A callback representing a DAG operator. 69 class Operator { class in class:llvm::SetTheory 72 virtual ~Operator() {} 98 StringMap<std::unique_ptr<Operator>> Operators; 121 void addOperator(StringRef Name, std::unique_ptr<Operator>);
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
H A D | SetTheory.h | 67 /// Operator - A callback representing a DAG operator. 68 struct Operator { struct in class:llvm::SetTheory 69 virtual ~Operator() {} 92 StringMap<Operator*> Operators; 115 void addOperator(StringRef Name, Operator*);
|
H A D | PseudoLoweringEmitter.cpp | 88 Record *Operator = OpDef->getDef(); local 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() +
|
/external/libchrome/base/metrics/ |
H A D | histogram_samples.h | 95 enum Operator { ADD, SUBTRACT }; enum in class:base::HistogramSamples 96 virtual bool AddSubtractImpl(SampleCountIterator* iter, Operator op) = 0;
|
/external/v8/src/compiler/ |
H A D | operator.cc | 25 STATIC_CONST_MEMBER_DEFINITION const size_t Operator::kMaxControlOutputCount; 27 Operator::Operator(Opcode opcode, Properties properties, const char* mnemonic, function in class:v8::internal::compiler::Operator 40 std::ostream& operator<<(std::ostream& os, const Operator& op) { 45 void Operator::PrintToImpl(std::ostream& os, PrintVerbosity verbose) const { 49 void Operator::PrintPropsTo(std::ostream& os) const { 53 if (HasProperty(Operator::k##name)) { \
|
H A D | operator.h | 33 class V8_EXPORT_PRIVATE Operator : public NON_EXPORTED_BASE(ZoneObject) { class in namespace:v8::internal::compiler 64 Operator(Opcode opcode, Properties properties, const char* mnemonic, 68 virtual ~Operator() {} 82 virtual bool Equals(const Operator* that) const { 149 DISALLOW_COPY_AND_ASSIGN(Operator); 152 DEFINE_OPERATORS_FOR_FLAGS(Operator::Properties) 154 std::ostream& operator<<(std::ostream& os, const Operator& op); 167 // A templatized implementation of Operator that has one static parameter of 170 class Operator1 : public Operator { 176 : Operator(opcod [all...] |
/external/llvm/utils/PerfectShuffle/ |
H A D | PerfectShuffle.cpp | 22 struct Operator; 88 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 { struct 110 Operator(unsigned short shufflemask, const char *name, unsigned opnum, function in struct:Operator 115 ~Operator() { 304 Operator *Op = TheOperators[opnum]; 469 struct vmrghw : public Operator { 470 vmrghw() : Operator( [all...] |
/external/swiftshader/third_party/LLVM/utils/PerfectShuffle/ |
H A D | 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 { struct 110 Operator(unsigned short shufflemask, const char *name, unsigned opnum, function in struct:Operator 115 ~Operator() { 304 Operator *Op = TheOperators[opnum]; 469 struct vmrghw : public Operator { 470 vmrghw() : Operator( [all...] |
/external/clang/include/clang/Sema/ |
H A D | ParsedTemplate.h | 164 OverloadedOperatorKind Operator; member in struct:clang::TemplateIdAnnotation
|
/external/llvm/utils/TableGen/ |
H A D | PseudoLoweringEmitter.cpp | 135 Record *Operator = OpDef->getDef(); local 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() +
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
H A D | tokenize.py | 85 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", variable 92 Funny = group(Operator, Bracket, Special)
|
/external/python/cpython2/Lib/ |
H A D | tokenize.py | 82 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", variable 89 Funny = group(Operator, Bracket, Special)
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
H A D | 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 { class in namespace:llvm 32 // Do not implement any of these. The Operator class is intended to be used 36 Operator(); 37 ~Operator(); 59 static inline bool classof(const Operator *) { return true; } 71 class OverflowingBinaryOperator : public Operator { 126 class PossiblyExactOperator : public Operator { [all...] |
/external/clang/include/clang/AST/ |
H A D | TemplateName.h | 431 OverloadedOperatorKind Operator; member in union:clang::DependentTemplateName::__anon909 456 OverloadedOperatorKind Operator) 457 : Qualifier(Qualifier, true), Operator(Operator), 461 OverloadedOperatorKind Operator, 463 : Qualifier(Qualifier, true), Operator(Operator), 487 return Operator; 505 OverloadedOperatorKind Operator) { 508 ID.AddInteger(Operator); 455 DependentTemplateName(NestedNameSpecifier *Qualifier, OverloadedOperatorKind Operator) argument 460 DependentTemplateName(NestedNameSpecifier *Qualifier, OverloadedOperatorKind Operator, TemplateName Canon) argument 504 Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, OverloadedOperatorKind Operator) argument [all...] |
/external/compiler-rt/lib/ubsan/ |
H A D | ubsan_handlers.cc | 108 const char *Operator, T RHS, 123 << Value(Data->Type, LHS) << Operator << RHS << Data->Type; 107 handleIntegerOverflowImpl(OverflowData *Data, ValueHandle LHS, const char *Operator, T RHS, ReportOptions Opts) argument
|
/external/vboot_reference/firmware/include/ |
H A D | tss_constants.h | 78 TSS_BOOL Operator; member in struct:tdTPM_PERMANENT_FLAGS
|
/external/clang/lib/Sema/ |
H A D | SemaTemplateVariadic.cpp | 953 tok::TokenKind Operator, 986 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator); 991 BinaryOperatorKind Operator, 995 Operator, EllipsisLoc, RHS, RParenLoc); 999 BinaryOperatorKind Operator) { 1010 switch (Operator) { 1021 << BinaryOperator::getOpcodeStr(Operator); 952 ActOnCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, tok::TokenKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc) argument 990 BuildCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, BinaryOperatorKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc) argument 998 BuildEmptyCXXFoldExpr(SourceLocation EllipsisLoc, BinaryOperatorKind Operator) argument
|
/external/llvm/include/llvm/IR/ |
H A D | Operator.h | 1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===// 32 class Operator : public User { class in namespace:llvm 34 // The Operator class is intended to be used as a utility, and is never itself 38 Operator() = delete; 44 ~Operator() override; 74 class OverflowingBinaryOperator : public Operator { 126 class PossiblyExactOperator : public Operator { 216 class FPMathOperator : public Operator { 361 class ZExtOperator : public ConcreteOperator<Operator, Instructio [all...] |
/external/parameter-framework/upstream/tools/xmlGenerator/ |
H A D | EddParser.py | 282 childRules = self.extractChildrenByClass([Operator, Rule]) 391 class Operator (Rule) : class in inherits:Rule 402 childWhiteList = ["Rule", "Operator"] 413 rules = self.extractChildrenByClass([Rule, Operator]) 431 childWhiteList = ["Rule", "Operator", "Path", "GroupPath"] 447 self.addChildren(configuration.extractChildrenByClass([Operator, Rule]), append=False) 494 ruleChildren = self.extractChildrenByClass([Rule, Operator]) 496 # Do not create a root rule if there is only one fist level Operator rule 497 if len(ruleChildren) == 1 and ruleChildren[0].__class__ == Operator : 501 ruleroot = Operator() [all...] |
/external/clang/lib/Basic/ |
H A D | IdentifierTable.cpp | 637 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) { argument 638 switch (Operator) {
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
H A D | TGParser.cpp | 1252 Init *Operator = ParseValue(CurRec); local 1253 if (Operator == 0) return 0; 1278 return DagInit::get(Operator, OperatorName, DagArgs);
|
/external/libchrome/base/test/ |
H A D | trace_event_analyzer.h | 540 enum Operator { enum in class:trace_analyzer::Query 582 Query(const Query& left, const Query& right, Operator binary_op); 585 Query(const Query& left, Operator unary_op); 633 Operator operator_;
|
/external/llvm/lib/TableGen/ |
H A D | TGParser.cpp | 1404 Init *Operator = ParseValue(CurRec); local 1405 if (!Operator) return nullptr; 1430 return DagInit::get(Operator, OperatorName, DagArgs);
|