HomeSort by relevance Sort by last modified time
    Searched refs:locations (Results 51 - 75 of 557) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/
VolumeAdapter.java 39 public VolumeAdapter(Context c, int layoutResourceId, VolumeInfo[] locations,
41 super(c, layoutResourceId, locations);
45 this.mVolumeList = locations;
  /prebuilts/checkstyle/gitlint/
utils.py 51 locations = os.environ.get("PATH").split(os.pathsep)
52 for location in locations:
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextActionTest.java 209 assertNull("Text locations should not be populated by default",
382 final RectF[] locations = Arrays.copyOf(parcelables, parcelables.length, RectF[].class); local
383 assertEquals(info.getText().length(), locations.length);
385 for (int i = 0; i < locations.length; i++) {
386 assertEquals(locations[0].top, locations[i].top);
387 assertEquals(locations[0].bottom, locations[i].bottom);
388 assertTrue(locations[i].right > locations[i].left)
    [all...]
  /art/compiler/optimizing/
intrinsics.cc 211 LocationSummary* locations = new (invoke->GetBlock()->GetGraph()->GetArena()) LocationSummary( local
214 locations->SetInAt(0, Location::RequiresRegister());
216 locations->AddTemp(first_argument_location);
217 locations->SetOut(return_location);
ssa_liveness_analysis.cc 54 LocationSummary* locations = current->GetLocations(); local
55 if (locations != nullptr && locations->Out().IsValid()) {
72 LocationSummary* locations = current->GetLocations(); local
73 if (locations != nullptr && locations->Out().IsValid()) {
399 LocationSummary* locations = user->GetLocations(); local
400 Location expected = locations->InAt(use.GetInputIndex());
437 LocationSummary* locations = GetDefinedBy()->GetLocations(); local
438 Location out = locations->Out()
    [all...]
code_generator.h 29 #include "locations.h"
92 // update the stack mask in `locations` for registers holding object
94 virtual void SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations);
96 virtual void RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations);
214 virtual void AddLocationAsTemp(Location location, LocationSummary* locations) = 0;
288 uint32_t GetSlowPathSpills(LocationSummary* locations, bool core_registers) const {
289 DCHECK(locations->OnlyCallsOnSlowPath() ||
290 (locations->Intrinsified() && locations->CallsOnMainAndSlowPath() &&
291 !locations->HasCustomSlowPathCallingConvention()))
    [all...]
ssa_liveness_analysis.h 302 LocationSummary* locations = instruction->GetLocations(); local
310 if (locations->IsFixedInput(input_index) || locations->OutputUsesSameAs(input_index)) {
317 } else if (!locations->InAt(input_index).IsValid()) {
897 LocationSummary* locations = defined_by_->GetLocations(); local
898 if (locations->OutputCanOverlapWithInputs()) {
946 LocationSummary* locations = defined_by_->GetLocations(); local
    [all...]
code_generator_mips.h 290 void GenerateIntCompare(IfCondition cond, LocationSummary* locations);
298 LocationSummary* locations,
300 void GenerateLongCompare(IfCondition cond, LocationSummary* locations);
302 LocationSummary* locations,
307 LocationSummary* locations);
327 LocationSummary* locations,
350 int32_t VecAddress(LocationSummary* locations,
442 // point, which is passed the values in locations `ref`, `obj`, and
524 void AddLocationAsTemp(Location location, LocationSummary* locations) OVERRIDE;
  /external/iproute2/tc/
emp_ematch.y 9 %locations
  /external/libnl/lib/route/
pktloc_syntax.y 9 %locations
pktloc_grammar.l 17 %option bison-locations
  /external/llvm/tools/llvm-readobj/
StackMapPrinter.h 40 << "\n " << R.getNumLocations() << " locations:";
43 for (const auto &Loc : R.locations()) {
  /frameworks/base/core/tests/coretests/src/android/app/
ApplicationPackageManagerTest.java 189 int[] locations = {PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY, local
192 for (int location : locations) {
215 int[] locations = {PackageInfo.INSTALL_LOCATION_AUTO, local
218 for (int location : locations) {
  /hardware/interfaces/gnss/1.0/default/
GnssBatching.h 41 static void locationCb(int32_t locationsCount, FlpLocation** locations);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
JavaQuickAssistant.java 43 IProblemLocation[] locations) throws CoreException {
  /external/v8/tools/turbolizer/
code-view.js 28 var locations = [];
30 locations.push({pos_start: span.start, pos_end: span.end});
33 broker.select(selectionHandler, locations, selected);
56 brokeredSelect: function(locations, selected) {
58 for (let location of locations) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_L_C_.py 406 # Remove any of the glyph locations and names that are flagged as skipped.
415 dataPairs = list(filter(isValidLocation, zip(self.names, self.locations)))
416 self.names, self.locations = list(map(list, zip(*dataPairs)))
438 self.locations = list(zip(modifiedOffsets, modifiedOffsets[1:]))
446 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]):
453 # Run a simple algorithm to add skip glyphs to the data locations at
456 locQueue = deque(self.locations)
466 # Now that all the locations are collected, pack them appropriately into
470 # Image data offset must be less than or equal to the minimum of locations
    [all...]
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
filter.go 45 // Remove sample with no locations (by not adding it to s).
93 // focused/ignored locations. The map only contains locations that are
95 // one focused location but no ignored locations.
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
filter.go 45 // Remove sample with no locations (by not adding it to s).
93 // focused/ignored locations. The map only contains locations that are
95 // one focused location but no ignored locations.
  /external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
ELF_x64-64_PIC_relocations.s 5 # Test that we can load this code twice at memory locations more than 2GB apart
  /external/v8/src/inspector/
v8-debugger-script.h 80 std::vector<v8::debug::Location>* locations) = 0;
v8-debugger-script.cc 175 std::vector<v8::debug::Location>* locations) override {
178 return script->GetPossibleBreakpoints(start, end, locations);
231 std::vector<v8::debug::Location>* locations) override {
251 translatedEnd, locations);
252 for (v8::debug::Location& loc : *locations) {