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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue21687.go 38 func maps() (int, int) { func
54 maps,
  /prebuilts/go/linux-x86/test/fixedbugs/
issue21687.go 38 func maps() (int, int) { func
54 maps,
  /external/robolectric/v1/src/main/java/com/google/android/maps/
ShadowItemizedOverlayBridge.java 1 package com.google.android.maps;
  /packages/apps/Dialer/java/com/android/incallui/maps/
Maps.java 17 package com.android.incallui.maps;
24 public interface Maps {
26 * Used to check if maps is available. This will return false if Dialer was compiled without
MapsComponent.java 17 package com.android.incallui.maps;
23 /** Subcomponent that can be used to access the maps implementation. */
27 public abstract Maps getMaps();
  /packages/apps/Dialer/java/com/android/incallui/maps/impl/
MapsModule.java 17 package com.android.incallui.maps.impl;
19 import com.android.incallui.maps.Maps;
24 /** This module provides an instance of maps. */
30 public abstract Maps bindMaps(MapsImpl maps);
MapsImpl.java 17 package com.android.incallui.maps.impl;
22 import com.android.incallui.maps.Maps;
26 final class MapsImpl implements Maps {
StaticMapFragment.java 17 package com.android.incallui.maps.impl;
29 import com.google.android.gms.maps.CameraUpdateFactory;
30 import com.google.android.gms.maps.GoogleMap;
31 import com.google.android.gms.maps.OnMapReadyCallback;
32 import com.google.android.gms.maps.SupportMapFragment;
33 import com.google.android.gms.maps.model.LatLng;
34 import com.google.android.gms.maps.model.MarkerOptions;
  /system/extras/libpagemap/
pagemap_test.cpp 23 TEST(pagemap, maps) {
30 pm_map_t** maps; local
32 ASSERT_EQ(0, pm_process_maps(process, &maps, &num_maps));
37 std::string name(maps[i]->name);
45 free(maps);
  /external/robolectric/v1/lib/main/
maps_v16.jar 
  /packages/apps/Dialer/java/com/android/incallui/maps/stub/
StubMapsModule.java 17 package com.android.incallui.maps.stub;
23 import com.android.incallui.maps.Maps;
29 /** Stub for the maps module for build variants that don't support Google Play Services. */
35 public abstract Maps bindMaps(StubMaps maps);
37 static final class StubMaps implements Maps {
  /system/core/libbacktrace/
UnwindStackMap.cpp 27 #include <unwindstack/Maps.h>
56 // Iterate through the maps and fill in the backtrace_map_t structure.
101 unwindstack::Maps* maps = stack_maps(); local
104 unwindstack::MapInfo* map_info = maps->Find(pc);
138 unwindstack::Maps* maps = new unwindstack::Maps; local
139 stack_maps_.reset(maps);
141 maps->Add(map.start, map.end, map.offset, map.flags, map.name, map.load_bias)
    [all...]
GetPss.cpp 47 FILE* maps = fopen("/proc/self/maps", "r"); local
48 if (maps == nullptr) {
54 fclose(maps);
60 fclose(maps);
68 while (fgets(line, sizeof(line), maps)) {
88 fclose(maps);
backtrace_benchmarks.cpp 45 // gets allocated, then this routine will add extra maps and the next
46 // call will fail to get the same number of maps as before.
48 open((std::string("/proc/") + std::to_string(pid) + "/maps").c_str(), O_RDONLY | O_CLOEXEC);
74 // Also, so that we can create a set number of maps.
81 // Create uniquely named maps.
82 std::vector<void*> maps; local
99 maps.push_back(memory);
107 fprintf(stderr, "Maps set incorrectly: %zu found, %zu expected at least.\n", num_maps,
110 android::base::ReadFileToString("/proc/self/maps", &str);
131 fprintf(stderr, "Timed out waiting for the number of maps available: %zu\n", num_maps)
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
merge.cc 52 const Section_merge_maps &maps = this->section_merge_maps_; local
53 for (Section_merge_maps::const_iterator i = maps.begin(), e = maps.end();
78 Section_merge_maps &maps = this->section_merge_maps_; local
79 maps.push_back(std::make_pair(shndx, new_map));
  /prebuilts/misc/common/robolectric/3.4.2/lib/
maps-3.4.2.jar 
  /external/libunwind/tests/
crasher.c 21 FILE *maps = fopen("/proc/self/maps", "r"); local
24 if (!maps || !out)
27 while (fgets(buf, sizeof(buf), maps))
41 fclose(maps);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
resource.hpp 79 std::list<mapping> maps; member in class:clover::resource
  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 104 TiXmlNodeVector* maps = GetNodesWithName(*it, "map"); local
105 for (TiXmlNodeVector::iterator jt = maps->begin();
106 jt != maps->end(); ++jt) {
116 delete maps;
  /external/mesa3d/src/gallium/state_trackers/nine/
buffer9.h 51 struct NineTransfer *maps; member in struct:NineBuffer9
  /external/testng/src/test/java/test/thread/
SequentialTest.java 69 Map<Long, Long>[] maps = new Map[] { local
75 for(Map m : maps) {
80 maps[0].keySet().iterator().next(),
81 maps[1].keySet().iterator().next(),
82 maps[2].keySet().iterator().next(),
  /external/v8/tools/
trace-maps-processor.py 21 maps = {} variable
59 maps[pointer] = Map(pointer, origin)
150 PlainPrint(m, "", maps[m].origin)
155 DotPrint(m, maps[m].origin)
  /frameworks/base/core/jni/
android_ddm_DdmHandleNativeHeap.cpp 69 * Retrieve the native heap information and the info from /proc/self/maps,
77 String8 maps; local
78 ReadFile("/proc/self/maps", maps);
79 header.mapSize = maps.size();
99 maps.size(), reinterpret_cast<const jbyte*>(maps.string()));
100 env->SetByteArrayRegion(array, sizeof(header) + maps.size(),
  /frameworks/layoutlib/bridge/src/com/google/android/maps/
MapView.java 17 package com.google.android.maps;
  /libcore/ojluni/src/main/java/sun/security/x509/
PolicyMappingsExtension.java 67 private List<CertificatePolicyMap> maps; field in class:PolicyMappingsExtension
71 if (maps == null || maps.isEmpty()) {
78 for (CertificatePolicyMap map : maps) {
89 * @param maps the List of CertificatePolicyMap.
93 this.maps = map;
105 maps = Collections.<CertificatePolicyMap>emptyList();
127 maps = new ArrayList<CertificatePolicyMap>();
131 maps.add(map);
139 if (maps == null) return ""
    [all...]

Completed in 1042 milliseconds

1 2 3 4 5 6 7 8 91011>>