Searched defs:Map (Results 26 - 50 of 172) sorted by relevance

1234567

/external/chromium_org/ppapi/thunk/
H A Dppb_image_data_thunk.cc62 void* Map(PP_Resource image_data) { function in namespace:ppapi::thunk::__anon10284
63 VLOG(4) << "PPB_ImageData::Map()";
67 return enter.object()->Map();
84 &Map,
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dmemory_map.py11 class Map(object): class in inherits:object
44 """An entry (address range + stats) in a memory |Map|."""
/external/chromium_org/ui/surface/
H A Dtransport_dib_posix.cc40 TransportDIB* TransportDIB::Map(Handle handle) { function in class:TransportDIB
42 if (!dib->Map())
67 if ((!memory() && !Map()) || !VerifyCanvasSize(w, h))
74 bool TransportDIB::Map() { function in class:TransportDIB
78 if (!shared_memory_.Map(0))
87 (!shared_memory_.Map(st.st_size))) {
H A Dtransport_dib_win.cc44 TransportDIB* TransportDIB::Map(Handle handle) { function in class:TransportDIB
46 if (!dib->Map())
85 bool TransportDIB::Map() { function in class:TransportDIB
91 if (!shared_memory_.Map(0 /* map whole shared memory segment */)) {
/external/clang/lib/Serialization/
H A DModule.cpp63 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) {
64 if (Map.begin() == Map.end())
69 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
62 dumpLocalRemap(StringRef Name, const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestMapEntrySetGenerator.java20 import java.util.Map;
31 implements TestSetGenerator<Map.Entry<K, V>> {
42 public SampleElements<Map.Entry<K, V>> samples() {
47 public Set<Map.Entry<K, V>> create(Object... elements) {
48 Map.Entry<K, V>[] entries = createArray(elements.length);
53 public abstract Set<Map.Entry<K, V>> createFromEntries( argument
54 Map.Entry<K, V>[] entries);
58 public Map.Entry<K, V>[] createArray(int length) {
59 return new Map.Entry[length];
64 public List<Map
[all...]
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h31 // Map - Used to handle the correspondence of entry to ID.
32 std::map<T, unsigned> Map; member in class:llvm::UniqueVector
43 unsigned &Val = Map[Entry];
60 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
63 if (MI != Map.end()) return MI->second;
99 Map.clear();
/external/lzma/CPP/Windows/
H A DFileMapping.h39 LPVOID Map(DWORD desiredAccess, UInt64 fileOffset, SIZE_T numberOfBytesToMap) function in class:NWindows::CFileMapping
45 LPVOID Map(DWORD desiredAccess, UInt64 fileOffset, SIZE_T numberOfBytesToMap, LPVOID baseAddress) function in class:NWindows::CFileMapping
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DLoadUrlTest.java26 import java.util.Map;
89 final Map<String, String> extraHeaders) throws Throwable {
110 private static Map<String, String> createHeadersMap(String[] namesAndValues) {
111 Map<String, String> result = new HashMap<String, String>();
85 loadUrlWithExtraHeadersSync( final AwContents awContents, CallbackHelper onPageFinishedHelper, final String url, final Map<String, String> extraHeaders) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_service.h163 typedef std::map<GURL, int64> Map; typedef in class:sync_file_system::LocalFileSyncService::OriginChangeMap
182 Map change_count_map_;
183 Map::iterator next_;
/external/chromium_org/content/common/gpu/client/
H A Dgpu_memory_buffer_impl_io_surface.cc146 void* GpuMemoryBufferImplIOSurface::Map() { function in class:content::GpuMemoryBufferImplIOSurface
H A Dgpu_memory_buffer_impl_ozone_native_buffer.cc133 void* GpuMemoryBufferImplOzoneNativeBuffer::Map() { function in class:content::GpuMemoryBufferImplOzoneNativeBuffer
H A Dgpu_memory_buffer_impl_shared_memory.cc118 void* GpuMemoryBufferImplSharedMemory::Map() { function in class:content::GpuMemoryBufferImplSharedMemory
120 if (!shared_memory_->Map(size_.GetArea() * BytesPerPixel(internalformat_)))
H A Dgpu_memory_buffer_impl_surface_texture.cc96 void* GpuMemoryBufferImplSurfaceTexture::Map() { function in class:content::GpuMemoryBufferImplSurfaceTexture
97 TRACE_EVENT0("gpu", "GpuMemoryBufferImplSurfaceTexture::Map");
/external/chromium_org/content/renderer/pepper/
H A Dppb_buffer_impl.cc67 void* PPB_Buffer_Impl::Map() { function in class:content::PPB_Buffer_Impl
71 shared_memory_->Map(size_);
93 data_ = api->Map();
/external/chromium_org/mojo/embedder/
H A Dsimple_platform_shared_buffer.cc51 scoped_ptr<PlatformSharedBufferMapping> SimplePlatformSharedBuffer::Map( function in class:mojo::embedder::SimplePlatformSharedBuffer
/external/chromium_org/ppapi/proxy/
H A Dfile_mapping_resource.cc31 int32_t FileMappingResource::Map(PP_Instance /* instance */, function in class:ppapi::proxy::FileMappingResource
142 // If the Map operation was successful, we need to Unmap to avoid leaks.
/external/chromium_org/testing/gtest/samples/
H A Dsample3-inl.h153 Queue* Map(F function) const { function in class:Queue
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DShaderCache.h43 typename Map::iterator it = mMap.find(key);
72 for (typename Map::iterator it = mMap.begin(); it != mMap.end(); ++it)
95 typedef std::unordered_map<std::string, ShaderObject*> Map; typedef in class:rx::ShaderCache
96 Map mMap;
/external/chromium_org/v8/src/
H A Dcollection.js12 var $Map = global.Map;
147 // Harmony Map
151 throw MakeTypeError('constructor_not_function', ['Map']);
185 ['Map.prototype.get', this]);
194 ['Map.prototype.set', this]);
210 ['Map.prototype.has', this]);
219 ['Map.prototype.delete', this]);
228 ['Map.prototype.size', this]);
237 ['Map
[all...]
/external/clang/include/clang/Lex/
H A DDirectoryLookup.h45 /// Map - This is the HeaderMap if this is a headermap lookup.
47 const HeaderMap *Map; member in union:clang::DirectoryLookup::__anon17593
82 u.Map = map;
108 return isHeaderMap() ? u.Map : nullptr;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DFunctionSummary.h57 MapTy Map; member in class:clang::ento::FunctionSummariesTy
61 MapTy::iterator I = Map.find(D);
62 if (I != Map.end())
66 I = Map.insert(KVPair(D, FunctionSummary())).first;
67 assert(I != Map.end());
88 MapTy::const_iterator I = Map.find(D);
89 if (I != Map.end() && I->second.InlineChecked)
106 MapTy::const_iterator I = Map.find(D);
107 if (I != Map.end())
113 MapTy::const_iterator I = Map
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h73 T *Map(IndexT idx) { function in class:__tsan::DenseSlabAlloc
83 *(IndexT*)Map(idx) = freelist_;
120 freelist_ = *(IndexT*)Map(idx);
128 *(IndexT*)Map(idx) = freelist_;
/external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
H A DPrecompiledTemplateLoader.java30 import java.util.Map;
43 private final Map<Object, BaseCompiledTemplate> templateMap;
47 Map<Object, String> templateToClassNameMap, FunctionExecutor globalFunctionExecutor,
54 private Map<Object, BaseCompiledTemplate> makeTemplateMap( argument
55 Map<Object, String> templateToClassNameMap, FunctionExecutor globalFunctionExecutor) {
56 Map<Object, BaseCompiledTemplate> templateMap = new HashMap<Object, BaseCompiledTemplate>();
58 for (Map.Entry<Object, String> entry : templateToClassNameMap.entrySet()) {
/external/openfst/src/include/fst/
H A Dmap.h19 // Compatability file for old-style Map() functions and MapFst class
32 void Map(MutableFst<A> *fst, C* mapper) { function in namespace:fst
37 void Map(MutableFst<A> *fst, C mapper) { function in namespace:fst
42 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { function in namespace:fst
47 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) { function in namespace:fst

Completed in 954 milliseconds

1234567