Searched defs:Location (Results 51 - 75 of 98) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DDebuggerModel.js67 /** @typedef {{location: ?WebInspector.DebuggerModel.Location, sourceURL: ?string, functionName: string, scopeChain: (Array.<!DebuggerAgent.Scope>|null)}} */
251 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>)=} callback
269 * @param {!Array.<!DebuggerAgent.Location>} locations
274 var rawLocations = locations ? locations.map(WebInspector.DebuggerModel.Location.fromPayload.bind(WebInspector.DebuggerModel.Location, target)) : [];
283 * @param {!WebInspector.DebuggerModel.Location} rawLocation
285 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>)=} callback
294 * @param {!DebuggerAgent.Location} actualLocation
299 var location = WebInspector.DebuggerModel.Location.fromPayload(target, actualLocation);
329 * @param {!DebuggerAgent.Location} locatio
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h183 class Location { class in namespace:clang::ento::check
544 SVal Location; member in struct:clang::ento::ImplicitNullDerefEvent
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h110 /// Location - The program location (within a function body) associated
112 const ProgramPoint Location; member in class:clang::ento::ExplodedNode
127 : Location(loc), State(state), Succs(IsSink) {
134 ProgramPoint getLocation() const { return Location; }
159 return Location.getAs<T>();
173 Profile(ID, Location, State, isSink());
292 /// \brief Retrieve the node associated with a (Location,State) pair,
293 /// where the 'Location' is a ProgramPoint in the CFG. If no node for
H A DCallEvent.h112 /// Use the "Data" and "Location" fields instead.
131 SourceLocation Location; member in class:clang::ento::CallEvent
152 Data(Original.Data), Location(Original.Location), RefCount(0) {}
657 Location = Trigger->getLocEnd();
664 SourceRange getSourceRange() const override { return Location; }
H A DCoreEngine.h318 ProgramPoint &Location; member in class:clang::ento::NodeBuilderWithSinks
323 : NodeBuilder(Pred, DstSet, Ctx), Location(L) {}
328 const ProgramPoint &LocalLoc = (Tag ? Location.withTag(Tag) : Location);
334 const ProgramPoint &LocalLoc = (Tag ? Location.withTag(Tag) : Location);
/external/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp245 SourceLocation Location; local
246 Location.Line = Line;
247 Location.Column = Code.data() - StartOfLine.data() + 1;
248 return Location;
/external/clang/lib/Lex/
H A DPreprocessor.cpp317 SourceLocation Location = Def.getLocation(); local
320 (Location.isValid() &&
321 SourceMgr.isBeforeInTranslationUnit(BestLocation, Location))) {
322 BestLocation = Location;
H A DModuleMap.cpp930 unsigned Location; member in struct:clang::MMToken
936 Location = 0;
944 return SourceLocation::getFromRawEncoding(Location);
1055 Tok.Location = LToken.getLocation().getRawEncoding();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp483 MachineLocation Location) {
485 addComplexAddress(DV, Die, dwarf::DW_AT_location, Location);
487 addBlockByrefAddress(DV, Die, dwarf::DW_AT_location, Location);
489 addAddress(Die, dwarf::DW_AT_location, Location,
559 const MachineLocation &Location, bool Indirect) {
562 if (Location.isReg() && !Indirect)
563 addRegisterOp(*Loc, Location.getReg());
565 addRegisterOffset(*Loc, Location.getReg(), Location.getOffset());
566 if (Indirect && !Location
482 addVariableAddress(const DbgVariable &DV, DIE &Die, MachineLocation Location) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h321 uint64_t Location = Address & 0x7fffffff; local
322 if (Location & 0x04000000)
323 Location |= (uint64_t) ~0x7fffffff;
324 return Location + Place;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs150 public override void Location(int line, int pos) { method in class:Antlr.Runtime.Debug.Profiler
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DProfiler.cs159 public override void Location(int line, int pos) method in class:Antlr.Runtime.Debug.Profiler
/external/chromium_org/net/quic/
H A Dquic_client_session.cc40 enum Location { enum in namespace:net::__anon9448
50 void RecordUnexpectedOpenStreams(Location location) {
55 void RecordUnexpectedObservers(Location location) {
60 void RecordUnexpectedNotGoingAway(Location location) {
/external/chromium_org/v8/src/
H A Dscanner.h329 struct Location { struct in class:v8::internal::Scanner
330 Location(int b, int e) : beg_pos(b), end_pos(e) { } function in struct:v8::internal::Scanner::Location
331 Location() : beg_pos(0), end_pos(0) { } function in struct:v8::internal::Scanner::Location
337 static Location invalid() { return Location(-1, -1); }
356 Location location() const { return current_.location; }
363 Location peek_location() const { return next_.location; }
366 Location location = current_.location;
414 Location octal_position() const { return octal_pos_; }
415 void clear_octal_position() { octal_pos_ = Location
[all...]
/external/clang/include/clang/Analysis/
H A DProgramPoint.h213 static bool isKind(const ProgramPoint &Location) { argument
214 return Location.getKind() == BlockEntranceKind;
234 static bool isKind(const ProgramPoint &Location) { argument
235 return Location.getKind() == BlockExitKind;
256 static bool isKind(const ProgramPoint &Location) { argument
257 unsigned k = Location.getKind();
274 static bool isKind(const ProgramPoint &Location) { argument
275 return Location.getKind() == PreStmtKind;
297 static bool isKind(const ProgramPoint &Location) { argument
298 unsigned k = Location
313 isKind(const ProgramPoint &Location) argument
370 isKind(const ProgramPoint &Location) argument
397 isKind(const ProgramPoint &Location) argument
411 isKind(const ProgramPoint &Location) argument
427 isKind(const ProgramPoint &Location) argument
443 isKind(const ProgramPoint &Location) argument
467 isKind(const ProgramPoint &Location) argument
496 isKind(const ProgramPoint &Location) argument
519 isKind(const ProgramPoint &Location) argument
537 isKind(const ProgramPoint &Location) argument
554 isKind(const ProgramPoint &Location) argument
578 isKind(const ProgramPoint &Location) argument
601 isKind(const ProgramPoint &Location) argument
622 isKind(const ProgramPoint &Location) argument
641 isKind(const ProgramPoint &Location) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h78 PathDiagnosticLocation Location; member in class:clang::ento::BugReport
157 : BT(bt), DeclWithIssue(nullptr), Description(desc), Location(l),
/external/compiler-rt/lib/asan/
H A Dasan_report.cc53 const char *Location() { return Green(); } function in class:__asan::Decorator
242 str.append("%s", d.Location());
337 d.Location(), addr, pos_descr, d.EndLocation());
373 Printf("%s", d.Location());
439 str.append("%s", d.Location());
/external/chromium_org/ui/views/layout/
H A Dgrid_layout.cc109 int Location() { function in class:views::LayoutElement
812 int x = column_set->columns_[view_state->start_col]->Location() +
818 int y = rows_[view_state->start_row]->Location() + insets_.top();
940 pref->set_height(rows_[rows_.size() - 1]->Location() +
/external/clang/include/clang/Sema/
H A DInitialization.h114 unsigned Location; member in struct:clang::InitializedEntity::LN
126 unsigned Location; member in struct:clang::InitializedEntity::C
175 LocAndNRVO.Location = Loc.getRawEncoding();
194 Capture.Location = Loc.getRawEncoding();
394 return SourceLocation::getFromRawEncoding(LocAndNRVO.Location);
401 return SourceLocation::getFromRawEncoding(LocAndNRVO.Location);
427 return SourceLocation::getFromRawEncoding(Capture.Location);
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1598 SourceLocation Location) {
1602 Builder.CreateBitCast(CGM.EmitAnnotationUnit(Location), Int8PtrTy),
1603 CGM.EmitAnnotationLineNo(Location)
1595 EmitAnnotationCall(llvm::Value *AnnotationFn, llvm::Value *AnnotatedVal, StringRef AnnotationStr, SourceLocation Location) argument
H A DCGExpr.cpp146 llvm::Value *Location,
153 MakeNaturalAlignAddrLValue(Location, E->getType()),
159 EmitAggExpr(E, AggValueSlot::forAddr(Location, Alignment, Quals,
168 LValue LV = MakeAddrLValue(Location, E->getType());
145 EmitAnyExprToMem(const Expr *E, llvm::Value *Location, Qualifiers Quals, bool IsInit) argument
/external/llvm/include/llvm/Support/
H A DCommandLine.h1062 DataType *Location; // Where to store the object... member in class:llvm::cl::opt_storage
1066 assert(Location && "cl::location(...) not specified for a command "
1071 opt_storage() : Location(nullptr) {}
1074 if (Location)
1076 Location = &L;
1084 *Location = V;
1089 DataType &getValue() { check_location(); return *Location; }
1090 const DataType &getValue() const { check_location(); return *Location; }
1290 StorageClass *Location; // Where to store the object... member in class:llvm::cl::list_storage
1293 list_storage() : Location(
1461 unsigned *Location; // Where to store the bits... member in class:llvm::cl::bits_storage
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h441 SExpr(COP_Future), Status(FS_pending), Result(nullptr), Location(nullptr)
451 F->Location = Member;
493 SExprRef *Location; member in class:clang::threadSafety::Future
556 if (Location)
557 Location->reset(R);
/external/clang/lib/AST/
H A DVTableBuilder.cpp2564 void ErrorUnsupported(StringRef Feature, SourceLocation Location) { argument
2568 Diags.Report(Context.getFullLoc(Location), DiagID) << Feature;
/external/clang/include/clang/AST/
H A DExpr.h1292 void setLocation(SourceLocation Location) { Loc = Location; } argument
1337 void setLocation(SourceLocation Location) { Loc = Location; } argument
4011 /// Location of the first index expression within the designated

Completed in 706 milliseconds

1234