/external/mockito/src/org/mockito/invocation/ |
Location.java | 10 * Describes the location of something in the source code. 13 public interface Location { 16 * @return the location
|
/external/qemu/ |
qemu-error.h | 16 typedef struct Location { 21 struct Location *prev; 22 } Location; 24 Location *loc_push_restore(Location *loc); 25 Location *loc_push_none(Location *loc); 26 Location *loc_pop(Location *loc); 27 Location *loc_save(Location *loc) [all...] |
/external/webkit/Source/WebCore/page/ |
Location.h | 44 class Location : public RefCounted<Location> { 46 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); } 79 Location(Frame*);
|
Location.cpp | 30 #include "Location.h" 40 Location::Location(Frame* frame) 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::port() cons [all...] |
/external/chromium/base/ |
tracked.cc | 16 Location::Location(const char* function_name, const char* file_name, 23 Location::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("NoFunctionName", "NeedToSetBirthPlace", -1)) [all...] |
tracked.h | 9 // 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 { 44 Location(const char* function_name, const char* file_name, int line_number); 47 Location(); 55 bool operator < (const Location& other) const { 81 // Define a macro to record the current source location [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
TraceDebugEventListener.cs | 59 public override void Location(int line, int pos) { 60 Console.Out.WriteLine("location " + line + ":" + pos);
|
BlankDebugEventListener.cs | 69 public virtual void Location(int line, int pos) {
|
DebugEventHub.cs | 121 public virtual void Location(int line, int pos) { 124 listener.Location(line, pos);
|
DebugEventRepeater.cs | 77 public virtual void Location(int line, int pos) { 78 _listener.Location(line, pos);
|
IDebugEventListener.cs | 121 * The parser is going to look arbitrarily ahead; mark this location, 162 void Location(int line, int pos); 198 * location 7 1 203 * location 7 5 206 * location 7 7
|
DebugEventSocketProxy.cs | 216 public override void Location(int line, int pos) { 217 Transmit("location\t" + line + "\t" + pos);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
TraceDebugEventListener.cs | 66 public override void Location( int line, int pos ) 68 Console.Out.WriteLine( "location " + line + ":" + pos );
|
BlankDebugEventListener.cs | 80 public virtual void Location( int line, int pos )
|
DebugEventHub.cs | 140 public virtual void Location( int line, int pos ) 145 listener.Location( line, pos );
|
DebugEventRepeater.cs | 88 public virtual void Location( int line, int pos ) 90 _listener.Location( line, pos );
|
DebugEventSocketProxy.cs | 248 public override void Location( int line, int pos ) 250 Transmit( "location\t" + line + "\t" + pos );
|
/external/clang/test/SemaCXX/ |
arrow-operator.cpp | 31 class Node { public: Point Location(){ Point p; return p; } }; 36 Line_Segment(node1->Location()); // expected-error {{not a structure or union}}
|
/external/clang/tools/libclang/ |
CXLoadedDiagnostic.h | 34 /// \brief Return the location of the diagnostic. 67 static void decodeLocation(CXSourceLocation location, 73 struct Location { 79 Location() : line(0), column(0), offset(0) {} 82 Location DiagLoc;
|
/external/clang/include/clang/Sema/ |
ExternalSemaSource.h | 38 SourceLocation Location;
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
perf_custom.h | 71 void (*Location)(PERF_OBJHANDLE hObject, 164 ((PERF_OBJHANDLE)(hObject))->ci.Location( \
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/ |
IDebugEventListener.cs | 123 * The parser is going to look arbitrarily ahead; mark this location, 164 void Location( int line, int pos ); 200 * location 7 1 205 * location 7 5 208 * location 7 7
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
functional.rb | 14 module Location 33 end # module Location 57 include Location
|
/external/clang/lib/Tooling/ |
Refactoring.cpp | 57 SourceLocation Location = SM.translateFileLineCol(Entry, 1, 1); 58 ID = Location.isValid() ? 59 SM.getFileID(Location) : 67 // ReplaceText only fails if the source location is not a file location, in
|
/external/clang/unittests/Tooling/ |
RefactoringTest.cpp | 46 SourceLocation Location = Context.getLocation(ID, 1, 1); 47 Replacement Replace(createReplacement(Location, 4, "")); 54 SourceLocation Location = Context.getLocation(ID, 1, 1); 55 Replacement Replace(createReplacement(Location, 17, "")); 62 SourceLocation Location = Context.getLocation(ID, 1, 1); 63 Replacement Replace(createReplacement(Location, 0, "result")); 71 SourceLocation Location = Context.getLocation(ID, 2, 3); 72 Replacement Replace(createReplacement(Location, 12, "x")); 139 // location being in the range ]a, z[.
|