Searched refs:From (Results 226 - 250 of 410) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/browser/
H A Drender_view_host.h71 static RenderViewHost* From(RenderWidgetHost* rwh);
/external/chromium_org/content/public/test/
H A Dtest_renderer_host.cc70 RenderWidgetHostImpl* host_impl = RenderWidgetHostImpl::From(rvh);
/external/chromium_org/mojo/bindings/js/
H A Ddrain_data.cc24 runner_ = gin::PerContextData::From(context)->runner()->GetWeakPtr();
/external/chromium_org/mojo/public/cpp/bindings/
H A Darray.h52 static Array From(const U& other) { function in class:mojo::Array
H A Dstring.h34 static String From(const U& other) { function in class:mojo::String
/external/chromium_org/mojo/public/cpp/system/
H A Dhandle.h112 static ScopedHandleBase<HandleType> From( function in class:mojo::ScopedHandleBase
/external/chromium_org/tools/cr/cr/base/
H A Dclient.py35 OVERRIDES = cr.Config.From("""
44 DEFAULT = cr.Config.From(
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp34 SourceLocation From; member in struct:__anon17971::InclusionRewriter::FileChange
37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) { argument
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp84 void CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc,
740 void JumpScopeChecker::CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc, argument
743 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(From)))
748 unsigned FromScope = LabelAndGotoScopes[From];
/external/llvm/include/llvm/Analysis/
H A DSparsePropagation.h165 /// isEdgeFeasible - Return true if the control flow edge from the 'From'
170 bool isEdgeFeasible(BasicBlock *From, BasicBlock *To,
/external/llvm/include/llvm/IR/
H A DUser.h166 /// replaceUsesOfWith - Replaces all references to the "From" definition with
169 void replaceUsesOfWith(Value *From, Value *To);
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp522 void AliasSetTracker::copyValue(Value *From, Value *To) { argument
524 AA.copyValue(From, To);
527 PointerMapType::iterator I = PointerMap.find_as(From);
536 I = PointerMap.find_as(From);
H A DLoopPass.cpp144 void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From, argument
148 LP->cloneBasicBlockAnalysis(From, To, L);
H A DSparsePropagation.cpp203 /// isEdgeFeasible - Return true if the control flow edge from the 'From'
205 bool SparseSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To, argument
208 TerminatorInst *TI = From->getTerminator();
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DNameMap.java111 putNameMap(FROM, From.class.getName()); //17
/external/chromium_org/content/browser/gpu/
H A Dgpu_process_host_ui_shim.cc297 RenderWidgetHostImpl::From(view->GetRenderWidgetHost());
339 RenderWidgetHostImpl::From(view->GetRenderWidgetHost());
/external/chromium_org/mojo/application_manager/
H A Dapplication_manager.cc94 client()->AcceptConnection(String::From(requestor_url),
226 args = Array<String>::From(args_it->second);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsvn-create-patch208 if (/^Copied From URL: (.+?)[\r\n]*$/) {
210 } elsif (/^Copied From Rev: ([0-9]+)/) {
/external/llvm/include/llvm/ADT/
H A DPostOrderIterator.h59 bool insertEdge(NodeType *From, NodeType *To) { argument
76 // Return true if edge destination should be visited, called with From = 0 for
80 bool insertEdge(NodeType *From, NodeType *To) { return Visited.insert(To); } argument
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPMessage.java44 import gov.nist.javax.sip.header.From;
150 protected From fromHeader;
700 if (h instanceof From) {
701 this.fromHeader = (From) h;
751 if (toRemove instanceof From) {
790 if (removed instanceof From) {
816 * @return A string containing the concatenation of various portions of the From,To,Via and
818 * request contain the same values in the Call-ID, CSeq, To, and From fields (with the
852 From from = (From) thi
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.h268 template<typename To, typename From>
269 inline To down_cast(From* f) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h219 /// Requires \c T to be derived from \c From.
220 template <typename From>
221 Matcher(const Matcher<From> &Other,
222 typename std::enable_if<std::is_base_of<From, T>::value &&
223 !std::is_same<From, T>::value>::type * = 0)
224 : Implementation(new ImplicitCastMatcher<From>(Other)) {}
284 explicit ImplicitCastMatcher(const Matcher<Base> &From) argument
285 : From(From) {}
289 return From
293 const Matcher<Base> From; member in class:clang::ast_matchers::internal::Matcher::ImplicitCastMatcher
[all...]
/external/llvm/lib/CodeGen/
H A DSplitKit.cpp1355 SlotIndex From = enterIntvBefore(LeaveBefore); local
1356 useIntv(From, To);
1358 useIntv(Start, From);
1359 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1370 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore)); local
1371 useIntv(From, To);
1373 useIntv(Start, From);
1374 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1434 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr)); local
1435 useIntv(From, Id
[all...]
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);
437 bool insertEdge(const MachineBasicBlock *From, const MachineBasicBlock *To) {
442 // From is null once when To is the trace center block.
443 if (From) {
444 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
446 if ((LB.Downward ? To : From)
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h807 // ImplicitlyConvertible<From, To>::value is a compile-time bool
808 // constant that's true iff type From can be implicitly converted to
810 template <typename From, typename To>
816 // MakeFrom() is an expression whose type is From. We cannot simply
817 // use From(), as the type From may not have a public default
819 static typename AddReference<From>::type MakeFrom();
841 static const bool value = __is_convertible(From, To);
852 template <typename From, typename To>
853 const bool ImplicitlyConvertible<From, T
[all...]

Completed in 7816 milliseconds

1234567891011>>