HomeSort by relevance Sort by last modified time
    Searched defs:Location (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Location.java 31 * This class represents Location value in JDWP packet.
33 public class Location {
40 * Creates new Location value with empty data.
42 public Location() {
50 * Creates new Location value with specified data.
52 public Location(byte tag, long classID, long methodID, long index) {
60 * Converts Location to string format for printing.
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
67 * Compares this with other Location object.
70 if (!(obj instanceof 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 );
  /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/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfSignatureDictionary_autogen.cpp 95 SkString SkPdfSignatureDictionary::Location(SkPdfNativeDoc* doc) {
96 SkPdfNativeObject* ret = get("Location", "");
104 return get("Location", "") != NULL;
  /packages/apps/Camera2/src/com/android/camera/data/
Location.java 22 * Encapsulate latitude and longitude into a single location object.
24 * TODO: Add tests. Consider removing "ZERO" location and using UNKNOWN.
26 public final class Location {
27 public static final Location UNKNOWN = new Location(Double.NaN, Double.NaN);
28 public static final Location ZERO = new Location(0.0, 0.0);
33 private Location(double latitude, double longitude) {
59 return "Location: " + getLocationString();
71 Location location = (Location) o local
    [all...]
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 45 SourceLocation Location;
206 /// \param Loc the location at which a complete type was required but not
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 39 public class Location {
50 public Location parentLocation;
53 public Location() {
57 public Location(Location other) {
64 public Location(Token start, Token end) {
83 public Location(ParserRuleContext context) {
88 public Location(int startLine, int startOffset, int endLine, int endOffset) {
97 return "Location{" +
106 public void setParentLocation(Location parentLocation)
211 Location location = new Location(); local
    [all...]
  /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/include/clang/Frontend/
SerializedDiagnosticReader.h 45 /// \brief A location that is represented in the serialized diagnostics.
46 struct Location {
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset)
97 visitDiagnosticRecord(unsigned Severity, const Location &Location,
109 visitFixitRecord(const Location &Start, const Location &End, StringRef Text) {
113 virtual std::error_code visitSourceRangeRecord(const Location &Start,
114 const Location &End) {
  /external/clang/lib/Tooling/Core/
Replacement.cpp 61 SourceLocation Location = SM.translateFileLineCol(Entry, 1, 1);
62 ID = Location.isValid() ?
63 SM.getFileID(Location) :
71 // ReplaceText only fails if the source location is not a file location, in
  /external/jsoncpp/include/json/
reader.h 26 typedef const Char *Location;
75 * \return Formatted error message with the list of errors with their location in
84 * \return Formatted error message with the list of errors with their location in
113 Location start_;
114 Location end_;
122 Location extra_;
130 bool match( Location pattern,
145 Location &current,
146 Location end,
149 Location &current,
    [all...]
  /art/compiler/optimizing/
locations.h 30 class Location;
32 std::ostream& operator<<(std::ostream& os, const Location& location);
35 * A Location is an abstraction over the potential location
38 class Location : public ValueObject {
65 // Unallocated location represents a location that is not fixed and can be
66 // allocated by a register allocator. Each unallocated location has
67 // a policy that specifies what kind of location is suitable. Payloa
    [all...]

Completed in 1726 milliseconds

1 2 3 4 5 6 7