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

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/
location.cc 5 #include "base/location.h"
18 Location::Location() = default;
19 Location::Location(const Location& other) = default;
21 Location::Location(const char* file_name, const void* program_counter)
24 Location::Location(const char* function_name
    [all...]
location.h 19 // Location provides basic info where of an object was constructed, or was
21 class BASE_EXPORT Location {
23 Location();
24 Location(const Location& other);
29 Location(const char* file_name, const void* program_counter);
34 Location(const char* function_name,
40 // identify a location.
41 bool operator==(const Location& other) const {
45 // Returns true if there is source code location info. If this is false
    [all...]
task_runner.h 12 #include "base/location.h"
64 bool PostTask(const Location& from_here, OnceClosure task);
69 virtual bool PostDelayedTask(const Location& from_here,
132 bool PostTaskAndReply(const Location& from_here,
  /external/mockito/src/main/java/org/mockito/invocation/
DescribedInvocation.java 9 * Provides information about the invocation, specifically a human readable description and the location.
23 * @return the location of the invocation.
25 Location getLocation();
Location.java 8 * Describes the location of something in the source code.
10 public interface Location {
13 * @return the location
StubInfo.java 8 * The information about stubbing, for example the location of stubbing.
13 * @return the location where the invocation was stubbed.
15 Location stubbedAt();
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
Locatable.java 29 * A mirror that has a {@link Location}.
39 * Returns the {@link Location} of this mirror, if there
46 * @return the {@link Location} of this mirror, or null if
49 Location location(); method in interface:Locatable
  /art/compiler/optimizing/
register_allocation_resolver.h 32 class Location;
36 * Reconciles the locations assigned to live intervals with the location
54 // Update live registers of safepoint location summary.
69 Location source,
70 Location destination) const;
73 Location source,
74 Location destination) const;
75 void InsertMoveAfter(HInstruction* instruction, Location source, Location destination) const;
78 Location source
    [all...]
locations.cc 26 // Verify that Location is trivially copyable.
27 static_assert(std::is_trivially_copyable<Location>::value, "Location should be trivially copyable");
38 output_overlaps_(Location::kOutputOverlap),
58 Location Location::RegisterOrConstant(HInstruction* instruction) {
60 ? Location::ConstantLocation(instruction->AsConstant())
61 : Location::RequiresRegister();
64 Location Location::RegisterOrInt32Constant(HInstruction* instruction)
    [all...]
emit_swap_mips_test.cc 119 Location::RegisterLocation(4),
120 Location::RegisterLocation(5),
124 Location::RegisterLocation(5),
125 Location::RegisterLocation(4),
137 Location::RegisterPairLocation(4, 5),
138 Location::RegisterPairLocation(6, 7),
142 Location::RegisterPairLocation(6, 7),
143 Location::RegisterPairLocation(4, 5),
158 Location::FpuRegisterLocation(4),
159 Location::FpuRegisterLocation(2)
    [all...]
locations.h 31 class Location;
33 std::ostream& operator<<(std::ostream& os, const Location& location);
36 * A Location is an abstraction over the potential location
39 class Location : public ValueObject {
44 // input's location for the output's location.
48 // location for the output's location
    [all...]
parallel_move_test.cc 37 static void DumpLocationForTest(std::ostream& os, Location location) {
38 if (location.IsConstant()) {
40 } else if (location.IsPair()) {
41 DumpRegisterForTest(os, location.low());
43 DumpRegisterForTest(os, location.high());
44 } else if (location.IsRegister()) {
45 DumpRegisterForTest(os, location.reg());
46 } else if (location.IsStackSlot()) {
47 os << location.GetStackIndex() << "(sp)"
    [all...]
parallel_move_resolver.h 81 // Return true if the location can be scratched.
82 bool IsScratchLocation(Location loc);
147 // Allocate a scratch location to perform a move from input kind of location. A subclass should
148 // implement this to get the best fit location. If there is no suitable physical register, it can
150 virtual Location AllocateScratchLocationFor(Location::Kind kind) = 0;
152 // Called after a move which takes a scratch location as source. A subclass can defer the cleanup
154 virtual void FreeScratchLocation(Location loc) = 0;
159 // Return a scratch location from the moves which exactly matches the kind
    [all...]
  /external/libchrome/base/threading/
post_task_and_reply_impl.h 12 #include "base/location.h"
35 bool PostTaskAndReply(const Location& from_here,
40 virtual bool PostTask(const Location& from_here, OnceClosure task) = 0;
  /external/libchrome/base/message_loop/
watchable_io_message_pump_posix.h 8 #include "base/location.h"
28 explicit FdWatchControllerInterface(const Location& from_here);
45 const Location& created_from_location() const {
50 const Location created_from_location_;
watchable_io_message_pump_posix.cc 10 FdWatchControllerInterface(const Location& from_here)
  /external/mockito/src/main/java/org/mockito/internal/debugging/
Localized.java 8 import org.mockito.invocation.Location;
13 private final Location location; field in class:Localized
17 location = new LocationImpl();
24 public Location getLocation() {
25 return location;
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 19 // This API identifies memory regions with the Location class. The pointer
97 /// Location - A description of a memory location.
98 struct Location {
99 /// Ptr - The address of the start of the location.
101 /// Size - The maximum size of the location, in address-units, or
108 /// the location, or null if there is no known unique tag.
111 explicit Location(const Value *P = 0, uint64_t S = UnknownSize,
115 Location getWithNewPtr(const Value *NewPtr) const {
116 Location Copy(*this)
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
NonConcreteMethodImpl.java 44 private Location location = null; field in class:NonConcreteMethodImpl
57 public Location location() { method in class:NonConcreteMethodImpl
61 if (location == null) {
62 location = new LocationImpl(vm, this, -1);
64 return location;
67 public List<Location> allLineLocations(String stratumID,
69 return new ArrayList<Location>(0);
72 public List<Location> allLineLocations(SDE.Stratum stratum
    [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.
64 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
68 * Compares this with other Location object.
72 if (!(obj instanceof Location))
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/matchers/
LocalizedMatcher.java 9 import org.mockito.invocation.Location;
15 private final Location location; field in class:LocalizedMatcher
19 this.location = new LocationImpl();
22 public Location getLocation() {
23 return location;
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Input.h 39 struct Location
44 Location() : sIndex(0), cIndex(0) {}
46 const Location &readLoc() const { return mReadLoc; }
58 Location mReadLoc;
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
21 import android.location.Location;
22 import android.location.SettingInjectorService;
59 new Location("LocationProvider");
61 Location l = createTestLocation();
62 Location location = new Location(l); local
63 assertTestLocation(location);
76 Location location = new Location("LocationProvider"); local
82 Location location = new Location(""); local
217 Location location = new Location(""); local
266 Location location = new Location(""); local
279 Location location = new Location(""); local
288 Location location = new Location(""); local
297 Location location = new Location(""); local
307 Location location = new Location(""); local
320 Location location = new Location(""); local
341 Location location = createTestLocation(); local
350 Location location = new Location(""); local
363 Location location = new Location(""); local
376 Location location = new Location(""); local
387 Location location = new Location(""); local
400 Location location = new Location(""); local
413 Location location = new Location(""); local
426 Location location = new Location(""); local
440 Location location = new Location(""); local
473 Location location = createTestLocation(); local
479 Location location = createTestLocation(); local
    [all...]
  /external/python/httplib2/test/300/
with-location-header.asis 3 Location: http://bitworking.org/projects/httplib2/test/300/final-destination.txt
  /external/jsoncpp/include/json/
reader.h 34 typedef const Char* Location;
104 * \return Formatted error message with the list of errors with their location
116 * \return Formatted error message with the list of errors with their location
134 * \param value JSON Value location associated with the error
142 * \param value JSON Value location associated with the error
144 * \param extra Additional JSON Value location to contextualize the error
177 Location start_;
178 Location end_;
185 Location extra_;
193 bool match(Location pattern, int patternLength)
    [all...]

Completed in 2975 milliseconds

1 2 3 4 5 6 7 8 91011>>