Searched defs:Operator (Results 1 - 25 of 28) sorted by path

12

/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/chromium_org/base/metrics/
H A Dhistogram_samples.h48 enum Operator { ADD, SUBTRACT }; enum in class:base::HistogramSamples
49 virtual bool AddSubtractImpl(SampleCountIterator* iter, Operator op) = 0;
/external/chromium_org/base/test/
H A Dtrace_event_analyzer.h443 enum Operator { enum in class:trace_analyzer::Query
485 Query(const Query& left, const Query& right, Operator binary_op);
488 Query(const Query& left, Operator unary_op);
533 Operator operator_;
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValues.h151 Operator = 0x100000, enumerator in enum:blink::CSSParserValue::__anon11029
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/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/clang/include/clang/AST/
H A DExprCXX.h56 OverloadedOperatorKind Operator; member in class:clang::CXXOperatorCallExpr
71 Operator(Op), FPContractable(fpContractable) {
80 OverloadedOperatorKind getOperator() const { return Operator; }
H A DTemplateName.h459 OverloadedOperatorKind Operator; member in union:clang::DependentTemplateName::__anon17535
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...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h859 OverloadedOperatorKind Operator; member in struct:clang::UnqualifiedId::OFI
H A DParsedTemplate.h157 OverloadedOperatorKind Operator; member in struct:clang::TemplateIdAnnotation
/external/clang/lib/Basic/
H A DIdentifierTable.cpp556 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) { argument
557 switch (Operator) {
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1848 /// Operator.
1849 /// \param Operator Filled in with the found allocation function. Unchanged if
1856 bool AllowMissing, FunctionDecl *&Operator,
1902 Operator = FnDecl;
2164 FunctionDecl* &Operator, bool Diagnose) {
2190 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
2192 if (Operator->isDeleted()) {
2195 NoteDeletedFunction(Operator);
2235 Operator = nullptr;
3213 CXXMethodDecl *Operator local
1853 FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, DeclarationName Name, MultiExprArg Args, DeclContext *Ctx, bool AllowMissing, FunctionDecl *&Operator, bool Diagnose) argument
2162 FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, DeclarationName Name, FunctionDecl* &Operator, bool Diagnose) argument
[all...]
H A DTreeTransform.h1032 OverloadedOperatorKind Operator,
8674 // Use the Old Call Operator's TypeSourceInfo if it is already transformed.
8678 // Transform the TypeSourceInfo of the Original Lambda's Call Operator.
10018 OverloadedOperatorKind Operator,
10024 Name.setOperatorFunctionId(NameLoc, Operator, SymbolLocations);
10017 RebuildTemplateName(CXXScopeSpec &SS, OverloadedOperatorKind Operator, SourceLocation NameLoc, QualType ObjectType) argument
/external/clang/test/CodeGenCXX/
H A D2003-11-18-PtrMemConstantInitializer.cpp7 struct Operator { struct
11 Operator opTab[] = {
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc67 const char *Operator,
76 << Value(Data->Type, LHS) << Operator << RHS << Data->Type;
65 HandleIntegerOverflow(OverflowData *Data, ValueHandle LHS, const char *Operator, T RHS) argument
/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/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 ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/include/llvm/IR/
H A DOperator.h1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
31 /// Operator - This is a utility class that provides an abstraction for the
34 class Operator : public User { class in namespace:llvm
36 // The Operator class is intended to be used as a utility, and is never itself
40 Operator() LLVM_DELETED_FUNCTION;
46 ~Operator();
79 class OverflowingBinaryOperator : public Operator {
131 class PossiblyExactOperator : public Operator {
222 class FPMathOperator : public 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/llvm/lib/IR/
H A DUser.cpp13 #include "llvm/IR/Operator.h"
83 // Operator Class
86 Operator::~Operator() {
87 llvm_unreachable("should never destroy an Operator");
/external/llvm/lib/TableGen/
H A DTGParser.cpp1407 Init *Operator = ParseValue(CurRec); local
1408 if (!Operator) return nullptr;
1433 return DagInit::get(Operator, OperatorName, DagArgs);
/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...]

Completed in 766 milliseconds

12