HomeSort by relevance Sort by last modified time
    Searched refs:Location (Results 276 - 300 of 1043) sorted by null

<<11121314151617181920>>

  /art/compiler/optimizing/
code_generator_x86.cc 31 x86::X86ManagedRegister Location::AsX86() const {
42 static Location X86CpuLocation(Register reg) {
43 return Location::RegisterLocation(X86ManagedRegister::FromCpuRegister(reg));
95 Location index_location,
96 Location length_location)
111 const Location index_location_;
112 const Location length_location_;
276 Location CodeGeneratorX86::GetStackLocation(HLoadLocal* load) const {
279 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
284 return Location::StackSlot(GetStackSlot(load->GetLocal()))
975 Location location = parameter_visitor_.GetNextLocation(instruction->GetType()); local
    [all...]
code_generator_x86_64.h 47 Location GetNextLocation(Primitive::Type type);
131 virtual void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
155 virtual Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
183 void Move(Location destination, Location source);
parallel_move_resolver.cc 80 Location destination = moves_.Get(index)->MarkPending();
132 Location source = move->GetSource();
133 Location destination = move->GetDestination();
150 bool ParallelMoveResolver::IsScratchLocation(Location loc) {
174 IsScratchLocation(Location::RegisterLocation(ManagedRegister(reg)))) {
register_allocator.cc 88 void RegisterAllocator::BlockRegister(Location location,
92 int reg = location.reg().RegId();
135 Location output = locations->Out();
146 Location input = locations->InAt(i);
648 static Location ConvertToLocation(LiveInterval* interval) {
650 return Location::RegisterLocation(ManagedRegister(interval->GetRegister()));
658 return Location::DoubleStackSlot(interval->GetParent()->GetSpillSlot());
660 return Location::StackSlot(interval->GetParent()->GetSpillSlot());
676 Location source
917 Location location = locations->Out(); local
    [all...]
code_generator_arm.cc 31 arm::ArmManagedRegister Location::AsArm() const {
42 static Location ArmCoreLocation(Register reg) {
43 return Location::RegisterLocation(ArmManagedRegister::FromCoreRegister(reg));
96 Location index_location,
97 Location length_location)
114 const Location index_location_;
115 const Location length_location_;
301 Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
304 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
309 return Location::StackSlot(GetStackSlot(load->GetLocal()))
1012 Location location = parameter_visitor_.GetNextLocation(instruction->GetType()); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
FlpHardwareProvider.java 17 package com.android.server.location;
19 import android.hardware.location.GeofenceHardware;
20 import android.hardware.location.GeofenceHardwareImpl;
21 import android.hardware.location.GeofenceHardwareRequestParcelable;
22 import android.hardware.location.IFusedLocationHardware;
23 import android.hardware.location.IFusedLocationHardwareSink;
24 import android.location.IFusedGeofenceHardware;
25 import android.location.FusedBatchOptions;
26 import android.location.Location;
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 78 containsNewLine( Reader::Location begin,
79 Reader::Location end )
181 // Set error location to start of doc, ideally should be first token found in doc
363 Reader::match( Location pattern,
380 Location commentBegin = current_ - 1;
406 Reader::addComment( Location begin,
407 Location end,
585 for ( Location inspect = token.start_; inspect != token.end_; ++inspect )
596 Location current = token.start_;
690 Location current = token.start_ + 1; // skip '"
    [all...]
  /external/jsoncpp/src/lib_json/
json_reader.cpp 68 containsNewLine( Reader::Location begin,
69 Reader::Location end )
171 // Set error location to start of doc, ideally should be first token found in doc
353 Reader::match( Location pattern,
370 Location commentBegin = current_ - 1;
396 Reader::addComment( Location begin,
397 Location end,
575 for ( Location inspect = token.start_; inspect != token.end_; ++inspect )
586 Location current = token.start_;
680 Location current = token.start_ + 1; // skip '"
    [all...]
  /external/llvm/lib/CodeGen/
StackMaps.cpp 91 Locs.push_back(Location(StackMaps::Location::Direct, Size, Reg, Imm));
99 Locs.push_back(Location(StackMaps::Location::Indirect, Size, Reg, Imm));
106 Locs.push_back(Location(Location::Constant, sizeof(int64_t), 0, Imm));
128 Location(Location::Register, RC->getSize(), MOI->getReg(), 0));
220 if (I->LocType == Location::Constant &&
222 I->LocType = Location::ConstantIndex
    [all...]
  /frameworks/base/location/java/android/location/
Location.java 17 package android.location;
31 * A data class representing a geographic location.
33 * <p>A location can consist of a latitude, longitude, timestamp,
41 public class Location implements Parcelable {
64 * Bundle key for a version of the location that has been fed through
65 * LocationFudger. Allows location providers to flag locations as being
73 * Bundle key for a version of the location containing no GPS data.
74 * Allows location providers to flag locations as being safe to
109 * Construct a new Location with a named provider.
111 * <p>By default time, latitude and longitude are 0, and the location
    [all...]
  /external/chromium_org/base/
tracked_objects.h 19 #include "base/location.h"
50 // created. That data is used to create a transient Location instance
59 // BirthOnThread) references to the static data provided in a Location instance,
61 // Hence there is at most one Births instance for each Location on each thread.
63 // instances born at the same location. Statistics currently include only the
76 // can find out a Task's location of birth, and thread of birth, without using
86 // instance at a Location. In many cases, instances are only created on one
91 // collection of DeathData instances. For each birth place Location that is
107 // STL maps, which are indexed by Location. As noted earlier, we can compare
141 // For a given birth location, information about births is spread across dat
203 const Location location() const { return location_; } function in class:tracked_objects::BirthOnThread
227 LocationSnapshot location; member in struct:tracked_objects::BirthOnThreadSnapshot
    [all...]
task_runner_util.h 57 const tracked_objects::Location& from_here,
  /packages/apps/Camera2/src/com/android/camera/
MediaSaverImpl.java 22 import android.location.Location;
58 public void addImage(final byte[] data, String title, long date, Location loc, int width,
66 (loc == null) ? null : new Location(loc),
77 public void addImage(final byte[] data, String title, long date, Location loc, int orientation,
84 public void addImage(final byte[] data, String title, Location loc, int width, int height,
124 private final Location loc;
131 public ImageSaveTask(byte[] data, String title, long date, Location loc,
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTestCase.java 33 import org.apache.harmony.jpda.tests.framework.jdwp.Location;
140 protected Location getMethodEntryLocation(long classID, String methodName) {
160 Location location = new Location(); local
161 location.tag = JDWPConstants.TypeTag.CLASS;
162 location.classID = classID;
163 location.methodID = methodID;
164 location.index = methodStartCodeIndex;
165 return location;
190 Location location = new Location(); local
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifest_test.cc 113 extensions::Manifest::Location location,
121 return Extension::Create(path.DirName(), location, *value, flags, error);
126 extensions::Manifest::Location location,
130 LoadExtension(manifest, &error, location, flags);
138 extensions::Manifest::Location location,
140 return LoadAndExpectSuccess(Manifest(manifest_name), location, flags);
153 extensions::Manifest::Location location
    [all...]
  /external/chromium_org/base/timer/
timer.cc 70 Timer::Timer(const tracked_objects::Location& posted_from,
96 void Timer::Start(const tracked_objects::Location& posted_from,
136 void Timer::SetTaskInfo(const tracked_objects::Location& posted_from,
  /external/chromium_org/chrome/browser/extensions/
external_policy_loader_unittest.cc 73 Manifest::Location unused,
84 Manifest::Location location,
87 // Extension has the correct location.
88 EXPECT_EQ(Manifest::EXTERNAL_POLICY_DOWNLOAD, location);
90 // Provider returns the correct location when asked.
91 Manifest::Location location1;
  /external/chromium_org/chrome/common/extensions/
extension_test_util.cc 23 Manifest::Location location,
41 path.DirName(), location, *dict, extra_flags, id, error);
47 Manifest::Location location,
51 dir, test_file, location, extra_flags, std::string(), error);
56 Manifest::Location location,
60 LoadManifestUnchecked(dir, test_file, location, extra_flags, &error);
  /external/chromium_org/remoting/host/
daemon_process.h 28 class Location;
104 void CrashNetworkProcess(const tracked_objects::Location& location);
137 const tracked_objects::Location& location) = 0;
  /external/chromium_org/tools/gn/
ninja_writer.cc 9 #include "tools/gn/location.h"
59 Err(Location(), "No targets.",
78 Err(Location(),
94 Err(Location(),
  /external/chromium_org/v8/src/
scanner.h 325 struct Location {
326 Location(int b, int e) : beg_pos(b), end_pos(e) { }
327 Location() : beg_pos(0), end_pos(0) { }
333 static Location invalid() { return Location(-1, -1); }
350 // Returns the location information for the current token
352 Location location() const { return current_.location; } function in class:v8::internal::Scanner
359 Location peek_location() const { return next_.location;
362 Location location = current_.location; local
457 Location location; member in struct:v8::internal::Scanner::TokenDesc
    [all...]
  /external/mockito/src/org/mockito/exceptions/
Reporter.java 22 import org.mockito.invocation.Location;
60 public void unfinishedStubbing(Location location) {
63 location,
106 public void unfinishedVerificationException(Location location) {
109 location,
289 public void argumentsAreDifferent(String wanted, String actual, Location actualLocation) {
351 public void tooManyActualInvocations(int wantedCount, int actualCount, DescribedInvocation wanted, Location firstUndesired) {
357 Location firstUndesired)
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 17 package com.android.location.provider;
24 import android.location.ILocationManager;
25 import android.location.Location;
26 import android.location.LocationManager;
34 import com.android.internal.location.ILocationProvider;
35 import com.android.internal.location.ProviderProperties;
36 import com.android.internal.location.ProviderRequest;
40 * Base class for location providers implemented as unbundled services.
42 * <p>The network location provider must export a service with actio
    [all...]
  /external/valgrind/main/memcheck/tests/
varinfo5.stderr.exp 17 Location 0x........ is 0 bytes inside global var "global_u1"
25 Location 0x........ is 0 bytes inside global var "global_i1"
33 Location 0x........ is 0 bytes inside global_u2[3],
41 Location 0x........ is 0 bytes inside global_i2[7],
49 Location 0x........ is 0 bytes inside local var "local"
58 Location 0x........ is 0 bytes inside var[7],
67 Location 0x........ is 2 bytes inside var.bar,
76 Location 0x........ is 1 byte inside local var "var"
85 Location 0x........ is 0 bytes inside static_global_def[1],
94 Location 0x........ is 0 bytes inside nonstatic_global_def[2]
    [all...]
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 43 public JavaFileObject getJavaFileForOutput(Location location, String name,

Completed in 1029 milliseconds

<<11121314151617181920>>