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

12345

/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dpsfb.h31 void To(uint32_t ssrc) { media_ssrc_ = ssrc; } function in class:webrtc::rtcp::Psfb
H A Drtpfb.h31 void To(uint32_t ssrc) { media_ssrc_ = ssrc; } function in class:webrtc::rtcp::Rtpfb
H A Dvoip_metric.h38 void To(uint32_t ssrc) { ssrc_ = ssrc; } function in class:webrtc::rtcp::VoipMetric
H A Dtmmbr.h34 void To(uint32_t ssrc) { function in class:webrtc::rtcp::Tmmbr
H A Dreport_block.h33 void To(uint32_t ssrc) { source_ssrc_ = ssrc; } function in class:webrtc::rtcp::ReportBlock
/external/clang/include/clang/AST/
H A DASTImporter.h277 /// \c To declaration mappings as they are imported.
278 virtual Decl *Imported(Decl *From, Decl *To);
286 virtual Decl *GetOriginalDecl(Decl *To) { return nullptr; } argument
290 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.cpp24 void User::replaceUsesOfWith(Value *From, Value *To) { argument
25 if (From == To) return; // Duh what?
33 // "To", adding "this" to the uses list of To, and
35 setOperand(i, To); // Fix it now...
/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/autotest/site_utils/
H A Ddump_to_cloudsql.py129 sys.exit('Unable to import MySQLdb. To install on Ubuntu: ' namespace
/external/clang/include/clang/Lex/
H A DPreprocessorOptions.h154 void addRemappedFile(StringRef From, StringRef To) { argument
155 RemappedFiles.emplace_back(From, To);
158 void addRemappedFile(StringRef From, llvm::MemoryBuffer *To) { argument
159 RemappedFileBuffers.emplace_back(From, To);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h105 const llvm::APSInt &To,
110 const llvm::APSInt &To) {
112 To, true);
120 From, To, false);
108 assumeWithinInclusiveRangeDual( ProgramStateRef State, NonLoc Value, const llvm::APSInt &From, const llvm::APSInt &To) argument
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/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.h282 iterator insert(iterator I, ItTy From, ItTy To) { argument
285 if (From == To)
291 if (std::next(From) == To) {
301 return Val.template get<VecTy*>()->insert(begin() + Offset, From, To);
/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/
H A DCallGraph.cpp154 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
156 assert(!FunctionMap.count(To) &&
159 I->second->F = const_cast<Function*>(To);
160 FunctionMap[To] = std::move(I->second);
H A DLoopPass.cpp94 BasicBlock *To, Loop *L) {
97 LP->cloneBasicBlockAnalysis(From, To, L);
93 cloneBasicBlockSimpleAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) argument
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])
/external/ceres-solver/examples/
H A Dlibmv_homography.cc164 static void To(const Parameters &p, Parameterized *h) { function in class:__anon656::Homography2DNormalizedParameterization
239 Homography2DNormalizedParameterization<double>::To(h, H);
/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/clang/lib/Serialization/
H A DASTReaderInternals.h104 static void MergeDataInto(const data_type &From, data_type_builder &To) { argument
105 To.Data.reserve(To.Data.size() + From.size());
107 To.insert(ID);
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp195 const llvm::APSInt &To, bool InRange) {
197 assert(From.isUnsigned() == To.isUnsigned() &&
198 From.getBitWidth() == To.getBitWidth() &&
205 return assumeSymWithinInclusiveRange(State, Sym, From, To, InRange);
216 return assumeSymWithinInclusiveRange(State, Sym, From, To, InRange);
222 bool IsInRange = IntVal >= From && IntVal <= To;
305 const llvm::APSInt &To,
318 llvm::APSInt ConvertedTo = ComparisonType.convert(To);
193 assumeWithinInclusiveRange( ProgramStateRef State, NonLoc Value, const llvm::APSInt &From, const llvm::APSInt &To, bool InRange) argument
302 assumeSymWithinInclusiveRange(ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, const llvm::APSInt &To, bool InRange) argument

Completed in 2921 milliseconds

12345