Searched refs:From (Results 176 - 200 of 410) sorted by relevance

1234567891011>>

/external/clang/include/clang/Sema/
H A DOverload.h361 void init(FailureKind K, Expr *From, QualType To) {
362 init(K, From->getType(), To);
363 FromExpr = From;
365 void init(FailureKind K, QualType From, QualType To) {
368 setFromType(From);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpmu-bison.c360 # define YYCOPY(To, From, Count) \
361 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
363 # define YYCOPY(To, From, Count) \
368 (To)[yyi] = (From)[yyi]; \
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPRequest.java553 From from = (From) this.getFrom();
586 From from = (From) this.getFrom();
702 if (nextHeader instanceof From
765 * Call-ID, To, the numeric part of CSeq, and From header fields in the CANCEL request
906 * Call-ID, From, and Request-URI that are equal to the values of those header fields in
970 * If the headers are switched, we generate new From and To headers otherwise we just
999 nextHeader = new From(to);
1000 ((From) nextHeade
[all...]
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp334 bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) { argument
335 assert(From != nullptr && To != nullptr && "Expected non-null Stmt's");
338 int Size = getRangeSize(From->getSourceRange());
348 ReplaceText(From->getLocStart(), Size, Str);
352 std::string Rewriter::ConvertToString(Stmt *From) { argument
353 assert(From != nullptr && "Expected non-null Stmt");
356 From->printPretty(S, nullptr, PrintingPolicy(*LangOpts));
/external/llvm/lib/CodeGen/
H A DStackColoring.cpp475 const AllocaInst *From = MFI->getObjectAllocation(SI.first); local
477 assert(To && From && "Invalid allocation object");
478 Allocas[From] = To;
487 if (From->getType() != To->getType()) {
488 BitCastInst *Cast = new BitCastInst(Inst, From->getType());
495 SP->adjustForColoring(From, To);
500 const_cast<AllocaInst *>(From)->replaceAllUsesWith(Inst);
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h561 /// Take an instruction from MBB 'Other' at the position From, and insert it
564 /// If From points to a bundle of instructions, the whole bundle is moved.
565 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { argument
567 if (Where != From)
568 splice(Where, Other, From, std::next(From));
571 /// Take a block of instructions from MBB 'Other' in the range [From, To),
577 iterator From, iterator To) {
579 From.getInstrIterator(), To.getInstrIterator());
576 splice(iterator Where, MachineBasicBlock *Other, iterator From, iterator To) argument
/external/chromium_org/content/browser/renderer_host/
H A Dime_adapter_android.cc343 return RenderWidgetHostImpl::From(rwh);
352 RenderViewHost* rvh = RenderViewHost::From(rwh);
367 return WebContents::FromRenderViewHost(RenderViewHost::From(rwh));
/external/chromium_org/mojo/services/network/
H A Durl_loader_impl.cc27 response->url = String::From(url_request->url());
260 response->redirect_url = String::From(redirect_info.new_url);
305 response->url = String::From(url_request_->url());
/external/chromium_org/mojo/services/public/cpp/input_events/lib/
H A Dinput_events_type_converters.cc104 location_data->in_view_location = Point::From(located_event->location());
107 Point::From(ui::EventSystemLocationFromNative(input.native_event()));
157 return Event::From(static_cast<const ui::Event&>(input));
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRDebugEventProxy.h110 - (void) setTokenBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRDebugEventProxy.h110 - (void) setTokenBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRDebugEventProxy.h110 - (void) setTokenBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTreeNodeStream.h110 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
H A DANTLRDebugEventProxy.h110 - (void) setTokenBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DASTParser.stg42 retval.tree = (<ASTLabelType> *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
208 [treeAdaptor setTokenBoundaries:retval.tree From:retval.start To:retval.stopToken];
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_action_browsertest.cc77 return RenderWidgetHostImpl::From(shell()->web_contents()->
/external/chromium_org/gin/modules/
H A Dmodule_registry.h43 static ModuleRegistry* From(v8::Handle<v8::Context> context);
H A Dtimer.cc45 runner_(PerContextData::From(
/external/chromium_org/gin/
H A Dper_isolate_data.cc32 PerIsolateData* PerIsolateData::From(Isolate* isolate) { function in class:gin::PerIsolateData
H A Dshell_runner.cc57 PerContextData::From(context)->set_runner(this);
/external/chromium_org/gin/test/
H A Dfile.cc73 gin::PerIsolateData* data = gin::PerIsolateData::From(isolate);
/external/chromium_org/mojo/apps/js/
H A Dmojo_runner_delegate.cc69 gin::ModuleRegistry::From(runner->GetContextHolder()->context());
/external/chromium_org/mojo/bindings/js/
H A Dwaiting_callback.cc56 runner_ = gin::PerContextData::From(context)->runner()->GetWeakPtr();
/external/chromium_org/mojo/services/surfaces/
H A Dsurfaces_impl.cc88 ret[i] = ReturnedResource::From(resources[i]);
/external/chromium_org/tools/cr/cr/base/
H A Dandroid.py26 ACTIVE = cr.Config.From(

Completed in 2628 milliseconds

1234567891011>>