Searched defs:Location (Results 1 - 25 of 60) sorted by relevance

123

/external/qemu/
H A Dqemu-error.h16 typedef struct Location { struct
21 struct Location *prev;
22 } Location; typedef in typeref:struct:Location
24 Location *loc_push_restore(Location *loc);
25 Location *loc_push_none(Location *loc);
26 Location *loc_pop(Location *loc);
27 Location *loc_sav
[all...]
/external/webkit/Source/WebCore/page/
H A DLocation.h44 class Location : public RefCounted<Location> { class in namespace:WebCore
46 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); }
79 Location(Frame*);
H A DLocation.cpp30 #include "Location.h"
40 Location::Location(Frame* frame) function in class:WebCore::Location
45 void Location::disconnectFrame()
50 inline const KURL& Location::url() const
61 String Location::href() const
69 String Location::protocol() const
77 String Location::host() const
88 String Location::hostname() const
96 String Location
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_parameter.h73 GLint Location; /**< actual location assigned after linking */ member in struct:gl_program_parameter
/external/chromium/base/
H A Dtracked.cc16 Location::Location(const char* function_name, const char* file_name, function in class:tracked_objects::Location
23 Location::Location() function in class:tracked_objects::Location
29 void Location::Write(bool display_filename, bool display_function_name,
41 void Location::WriteFunctionName(std::string* output) const {
67 void Tracked::SetBirthPlace(const Location& from_here) {}
68 const Location Tracked::GetBirthPlace() const {
69 static Location kNone("NoFunctionName", "NeedToSetBirthPlace", -1);
82 SetBirthPlace(Location("NoFunctionNam
[all...]
H A Dtracked.h9 // to as its Location. The Location is a file and line number, most
12 // do additonal things), its Location may be redefined to that later location.
36 // Location provides basic info where of an object was constructed, or was
39 class BASE_API Location { class in namespace:tracked_objects
44 Location(const char* function_name, const char* file_name, int line_number);
47 Location();
55 bool operator < (const Location& other) const {
83 #define FROM_HERE tracked_objects::Location(__FUNCTION__, __FILE__, __LINE__)
97 void SetBirthPlace(const Location
[all...]
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.h73 struct Location { struct in class:clang::CXLoadedDiagnostic
79 Location() : line(0), column(0), offset(0) {} function in struct:clang::CXLoadedDiagnostic::Location
82 Location DiagLoc;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTraceDebugEventListener.cs66 public override void Location( int line, int pos ) method in class:Antlr.Runtime.Debug.TraceDebugEventListener
H A DBlankDebugEventListener.cs80 public virtual void Location( int line, int pos ) method in class:Antlr.Runtime.Debug.BlankDebugEventListener
H A DDebugEventHub.cs140 public virtual void Location( int line, int pos ) method in class:Antlr.Runtime.Debug.DebugEventHub
145 listener.Location( line, pos );
H A DDebugEventRepeater.cs88 public virtual void Location( int line, int pos ) method in class:Antlr.Runtime.Debug.DebugEventRepeater
90 _listener.Location( line, pos );
H A DDebugEventSocketProxy.cs248 public override void Location( int line, int pos ) method in class:Antlr.Runtime.Debug.DebugEventSocketProxy
/external/clang/test/SemaCXX/
H A Darrow-operator.cpp31 class Node { public: Point Location(){ Point p; return p; } }; function in class:rdar8875304::Node
36 Line_Segment(node1->Location()); // expected-error {{not a structure or union}}
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTraceDebugEventListener.cs59 public override void Location(int line, int pos) { method in class:Antlr.Runtime.Debug.TraceDebugEventListener
H A DBlankDebugEventListener.cs69 public virtual void Location(int line, int pos) { method in class:Antlr.Runtime.Debug.BlankDebugEventListener
H A DDebugEventHub.cs121 public virtual void Location(int line, int pos) { method in class:Antlr.Runtime.Debug.DebugEventHub
124 listener.Location(line, pos);
H A DDebugEventRepeater.cs77 public virtual void Location(int line, int pos) { method in class:Antlr.Runtime.Debug.DebugEventRepeater
78 _listener.Location(line, pos);
H A DIDebugEventListener.cs162 void Location(int line, int pos); method in interface:Antlr.Runtime.Debug.IDebugEventListener
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb14 module Location module in class:ANTLR3.Test
33 end # module Location
57 include Location
/external/clang/include/clang/Sema/
H A DExternalSemaSource.h37 SourceLocation Location; member in struct:clang::ExternalVTableUse
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs164 void Location( int line, int pos ); method in interface:Antlr.Runtime.Debug.IDebugEventListener
/external/clang/include/clang/Lex/
H A DMacroInfo.h31 /// Location - This is the place the macro is defined.
32 SourceLocation Location; member in class:clang::MacroInfo
132 SourceLocation getDefinitionLoc() const { return Location; }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h32 const ProgramPoint Location; member in class:clang::ento::CheckerContext
48 Location(loc),
232 const ProgramPoint &LocalLoc = (Tag ? Location.withTag(Tag) : Location);
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp267 SVal Location = State->getSVal(CNE, LCtx); local
268 if (isa<Loc>(Location))
269 State = State->bindLoc(cast<Loc>(Location), State->getSVal(Init, LCtx));
/external/clang/lib/Tooling/
H A DRefactoring.cpp57 SourceLocation Location = SM.translateFileLineCol(Entry, 1, 1); local
58 ID = Location.isValid() ?
59 SM.getFileID(Location) :

Completed in 510 milliseconds

123