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

1234

/external/clang/include/clang/AST/
H A DASTImporter.h272 /// \c To declaration mappings as they are imported.
273 virtual Decl *Imported(Decl *From, Decl *To);
281 virtual Decl *GetOriginalDecl(Decl *To) { return nullptr; } argument
285 bool IsStructurallyEquivalent(QualType From, QualType 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/IR/
H A DUser.cpp23 void User::replaceUsesOfWith(Value *From, Value *To) { argument
24 if (From == To) return; // Duh what?
32 // "To", adding "this" to the uses list of To, and
34 setOperand(i, To); // Fix it now...
H A DGlobals.cpp194 void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To, argument
207 assert(isa<Constant>(To) &&
211 this->setOperand(0, cast<Constant>(To));
/external/llvm/lib/Target/NVPTX/
H A DNVPTXImageOptimizer.cpp43 void replaceWith(Instruction *From, ConstantInt *To);
146 void NVPTXImageOptimizer::replaceWith(Instruction *From, ConstantInt *To) { argument
155 if (To->isZero())
165 From->replaceAllUsesWith(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/clang/include/clang/Lex/
H A DPreprocessorOptions.h158 void addRemappedFile(StringRef From, StringRef To) { argument
159 RemappedFiles.push_back(std::make_pair(From, To));
162 void addRemappedFile(StringRef From, llvm::MemoryBuffer *To) { argument
163 RemappedFileBuffers.push_back(std::make_pair(From, 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
/external/clang/unittests/Sema/
H A DExternalSemaSourceTest.cpp51 NamespaceDiagnosticWatcher(StringRef From, StringRef To) argument
53 ToNS.append(To);
97 NamespaceTypoProvider(StringRef From, StringRef To) argument
98 : CorrectFrom(From), CorrectTo(To), CurrentSema(nullptr), CallCount(0) {}
/external/llvm/include/llvm/ADT/
H A DTinyPtrVector.h283 iterator insert(iterator I, ItTy From, ItTy To) { argument
286 if (From == To)
292 if (std::next(From) == To) {
302 return Val.template get<VecTy*>()->insert(begin() + Offset, From, To);
H A DPostOrderIterator.h60 bool insertEdge(NodeType *From, NodeType *To) { argument
61 return Visited.insert(To).second;
80 template <class NodeType> bool insertEdge(NodeType *From, NodeType *To) { argument
81 return Visited.insert(To).second;
/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.cpp131 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
133 assert(!FunctionMap.count(To) &&
136 I->second->F = const_cast<Function*>(To);
137 FunctionMap[To] = I->second;
H A DGlobalsModRef.cpp160 void copyValue(Value *From, Value *To) override;
589 void GlobalsModRef::copyValue(Value *From, Value *To) { argument
590 AliasAnalysis::copyValue(From, To);
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp204 /// basic block to the 'To' basic block is currently feasible...
205 bool SparseSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To, argument
212 if (TI->getSuccessor(i) == To && SuccFeasible[i])
H A DLoopPass.cpp149 BasicBlock *To, Loop *L) {
152 LP->cloneBasicBlockAnalysis(From, To, L);
148 cloneBasicBlockSimpleAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) argument
/external/ceres-solver/examples/
H A Dlibmv_homography.cc164 static void To(const Parameters &p, Parameterized *h) { function in class:__anon511::Homography2DNormalizedParameterization
239 Homography2DNormalizedParameterization<double>::To(h, H);
/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/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp35 bool ArgKind::isConvertibleTo(ArgKind To, unsigned *Specificity) const { argument
36 if (K != To.K)
44 if (!MatcherKind.isBaseOf(To.MatcherKind, &Distance))
/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinCodeViewLineTables.cpp170 const MCSymbol *From, const MCSymbol *To,
175 *ToRef = MCSymbolRefExpr::Create(To, Variant, Context);
169 EmitLabelDiff(MCStreamer &Streamer, const MCSymbol *From, const MCSymbol *To, unsigned int Size = 4) argument
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp291 // Return true if an edge from the From loop to the To loop is leaving a loop.
292 // Either of To and From can be null.
293 static bool isExitingLoop(const MachineLoop *From, const MachineLoop *To) { argument
294 return From && !From->contains(To);
407 // Traces are built by two CFG traversals. To avoid recomputing too much, use a
433 bool insertEdge(const MachineBasicBlock *From, const MachineBasicBlock *To) {
434 // Skip already visited To blocks.
435 MachineTraceMetrics::TraceBlockInfo &TBI = LB.Blocks[To->getNumber()];
438 // From is null once when To is the trace center block.
442 if ((LB.Downward ? To
[all...]
H A DStackProtector.cpp65 const AllocaInst *To) {
77 I = Layout.find(To);
79 Layout.insert(std::make_pair(To, Kind));
64 adjustForColoring(const AllocaInst *From, const AllocaInst *To) argument
/external/llvm/lib/TableGen/
H A DSetTheory.cpp166 // (sequence "Format", From, To) Generate a sequence of records by name.
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
188 int64_t From, To; variable
197 To = II->getValue();
200 if (To < 0 || To >= (1 << 30))
201 PrintFatalError(Loc, "To out of range");
206 Step *= From <= To ? 1 : -1;
208 if (Step > 0 && From > To)
210 else if (Step < 0 && From < To)
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ConditionOptimizer.cpp101 bool adjustTo(MachineInstr *CmpMI, AArch64CC::CondCode Cmp, MachineInstr *To,
294 AArch64CC::CondCode Cmp, MachineInstr *To, int ToImm)
297 if (std::get<0>(Info) == ToImm && std::get<1>(Info) == To->getOpcode()) {
293 adjustTo(MachineInstr *CmpMI, AArch64CC::CondCode Cmp, MachineInstr *To, int ToImm) argument
/external/llvm/lib/Target/R600/
H A DSILowerControlFlow.cpp75 bool shouldSkip(MachineBasicBlock *From, MachineBasicBlock *To);
77 void Skip(MachineInstr &From, MachineOperand &To);
116 MachineBasicBlock *To) {
120 for (MachineBasicBlock *MBB = From; MBB != To && !MBB->succ_empty();
135 void SILowerControlFlowPass::Skip(MachineInstr &From, MachineOperand &To) { argument
137 if (!shouldSkip(*From.getParent()->succ_begin(), To.getMBB()))
142 .addOperand(To)
115 shouldSkip(MachineBasicBlock *From, MachineBasicBlock *To) argument

Completed in 2668 milliseconds

1234