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

1 2 3 4

  /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/chromium_org/tools/gn/
location.cc 5 #include "tools/gn/location.h"
11 Location::Location()
17 Location::Location(const InputFile* file,
27 bool Location::operator==(const Location& other) const {
33 bool Location::operator!=(const Location& other) const {
37 bool Location::operator<(const Location& other) const
    [all...]
location.h 13 class Location {
15 Location();
16 Location(const InputFile* file, int line_number, int char_offset, int byte);
23 bool operator==(const Location& other) const;
24 bool operator!=(const Location& other) const;
25 bool operator<(const Location& other) const;
28 // offset for this location. If this location is null, returns an empty
44 LocationRange(const Location& begin, const Location& end)
    [all...]
  /external/chromium_org/base/
location.cc 11 #include "base/location.h"
17 Location::Location(const char* function_name,
27 Location::Location()
34 std::string Location::ToString() const {
39 void Location::Write(bool display_filename, bool display_function_name,
51 void Location::WriteFunctionName(std::string* output) const {
76 const tracked_objects::Location& location)
    [all...]
location.h 15 // Location provides basic info where of an object was constructed, or was
17 class BASE_EXPORT Location {
22 Location(const char* function_name,
28 Location();
36 bool operator < (const Location& other) const {
68 // A "snapshotted" representation of the Location class that can safely be
73 explicit LocationSnapshot(const tracked_objects::Location& location);
83 // Define a macro to record the current source location.
87 ::tracked_objects::Location(function_name,
    [all...]
  /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/chromium_org/cc/test/
fake_scrollbar.cc 40 gfx::Point FakeScrollbar::Location() const { return location_; }
  /external/chromium_org/chrome/browser/mac/
mac_startup_profiler.h 28 enum Location {
38 // Record timestamp for the given location event.
39 void Profile(Location location);
47 // Returns the name of the histogram for the given location.
48 const std::string HistogramName(Location location);
50 // Records UMA metrics for a specific location.
51 void RecordHistogram(Location location, const base::TimeDelta& delta)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.h 38 struct Location
43 Location()
49 const Location &readLoc() const { return mReadLoc; }
57 Location mReadLoc;
  /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
  /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 );
  /external/chromium_org/cc/blink/
scrollbar_impl.cc 45 gfx::Point ScrollbarImpl::Location() const {
46 return scrollbar_->location();
  /external/chromium_org/third_party/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;
  /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;
  /art/compiler/optimizing/
locations.h 31 * A Location is an abstraction over the potential location
34 class Location : public ValueObject {
48 // Unallocated location represents a location that is not fixed and can be
49 // allocated by a register allocator. Each unallocated location has
50 // a policy that specifies what kind of location is suitable. Payload
55 Location() : value_(kInvalid) {
56 // Verify that non-tagged location kinds do not interfere with kConstantTag.
68 Location(const Location& other) : ValueObject(), value_(other.value_) {
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
form_field_error.h 44 enum Location {
56 FormFieldError(ErrorType error_type, Location location);
60 Location location() const { return location_; } function in class:autofill::wallet::FormFieldError
62 // Gets the appropriate field type for |location| and |error_type|.
65 // Gets a user facing error message appropriate for |location| and
79 // The location of the error as defined by the Wallet server.
80 Location location_;
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 41 SourceLocation Location;
211 /// \param Loc the location at which a complete type was required but not
  /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

Completed in 564 milliseconds

1 2 3 4