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

1 2 3 4 5 6 7 8 91011>>

  /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-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
connection.py 28 class Location(object):
50 location=Location.DEFAULT, policy=None,
54 pass Location.EU to create bucket in the EU. You can also pass
64 :type location: :class:`boto.gs.connection.Location`
65 :param location: The location of the new bucket.
82 if not location:
83 location = Location.DEFAUL
    [all...]
  /external/libchrome/base/
location.cc 11 #include "base/location.h"
17 Location::Location(const char* function_name,
27 Location::Location()
34 Location::Location(const Location& other)
41 std::string Location::ToString() const {
46 void Location::Write(bool display_filename, bool display_function_name
    [all...]
location.h 18 // Location provides basic info where of an object was constructed, or was
20 class BASE_EXPORT Location {
25 Location(const char* function_name,
31 Location();
34 Location(const Location& other);
38 // identify this location.
39 bool operator==(const Location& other) const {
53 size_t operator()(const Location& location) const
    [all...]
  /external/libweave/third_party/chromium/base/
location.cc 11 #include "base/location.h"
17 Location::Location(const char* function_name,
27 Location::Location()
34 Location::Location(const Location& other)
41 std::string Location::ToString() const {
46 void Location::Write(bool display_filename, bool display_function_name
    [all...]
location.h 17 // Location provides basic info where of an object was constructed, or was
19 class BASE_EXPORT Location {
24 Location(const char* function_name,
30 Location();
33 Location(const Location& other);
37 // identify this location.
38 bool operator==(const Location& other) const {
67 // A "snapshotted" representation of the Location class that can safely be
72 explicit LocationSnapshot(const tracked_objects::Location& location)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
response.go 96 // ErrNoLocation is returned by Response's Location method
97 // when no Location header is present.
98 var ErrNoLocation = errors.New("http: no Location header in response")
100 // Location returns the URL of the response's "Location" header,
103 // Location header is present.
104 func (r *Response) Location() (*url.URL, error) {
105 lv := r.Header.Get("Location")
  /prebuilts/go/linux-x86/src/net/http/
response.go 96 // ErrNoLocation is returned by Response's Location method
97 // when no Location header is present.
98 var ErrNoLocation = errors.New("http: no Location header in response")
100 // Location returns the URL of the response's "Location" header,
103 // Location header is present.
104 func (r *Response) Location() (*url.URL, error) {
105 lv := r.Header.Get("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/autotest/frontend/client/src/autotest/tko/
GraphingFrontend.java 76 link.append(Window.Location.getHost());
77 link.append(Window.Location.getPath());
84 link.append(Window.Location.getHost());
  /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);
  /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 );
  /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;
  /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 46 SourceLocation Location;
210 /// \param Loc the location at which a complete type was required but not
  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 16 // out over several basic blocks, discriminators add more precise location
127 /// instructions in block 'if.then' have the exact same debug location
133 /// location with the last instruction of block 'entry'.
135 /// This new lexical block will have the same location information as
140 /// at location !dbg !10 that execute on different basic blocks. This is
154 /// location as instruction I2 of successor B2, then it creates a new
156 /// file and line location as I2. This new lexical block will have a
173 typedef std::pair<StringRef, unsigned> Location;
175 typedef DenseMap<Location, BBScopeMap> LocationBBMap;
179 // Traverse all instructions in the function. If the source line location
    [all...]
  /frameworks/av/include/media/
AudioTimestamp.h 38 enum Location {
100 // pipeline with a valid timestamp. If the optional location parameter is non-null,
101 // it will be filled with the location where the time was obtained.
103 int64_t *position, int64_t *time, int timebase, Location *location = nullptr) const {
115 if (location != nullptr) {
116 *location = (Location)i;
124 status_t getBestTimestamp(AudioTimestamp *timestamp, Location *location = nullptr) const
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 40 public class Location {
51 public Location parentLocation;
54 public Location() {
58 public Location(Location other) {
65 public Location(Token start, Token end) {
84 public Location(ParserRuleContext context) {
89 public Location(int startLine, int startOffset, int endLine, int endOffset) {
98 return "Location{" +
107 public void setParentLocation(Location parentLocation)
206 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( \
  /prebuilts/go/darwin-x86/src/time/
zoneinfo.go 12 // A Location maps time instants to the zone in use at that time.
13 // Typically, the Location represents the collection of time offsets
15 type Location struct {
23 // zone for the time when the Location was created.
56 var UTC *Location = &utcLoc
59 // and ensure that it never returns a nil *Location,
61 var utcLoc = Location{name: "UTC"}
64 var Local *Location = &localLoc
68 var localLoc Location
71 func (l *Location) get() *Location
    [all...]
  /prebuilts/go/linux-x86/src/time/
zoneinfo.go 12 // A Location maps time instants to the zone in use at that time.
13 // Typically, the Location represents the collection of time offsets
15 type Location struct {
23 // zone for the time when the Location was created.
56 var UTC *Location = &utcLoc
59 // and ensure that it never returns a nil *Location,
61 var utcLoc = Location{name: "UTC"}
64 var Local *Location = &localLoc
68 var localLoc Location
71 func (l *Location) get() *Location
    [all...]

Completed in 957 milliseconds

1 2 3 4 5 6 7 8 91011>>