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

123

/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/llvm/lib/IR/
H A DUser.cpp24 // references to the "To" definition.
26 void User::replaceUsesOfWith(Value *From, Value *To) { argument
27 if (From == To) return; // Duh what?
35 // "To", adding "this" to the uses list of To, and
37 setOperand(i, To); // Fix it now...
H A DGlobals.cpp146 void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To, argument
159 assert(isa<Constant>(To) &&
163 this->setOperand(0, cast<Constant>(To));
/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/chromium_org/mojo/public/bindings/lib/
H A Darray.h42 return To<U>();
46 U To() const { function in class:mojo::Array
/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
/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.h117 bool insertEdge(BasicBlock *From, BasicBlock *To);
170 insertEdge(BasicBlock *From, BasicBlock *To) { argument
171 return LBT.visitPreorder(To);
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp234 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
236 assert(!FunctionMap.count(To) &&
239 I->second->F = const_cast<Function*>(To);
240 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/Lex/
H A DPreprocessorOptions.h193 void addRemappedFile(StringRef From, StringRef To) { argument
194 RemappedFiles.push_back(std::make_pair(From, To));
201 void addRemappedFile(StringRef From, const llvm::MemoryBuffer * To) { argument
202 RemappedFileBuffers.push_back(std::make_pair(From, To));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h102 /// but with the bitwidth and signedness of 'To'.
103 const llvm::APSInt &Convert(const llvm::APSInt& To, argument
105 APSIntType TargetType(To);
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp295 // Return true if an edge from the From loop to the To loop is leaving a loop.
296 // Either of To and From can be null.
297 static bool isExitingLoop(const MachineLoop *From, const MachineLoop *To) { argument
298 return From && !From->contains(To);
411 // Traces are built by two CFG traversals. To avoid recomputing too much, use a
437 bool insertEdge(const MachineBasicBlock *From, const MachineBasicBlock *To) {
438 // Skip already visited To blocks.
439 MachineTraceMetrics::TraceBlockInfo &TBI = LB.Blocks[To->getNumber()];
442 // From is null once when To is the trace center block.
446 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/lib/Target/R600/
H A DSILowerControlFlow.cpp72 bool shouldSkip(MachineBasicBlock *From, MachineBasicBlock *To);
74 void Skip(MachineInstr &From, MachineOperand &To);
113 MachineBasicBlock *To) {
117 for (MachineBasicBlock *MBB = From; MBB != To && !MBB->succ_empty();
132 void SILowerControlFlowPass::Skip(MachineInstr &From, MachineOperand &To) { argument
134 if (!shouldSkip(*From.getParent()->succ_begin(), To.getMBB()))
139 .addOperand(To)
112 shouldSkip(MachineBasicBlock *From, MachineBasicBlock *To) argument
/external/llvm/utils/TableGen/
H A DSetTheory.cpp166 // (sequence "Format", From, To) Generate a sequence of records by name.
171 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
187 int64_t From, To; local
196 To = II->getValue();
199 if (To < 0 || To >= (1 << 30))
200 PrintFatalError(Loc, "To out of range");
205 Step *= From <= To ? 1 : -1;
207 if (Step > 0 && From > To)
209 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/chromium_org/testing/gtest/test/
H A Dgtest-port_test.cc202 class To { class in namespace:testing::internal
204 To(bool* converted) { *converted = true; } // NOLINT function in class:testing::internal::To
209 To to = ::testing::internal::ImplicitCast_<To>(&converted);
340 // joining a thread, causing flakiness in this test. To counter that, we
/external/clang/include/clang/AST/
H A DASTVector.h192 // TODO: NEED To compile time dispatch on whether in_iter is a random access
287 iterator insert(ASTContext &C, iterator I, ItTy From, ItTy To) { argument
289 append(C, From, To);
293 size_t NumToInsert = std::distance(From, To);
314 std::copy(From, To, I);
334 this->uninitialized_copy(From, To, OldEnd);
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp44 const llvm::APSInt &To() const { function in class:__anon16516::Range
48 return &From() == &To() ? &From() : NULL;
53 ID.AddPointer(&To());
120 if (i->To() < Lower) {
133 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
268 os << '[' << i->From().toString(10) << ", " << i->To().toString(10)

Completed in 453 milliseconds

123