/external/swiftshader/third_party/LLVM/lib/Analysis/ |
ValueTracking.cpp | 23 #include "llvm/Operator.h" 150 Operator *I = dyn_cast<Operator>(V); 598 Operator *LU = dyn_cast<Operator>(L); [all...] |
/external/llvm/lib/IR/ |
User.cpp | 13 #include "llvm/IR/Operator.h" 57 Use *Begin = static_cast<Use*>(::operator new(size)); 114 // User operator new Implementations 129 ::operator new(Size + sizeof(Use) * Us + DescBytesToAllocate)); 146 void *User::operator new(size_t Size, unsigned Us) { 150 void *User::operator new(size_t Size, unsigned Us, unsigned DescBytes) { 154 void *User::operator new(size_t Size) { 156 void *Storage = ::operator new(Size + sizeof(Use *)); 167 // User operator delete Implementation 170 void User::operator delete(void *Usr) [all...] |
Value.cpp | 28 #include "llvm/IR/Operator.h" 459 } else if (Operator::getOpcode(V) == Instruction::BitCast || 460 Operator::getOpcode(V) == Instruction::AddrSpaceCast) { 461 V = cast<Operator>(V)->getOperand(0); 517 } else if (Operator::getOpcode(V) == Instruction::BitCast) { 518 V = cast<Operator>(V)->getOperand(0); 792 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey()); 796 Entry->operator=(nullptr); 854 Entry->operator=(New);
|
/prebuilts/tools/common/netbeans-visual/ |
org-netbeans-api-visual.jar | |
/external/clang/lib/Lex/ |
PPExpressions.cpp | 152 // (except for those macro names modified by the 'defined' unary operator), 154 // of this replacement process or use of the 'defined' unary operator does 430 // If this operator is live and overflowed, report the issue. 474 /// getPrecedence - Return the precedence of the specified binary operator 540 tok::TokenKind Operator = PeekTok.getKind(); 542 // If this is a short-circuiting operator, see if the RHS of the operator is 548 if (Operator == tok::ampamp && LHS.Val == 0) 550 else if (Operator == tok::pipepipe && LHS.Val != 0) 552 else if (Operator == tok::question && LHS.Val == 0 [all...] |
/external/clang/lib/Sema/ |
SemaTemplateVariadic.cpp | [all...] |
/external/parameter-framework/upstream/tools/xmlGenerator/ |
EddParser.py | 281 # extract all children rule and operator 282 childRules = self.extractChildrenByClass([Operator, Rule]) 391 class Operator (Rule) : 392 """class implementing the operator concept 394 An operator contains rules and other operators 399 tag = "operator" 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 [all...] |
/external/v8/src/compiler/ |
js-inlining.cc | 15 #include "src/compiler/common-operator.h" 17 #include "src/compiler/js-operator.h" 20 #include "src/compiler/operator-properties.h" 21 #include "src/compiler/simplified-operator.h" 38 // the {JSCallFunction} or the {JSCallConstruct} operator. 236 const Operator* op = common()->FrameState( 238 const Operator* op0 = common()->StateValues(0); 244 const Operator* op_param = 274 const Operator* op = common()->FrameState( 276 const Operator* op0 = common()->StateValues(0) [all...] |
value-numbering-reducer.cc | 56 if (!node->op()->HasProperty(Operator::kIdempotent)) return NoChange();
|
simplified-lowering.cc | 13 #include "src/compiler/common-operator.h" 20 #include "src/compiler/operator-properties.h" 22 #include "src/compiler/simplified-operator.h" 46 // to local rules for each operator. 48 // possible lowering for each operator so far, and that in turn determines 172 void ChangeToPureOp(Node* node, const Operator* new_op) { 877 // Update the select operator. 902 // Update the phi operator. [all...] |
wasm-compiler.cc | 15 #include "src/compiler/common-operator.h" 23 #include "src/compiler/js-operator.h" 25 #include "src/compiler/machine-operator.h" 52 const Operator* UnsupportedOpcode(wasm::WasmOpcode opcode) { 76 jsgraph->zone(), f, fun->nargs, Operator::kNoProperties, 348 if (node->op()->HasProperty(compiler::Operator::kNoThrow)) { 456 const Operator* op; 725 const Operator* op; [all...] |
js-generic-lowering.cc | 10 #include "src/compiler/common-operator.h" 12 #include "src/compiler/machine-operator.h" 15 #include "src/compiler/operator-properties.h" 90 Operator::Properties properties) { 105 Operator::Properties properties = node->op()->properties(); 119 // The === operator doesn't need the current context. 124 Operator::kEliminatable); 128 // The !== operator doesn't need the current context. 133 Operator::kEliminatable); 142 Operator::kEliminatable) [all...] |
/build/soong/androidmk/cmd/androidmk/ |
values.go | 35 return &bpparser.Operator{ 36 Operator: '+',
|
/external/libchrome/base/test/ |
trace_event_analyzer.h | 104 bool operator< (const ProcessThreadID& rhs) const { 119 bool operator< (const TraceEvent& rhs) const { 123 TraceEvent& operator=(TraceEvent&& rhs); 469 Query operator==(const Query& rhs) const; 470 Query operator!=(const Query& rhs) const; 471 Query operator< (const Query& rhs) const; 472 Query operator<=(const Query& rhs) const; 473 Query operator> (const Query& rhs) const; 474 Query operator>=(const Query& rhs) const; 475 Query operator&&(const Query& rhs) const [all...] |
/external/llvm/lib/Transforms/Scalar/ |
SpeculativeExecution.cpp | 70 #include "llvm/IR/Operator.h" 209 switch (Operator::getOpcode(I)) {
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
CodeGenDAGPatterns.h | 138 bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; } 139 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; } 272 bool operator==(const TreePredicateFn &RHS) const { 276 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); } 303 /// Operator - The Record for the operator if this is an interior node (not 305 Record *Operator; 327 : Operator(Op), Val(0), TransformFn(0), Children(Ch) { 331 : Operator(0), Val(val), TransformFn(0) { 362 Record *getOperator() const { assert(!isLeaf()); return Operator; } [all...] |
/build/blueprint/parser/ |
printer.go | 108 case *Operator: 165 func (p *printer) printOperator(operator *Operator) { 166 p.printExpression(operator.Args[0]) 168 p.printToken(string(operator.Operator), operator.OperatorPos) 169 if operator.Args[0].End().Line == operator.Args[1].Pos().Line { 174 p.printExpression(operator.Args[1] [all...] |
parser.go | 338 func (p *parser) evaluateOperator(value1, value2 Expression, operator rune, 339 pos scanner.Position) (*Operator, error) { 347 return nil, fmt.Errorf("mismatched type in operator %c: %s != %s", operator, 353 switch operator { 367 return nil, fmt.Errorf("operator %c not supported on type %s", operator, v.Type()) 370 panic("unknown operator " + string(operator)) 374 return &Operator{ [all...] |
/external/llvm/lib/Analysis/ |
ValueTracking.cpp | 36 #include "llvm/IR/Operator.h" [all...] |
/prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.0/ |
rxjava-1.1.0.jar | |
/prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.6/ |
rxjava-1.1.6.jar | |
/prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.3/ |
rxjava-1.1.3.jar | |
/prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.4/ |
rxjava-1.1.4.jar | |
/prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.5/ |
rxjava-1.1.5.jar | |
/prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.2.3/ |
rxjava-1.2.3.jar | |