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

1234567

/external/chromium_org/ppapi/c/
H A Dppb_image_data.h184 * Map() maps an image data into the module address space.
191 void* (*Map)(PP_Resource image_data); member in struct:PPB_ImageData_1_0
/external/chromium_org/ppapi/thunk/
H A Dppb_image_data_thunk.cc64 void* Map(PP_Resource image_data) { function in namespace:ppapi::thunk::__anon10332
65 VLOG(4) << "PPB_ImageData::Map()";
69 return enter.object()->Map();
86 &Map,
/external/chromium_org/ui/surface/
H A Dtransport_dib_posix.cc43 TransportDIB* TransportDIB::Map(Handle handle) { function in class:TransportDIB
45 if (!dib->Map())
70 if ((!memory() && !Map()) || !VerifyCanvasSize(w, h))
77 bool TransportDIB::Map() { function in class:TransportDIB
81 if (!shared_memory_.Map(0))
90 (!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 */)) {
H A Dtransport_dib_gtk.cc72 TransportDIB* TransportDIB::Map(Handle handle) { function in class:TransportDIB
74 if (!dib->Map())
97 if ((address_ == kInvalidAddress && !Map()) || !VerifyCanvasSize(w, h))
104 bool TransportDIB::Map() { function in class:TransportDIB
/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/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/v8/src/
H A Dcollection.js31 var $Map = global.Map;
90 return new $Map();
98 ['Map.prototype.get', this]);
110 ['Map.prototype.set', this]);
122 ['Map.prototype.has', this]);
134 ['Map.prototype.delete', this]);
214 // Set up the Set and Map constructor function.
216 %SetCode($Map, MapConstructor);
218 // Set up the constructor property on the Set and Map prototyp
[all...]
/external/chromium/testing/gtest/samples/
H A Dsample3-inl.h154 Queue* Map(F function) const { function in class:Queue
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DLoadUrlTest.java25 import java.util.Map;
88 final Map<String, String> extraHeaders) throws Throwable {
109 private static Map<String, String> createHeadersMap(String[] namesAndValues) {
110 Map<String, String> result = new HashMap<String, String>();
84 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.h156 typedef std::map<GURL, int64> Map; typedef in class:sync_file_system::LocalFileSyncService::OriginChangeMap
175 Map change_count_map_;
176 Map::iterator next_;
/external/chromium_org/content/renderer/pepper/
H A Dppb_buffer_impl.cc75 void* PPB_Buffer_Impl::Map() { function in class:content::PPB_Buffer_Impl
79 shared_memory_->Map(size_);
102 data_ = api->Map();
/external/chromium_org/ppapi/shared_impl/
H A Dppb_var_shared.cc88 void* Map(PP_Var array) { function in namespace:ppapi::__anon10230
93 return buffer->Map();
106 &Map,
/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/
H A DShaderCache.h39 typename Map::iterator it = mMap.find(key);
68 for (typename Map::iterator it = mMap.begin(); it != mMap.end(); ++it)
99 typedef HASH_MAP<std::string, ShaderObject*> Map; typedef in class:rx::ShaderCache
100 Map mMap;
/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::__anon15893
82 u.Map = map;
105 const HeaderMap *getHeaderMap() const { return isHeaderMap() ? u.Map : 0; }
/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/gtest/samples/
H A Dsample3-inl.h154 Queue* Map(F function) const { function in class:Queue
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
H A DMeshContext.java8 import java.util.Map;
21 private Map<Integer, List<Integer>> vertexReferenceMap;
23 private Map<Geometry, VertexBuffer> uvCoordinates = new HashMap<Geometry, VertexBuffer>();
68 public Map<Integer, List<Integer>> getVertexReferenceMap() {
79 Map<Integer, List<Integer>> vertexReferenceMap) {
78 setVertexReferenceMap( Map<Integer, List<Integer>> vertexReferenceMap) argument
/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/llvm/unittests/Support/
H A DCommandLineTest.cpp52 StringMap<cl::Option*> Map; local
53 cl::getRegisteredOptions(Map);
55 ASSERT_TRUE(Map.count("test-option") == 1) <<
58 cl::Option *Retrieved = Map["test-option"];
/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
/external/openfst/src/lib/
H A Dmapped-file.cc61 MappedFile* MappedFile::Map(istream* s, const FstReadOptions &opts, function in class:fst::MappedFile
/external/protobuf/gtest/samples/
H A Dsample3-inl.h154 Queue * Map(F function) const { function in class:Queue

Completed in 732 milliseconds

1234567