Searched defs:Operator (Results 1 - 25 of 26) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A D2003-11-18-PtrMemConstantInitializer.cpp7 struct Operator { struct
11 Operator opTab[] = {
/external/deqp/modules/gles2/scripts/
H A Dgen-reserved_operators.py46 class Operator(): class in inherits:
54 Operator("%", "modulo"),
55 Operator("~", "bitwise_not"),
56 Operator("<<", "bitwise_shift_left"),
57 Operator(">>", "bitwise_shift_right"),
58 Operator("&", "bitwise_and"),
59 Operator("^", "bitwise_xor"),
60 Operator("|", "bitwise_or"),
61 Operator("%=", "assign_modulo"),
62 Operator("<<
[all...]
/external/llvm/include/llvm/TableGen/
H A DSetTheory.h68 /// Operator - A callback representing a DAG operator.
69 class Operator { class in class:llvm::SetTheory
72 virtual ~Operator() {}
98 StringMap<Operator*> Operators;
121 void addOperator(StringRef Name, Operator*);
/external/v8/src/compiler/
H A Doperator.cc11 Operator::~Operator() {}
17 : Operator(opcode, properties, mnemonic),
H A Doperator.h28 class Operator : public ZoneObject { class in namespace:v8::internal::compiler
50 Operator(Opcode opcode, Properties properties, const char* mnemonic) function in class:v8::internal::compiler::Operator
52 virtual ~Operator();
66 virtual bool Equals(const Operator* other) const = 0;
91 friend OStream& operator<<(OStream& os, const Operator& op);
98 DISALLOW_COPY_AND_ASSIGN(Operator);
101 DEFINE_OPERATORS_FOR_FLAGS(Operator::Properties)
103 OStream& operator<<(OStream& os, const Operator& op);
105 // An implementation of Operator that has no static parameters. Such operators
108 class SimpleOperator : public Operator {
[all...]
/external/llvm/lib/IR/
H A DUser.cpp13 #include "llvm/IR/Operator.h"
80 // Operator Class
83 Operator::~Operator() {
84 llvm_unreachable("should never destroy an Operator");
/external/llvm/utils/PerfectShuffle/
H A DPerfectShuffle.cpp22 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 DParsedTemplate.h157 OverloadedOperatorKind Operator; member in struct:clang::TemplateIdAnnotation
H A DDeclSpec.h876 OverloadedOperatorKind Operator; member in struct:clang::UnqualifiedId::OFI
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc87 const char *Operator, T RHS,
98 << Value(Data->Type, LHS) << Operator << RHS << Data->Type;
86 handleIntegerOverflowImpl(OverflowData *Data, ValueHandle LHS, const char *Operator, T RHS, ReportOptions Opts) argument
/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp135 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() +
H A DCodeGenDAGPatterns.cpp1168 static unsigned GetNumNodeResults(Record *Operator, CodeGenDAGPatterns &CDP) { argument
1169 if (Operator->getName() == "set" ||
1170 Operator->getName() == "implicit")
1173 if (Operator->isSubClassOf("Intrinsic"))
1174 return CDP.getIntrinsic(Operator).IS.RetVTs.size();
1176 if (Operator->isSubClassOf("SDNode"))
1177 return CDP.getSDNodeInfo(Operator).getNumResults();
1179 if (Operator->isSubClassOf("PatFrag")) {
1183 if (TreePattern *PFRec = CDP.getPatternFragmentIfRead(Operator))
1187 DagInit *Tree = Operator
1595 Record *Operator = getOperator(); local
2097 Record *Operator = OpDef->getDef(); local
3608 Record *Operator = N->getOperator(); local
[all...]
/external/clang/include/clang/AST/
H A DTemplateName.h459 OverloadedOperatorKind Operator; member in union:clang::DependentTemplateName::__anon628
484 OverloadedOperatorKind Operator)
485 : Qualifier(Qualifier, true), Operator(Operator),
489 OverloadedOperatorKind Operator,
491 : Qualifier(Qualifier, true), Operator(Operator),
515 return Operator;
533 OverloadedOperatorKind Operator) {
536 ID.AddInteger(Operator);
483 DependentTemplateName(NestedNameSpecifier *Qualifier, OverloadedOperatorKind Operator) argument
488 DependentTemplateName(NestedNameSpecifier *Qualifier, OverloadedOperatorKind Operator, TemplateName Canon) argument
532 Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, OverloadedOperatorKind Operator) argument
[all...]
H A DExprCXX.h56 OverloadedOperatorKind Operator; member in class:clang::CXXOperatorCallExpr
71 Operator(Op), FPContractable(fpContractable) {
80 OverloadedOperatorKind getOperator() const { return Operator; }
90 return (Operator < OO_Plus || Operator >= OO_Arrow ||
91 Operator == OO_PlusPlus || Operator == OO_MinusMinus)
/external/vboot_reference/firmware/include/
H A Dtss_constants.h78 TSS_BOOL Operator; member in struct:tdTPM_PERMANENT_FLAGS
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp948 tok::TokenKind Operator,
981 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator);
986 BinaryOperatorKind Operator,
990 Operator, EllipsisLoc, RHS, RParenLoc);
994 BinaryOperatorKind Operator) {
1009 switch (Operator) {
1031 << BinaryOperator::getOpcodeStr(Operator);
947 ActOnCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, tok::TokenKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc) argument
985 BuildCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, BinaryOperatorKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc) argument
993 BuildEmptyCXXFoldExpr(SourceLocation EllipsisLoc, BinaryOperatorKind Operator) argument
H A DSemaExprCXX.cpp1946 /// Operator.
1947 /// \param Operator Filled in with the found allocation function. Unchanged if
1954 bool AllowMissing, FunctionDecl *&Operator,
2000 Operator = FnDecl;
2267 FunctionDecl* &Operator, bool Diagnose) {
2293 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
2295 if (Operator->isDeleted()) {
2298 NoteDeletedFunction(Operator);
2338 Operator = nullptr;
3358 CXXMethodDecl *Operator local
1951 FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, DeclarationName Name, MultiExprArg Args, DeclContext *Ctx, bool AllowMissing, FunctionDecl *&Operator, bool Diagnose) argument
2265 FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, DeclarationName Name, FunctionDecl* &Operator, bool Diagnose) argument
[all...]
H A DTreeTransform.h1059 OverloadedOperatorKind Operator,
2822 BinaryOperatorKind Operator,
2825 return getSema().BuildCXXFoldExpr(LParenLoc, LHS, Operator, EllipsisLoc,
2834 BinaryOperatorKind Operator) {
2835 return getSema().BuildEmptyCXXFoldExpr(EllipsisLoc, Operator);
10623 OverloadedOperatorKind Operator,
10629 Name.setOperatorFunctionId(NameLoc, Operator, SymbolLocations);
2821 RebuildCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, BinaryOperatorKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc) argument
2833 RebuildEmptyCXXFoldExpr(SourceLocation EllipsisLoc, BinaryOperatorKind Operator) argument
10622 RebuildTemplateName(CXXScopeSpec &SS, OverloadedOperatorKind Operator, SourceLocation NameLoc, QualType ObjectType) argument
/external/llvm/include/llvm/IR/
H A DOperator.h1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
33 class Operator : public User { class in namespace:llvm
35 // The Operator class is intended to be used as a utility, and is never itself
39 Operator() = delete;
45 ~Operator() override;
75 class OverflowingBinaryOperator : public Operator {
127 class PossiblyExactOperator : public Operator {
217 class FPMathOperator : public Operator {
361 class ZExtOperator : public ConcreteOperator<Operator, Instructio
[all...]
/external/parameter-framework/tools/xmlGenerator/
H A DEddParser.py282 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 DIdentifierTable.cpp627 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) { argument
628 switch (Operator) {
/external/llvm/lib/TableGen/
H A DTGParser.cpp1443 Init *Operator = ParseValue(CurRec); local
1444 if (!Operator) return nullptr;
1469 return DagInit::get(Operator, OperatorName, DagArgs);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 895 milliseconds

12