Searched defs:To (Results 1 - 25 of 66) sorted by relevance

123

/external/llvm/lib/VMCore/
H A DUser.cpp23 // references to the "To" definition.
25 void User::replaceUsesOfWith(Value *From, Value *To) { argument
26 if (From == To) return; // Duh what?
34 // "To", adding "this" to the uses list of To, and
36 setOperand(i, To); // Fix it now...
H A DGlobals.cpp140 void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To, argument
153 assert(isa<Constant>(To) &&
157 this->setOperand(0, cast<Constant>(To));
/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp31 const Stmt &To) {
33 CharSourceRange::getTokenRange(To.getSourceRange()),
29 replaceStmtWithStmt(SourceManager &Sources, const Stmt &From, const Stmt &To) argument
/external/llvm/lib/Analysis/
H A DAliasDebugger.cpp125 virtual void copyValue(Value *From, Value *To) { argument
126 Vals.insert(To);
127 AliasAnalysis::copyValue(From, To);
H A DNoAliasAnalysis.cpp67 virtual void copyValue(Value *From, Value *To) {} argument
H A DLoopPass.cpp139 BasicBlock *To, Loop *L) {
142 LP->cloneBasicBlockAnalysis(From, To, L);
138 cloneBasicBlockSimpleAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) argument
H A DSparsePropagation.cpp203 /// basic block to the 'To' basic block is currently feasible...
204 bool SparseSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To, argument
211 if (TI->getSuccessor(i) == To && SuccFeasible[i])
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DTo.java39 * To SIP Header.
50 public final class To extends AddressParametersHeader implements class in inherits:AddressParametersHeader,javax.sip.header.ToHeader
61 public To() { method in class:To
68 public To(From from) { method in class:To
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp24 CanQualType To,
28 if (!To.isAtLeastAsQualifiedAs(From))
32 To = To.getNonReferenceType();
35 if (isa<PointerType>(From) && isa<PointerType>(To)) {
38 To = S.Context.getCanonicalType(
39 (cast<PointerType>(To))->getPointeeType());
43 const CanQualType ToUnq = To.getUnqualifiedType();
46 To.isAtLeastAsQualifiedAs(From))
23 compareTypesSimple(CanQualType From, CanQualType To, Sema &S, SourceLocation Loc, ExprValueKind FromVK) argument
H A DJumpDiagnostics.cpp80 void CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc,
718 void JumpScopeChecker::CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc, argument
724 assert(LabelAndGotoScopes.count(To) && "Jump didn't get added to scopes?");
725 unsigned ToScope = LabelAndGotoScopes[To];
/external/llvm/include/llvm/ADT/
H A DTinyPtrVector.h267 iterator insert(iterator I, ItTy From, ItTy To) { argument
270 if (From == To)
276 if (llvm::next(From) == To) {
286 return Val.template get<VecTy*>()->insert(begin() + Offset, From, To);
H A DPostOrderIterator.h59 bool insertEdge(NodeType *From, NodeType *To) { argument
60 return Visited.insert(To);
80 bool insertEdge(NodeType *From, NodeType *To) { return Visited.insert(To); } argument
/external/llvm/include/llvm/Analysis/
H A DLoopIterator.h118 bool insertEdge(BasicBlock *From, BasicBlock *To);
171 insertEdge(BasicBlock *From, BasicBlock *To) { argument
172 return LBT.visitPreorder(To);
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp233 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
235 assert(!FunctionMap.count(To) &&
238 I->second->F = const_cast<Function*>(To);
239 FunctionMap[To] = I->second;
H A DGlobalsModRef.cpp155 virtual void copyValue(Value *From, Value *To);
595 void GlobalsModRef::copyValue(Value *From, Value *To) { argument
596 AliasAnalysis::copyValue(From, To);
/external/clang/include/clang/Frontend/
H A DPreprocessorOptions.h184 void addRemappedFile(StringRef From, StringRef To) { argument
185 RemappedFiles.push_back(std::make_pair(From, To));
192 void addRemappedFile(StringRef From, const llvm::MemoryBuffer * To) { argument
193 RemappedFileBuffers.push_back(std::make_pair(From, To));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h101 /// but with the bitwidth and signedness of 'To'.
102 const llvm::APSInt &Convert(const llvm::APSInt& To, argument
104 APSIntType TargetType(To);
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp199 // Return true if an edge from the From loop to the To loop is leaving a loop.
200 // Either of To and From can be null.
201 static bool isExitingLoop(const MachineLoop *From, const MachineLoop *To) { argument
202 return From && !From->contains(To);
315 // Traces are built by two CFG traversals. To avoid recomputing too much, use a
341 bool insertEdge(const MachineBasicBlock *From, const MachineBasicBlock *To) {
342 // Skip already visited To blocks.
343 MachineTraceMetrics::TraceBlockInfo &TBI = LB.Blocks[To->getNumber()];
346 // From is null once when To is the trace center block.
350 if ((LB.Downward ? To
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ argument
50 intptr_t Offset = ((intptr_t)To - (intptr_t)At) >> 2;
56 AtI[0] = BUILD_LIS(12, To >> 16); // lis r12, hi16(address)
57 AtI[1] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address)
61 AtI[0] = BUILD_LIS(12, To >> 48); // lis r12, hi16(address)
62 AtI[1] = BUILD_ORI(12, 12, To >> 32); // ori r12, r12, lo16(address)
64 AtI[3] = BUILD_ORIS(12, 12, To >> 16); // oris r12, r12, hi16(address)
65 AtI[4] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address)
/external/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp115 void addTransition(unsigned InsnClass, State *To);
173 void State::addTransition(unsigned InsnClass, State *To) { argument
176 Transitions[InsnClass] = To;
H A DSetTheory.cpp160 // (sequence "Format", From, To) Generate a sequence of records by name.
165 throw "Bad args to (sequence \"Format\", From, To): " +
180 int64_t From, To; local
189 To = II->getValue();
192 if (To < 0 || To >= (1 << 30))
193 throw "To out of range";
198 Step *= From <= To ? 1 : -1;
200 if (Step > 0 && From > To)
202 else if (Step < 0 && From < To)
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-port_test.cc163 class To { class in namespace:testing::internal
165 To(bool* converted) { *converted = true; } // NOLINT function in class:testing::internal::To
170 To to = ::testing::internal::ImplicitCast_<To>(&converted);
281 // joining a thread, causing flakiness in this test. To counter that, we
/external/clang/include/clang/AST/
H A DASTVector.h188 // TODO: NEED To compile time dispatch on whether in_iter is a random access
283 iterator insert(ASTContext &C, iterator I, ItTy From, ItTy To) { argument
285 append(C, From, To);
289 size_t NumToInsert = std::distance(From, To);
310 std::copy(From, To, I);
330 this->uninitialized_copy(From, To, OldEnd);
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp47 const llvm::APSInt &To() const { function in class:__anon3958::Range
51 return &From() == &To() ? &From() : NULL;
56 ID.AddPointer(&To());
123 if (i->To() < Lower) {
136 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
271 os << '[' << i->From().toString(10) << ", " << i->To().toString(10)
H A DSymbolManager.cpp259 QualType From, QualType To) {
261 SymbolCast::Profile(ID, Op, From, To);
266 new (data) SymbolCast(Op, From, To);
258 getCastSymbol(const SymExpr *Op, QualType From, QualType To) argument

Completed in 2130 milliseconds

123