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

123

/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp23 CanQualType To,
27 if (!To.isAtLeastAsQualifiedAs(From))
31 To = To.getNonReferenceType();
34 if (isa<PointerType>(From) && isa<PointerType>(To)) {
37 To = S.Context.getCanonicalType(
38 (cast<PointerType>(To))->getPointeeType());
42 const CanQualType ToUnq = To.getUnqualifiedType();
45 To.isAtLeastAsQualifiedAs(From))
22 compareTypesSimple(CanQualType From, CanQualType To, Sema &S, SourceLocation Loc, ExprValueKind FromVK) argument
H A DJumpDiagnostics.cpp79 void CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc,
677 void JumpScopeChecker::CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc, argument
682 assert(LabelAndGotoScopes.count(To) && "Jump didn't get added to scopes?");
683 unsigned ToScope = LabelAndGotoScopes[To];
/external/llvm/lib/VMCore/
H A DUser.cpp21 // references to the "To" definition.
23 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.cpp140 void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To, argument
153 assert(isa<Constant>(To) &&
157 this->setOperand(0, cast<Constant>(To));
/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 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])
H A DAliasAnalysis.cpp63 void AliasAnalysis::copyValue(Value *From, Value *To) { argument
65 AA->copyValue(From, To);
H A DLoopPass.cpp155 BasicBlock *To, Loop *L) {
158 LP->cloneBasicBlockAnalysis(From, To, L);
154 cloneBasicBlockSimpleAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) argument
H A DAliasSetTracker.cpp523 void AliasSetTracker::copyValue(Value *From, Value *To) { argument
525 AA.copyValue(From, To);
533 AliasSet::PointerRec &Entry = getEntryFor(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/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp238 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
240 assert(!FunctionMap.count(To) &&
243 I->second->F = const_cast<Function*>(To);
244 FunctionMap[To] = I->second;
H A DGlobalsModRef.cpp154 virtual void copyValue(Value *From, Value *To);
597 void GlobalsModRef::copyValue(Value *From, Value *To) { argument
598 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.h97 /// but with the bitwidth and signedness of 'To'.
98 const llvm::APSInt &Convert(const llvm::APSInt& To, argument
101 if (To.isUnsigned() == From.isUnsigned() &&
102 To.getBitWidth() == From.getBitWidth())
105 return getValue(From.getSExtValue(), To.getBitWidth(), To.isUnsigned());
/external/llvm/lib/CodeGen/
H A DMachineSink.cpp84 MachineBasicBlock *To);
87 MachineBasicBlock *To,
285 MachineBasicBlock *To) {
291 if (!CEBCandidates.insert(std::make_pair(From, To)))
320 // Avoid breaking back edge. From == To means backedge for single BB loop.
362 // new block if all the predecessors of "To", except for "From", are
364 // predecessors are dominated by "To".
283 isWorthBreakingCriticalEdge(MachineInstr *MI, MachineBasicBlock *From, MachineBasicBlock *To) argument
/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 DSetTheory.cpp142 // (sequence "Format", From, To) Generate a sequence of records by name.
146 throw "Bad args to (sequence \"Format\", From, To): " +
154 int64_t From, To; local
163 To = II->getValue();
166 if (To < 0 || To >= (1 << 30))
167 throw "To out of range";
172 int Step = From <= To ? 1 : -1;
173 for (To += Step; From != To; Fro
[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);
H A DExternalASTSource.h446 void erase(iterator From, iterator To) { argument
447 if (From.Position < 0 && To.Position < 0) {
448 Loaded.erase(Loaded.end() + From.Position, Loaded.end() + To.Position);
457 Local.erase(Local.begin() + From.Position, Local.begin() + To.Position);
/external/clang/lib/Rewrite/
H A DRewriter.cpp324 bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) { argument
333 To->printPretty(S, 0, PrintingPolicy(*LangOpts));
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp46 const llvm::APSInt &To() const { function in class:__anon3130::Range
50 return &From() == &To() ? &From() : NULL;
55 ID.AddPointer(&To());
122 if (i->To() < Lower) {
135 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
181 os << '[' << i->From().toString(10) << ", " << i->To().toString(10)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp46 void AddLegalizedOperand(SDValue From, SDValue To) { argument
47 LegalizedNodes.insert(std::make_pair(From, To));
49 if (From != To)
50 LegalizedNodes.insert(std::make_pair(To, To));
86 // blocks. To avoid this problem, compute an ordering of the nodes where each
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp231 /// instruction specified by To.
233 void llvm::ReplaceInstWithInst(Instruction *From, Instruction *To) { argument
235 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
364 // loop). To find this, examine each of the predecessors and determine which

Completed in 1776 milliseconds

123