Searched defs:Map (Results 51 - 75 of 172) sorted by relevance

1234567

/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
/external/chromium_org/build/android/pylib/
H A Dforwarder.py66 def Map(port_pairs, device, tool=None): member in class:Forwarder
128 device_port: A previously forwarded port (through Map()).
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_change.h83 typedef std::map<base::FilePath, FileChange::ChangeList> Map; typedef in class:drive::FileChange
100 const Map& map() const { return map_; }
113 Map map_;
/external/chromium_org/ppapi/proxy/
H A Dppb_buffer_proxy.cc51 void* Buffer::Map() { function in class:ppapi::proxy::Buffer
53 shm_.Map(size_);
/external/chromium_org/ppapi/shared_impl/
H A Dppb_var_shared.cc98 void* Map(PP_Var array) { function in namespace:ppapi::__anon10174
103 return buffer->Map();
114 &CreateArrayBufferVar, &ByteLength, &Map, &Unmap};
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_system.cpp41 void* FileDescriptor::Map(void* address, function in class:crazy::FileDescriptor
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dgeneric_decoder.cc105 int32_t VCMDecodedFrameCallback::Map(uint32_t timestamp, VCMFrameInformation* frameInfo) function in class:webrtc::VCMDecodedFrameCallback
150 _callback->Map(frame.TimeStamp(), &_frameInfos[_nextFrameInfoIdx]);
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp247 PersistentSValsTy& Map = *((PersistentSValsTy*) PersistentSVals); local
250 FoldNodeTy* P = Map.FindNodeOrInsertPos(ID, InsertPos);
255 Map.InsertNode(P, InsertPos);
272 PersistentSValPairsTy& Map = *((PersistentSValPairsTy*) PersistentSValPairs); local
275 FoldNodeTy* P = Map.FindNodeOrInsertPos(ID, InsertPos);
280 Map.InsertNode(P, InsertPos);
/external/eigen/Eigen/src/Core/
H A DMap.h16 /** \class Map
24 * \tparam StrideType optionally specifies strides. By default, Map assumes the memory layout
56 * \b Tip: to change the array of data mapped by a Map object, you can use the C++
62 * This class is the return type of PlainObjectBase::Map() but can also be used directly.
64 * \sa PlainObjectBase::Map(), \ref TopicStorageOrders
69 struct traits<Map<PlainObjectType, MapOptions, StrideType> >
104 template<typename PlainObjectType, int MapOptions, typename StrideType> class Map class in namespace:Eigen
105 : public MapBase<Map<PlainObjectType, MapOptions, StrideType> >
109 typedef MapBase<Map> Base;
110 EIGEN_DENSE_PUBLIC_INTERFACE(Map)
139 inline Map(PointerArgType dataPtr, const StrideType& a_stride = StrideType()) function in class:Eigen::Map
151 inline Map(PointerArgType dataPtr, Index a_size, const StrideType& a_stride = StrideType()) function in class:Eigen::Map
164 inline Map(PointerArgType dataPtr, Index nbRows, Index nbCols, const StrideType& a_stride = StrideType()) function in class:Eigen::Map
[all...]
/external/giflib/
H A Dgifalloc.c178 register GifColorType *Map = ColorUnion->Colors; local
186 Map[j].Red = Map[j].Green = Map[j].Blue = 0;
190 ColorUnion->Colors = (GifColorType *)realloc(Map,
/external/guava/guava/src/com/google/common/collect/
H A DStandardRowSortedTable.java25 import java.util.Map;
39 * {@link Map} specified by the {@link Table} interface.
57 StandardRowSortedTable(SortedMap<R, Map<C, V>> backingMap, argument
58 Supplier<? extends Map<C, V>> factory) {
62 private SortedMap<R, Map<C, V>> sortedBackingMap() {
63 return (SortedMap<R, Map<C, V>>) backingMap;
124 * <p>This method returns a {@link SortedMap}, instead of the {@code Map}
127 @Override public SortedMap<R, Map<C, V>> rowMap() {
132 private class RowSortedMap extends RowMap implements SortedMap<R, Map<C, V>> {
149 public SortedMap<R, Map<
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMapTestSuiteBuilder.java43 import java.util.Map;
44 import java.util.Map.Entry;
49 * a Map implementation.
56 TestMapGenerator<K, V>, Map<K, V>, Map.Entry<K, V>> {
83 ? extends OneSizeTestContainerGenerator<Map<K, V>, Map.Entry<K, V>>>
180 implements TestSetGenerator<Map.Entry<K, V>> {
181 private final OneSizeTestContainerGenerator<Map<K, V>, Map
184 MapEntrySetGenerator( OneSizeTestContainerGenerator< Map<K, V>, Map.Entry<K, V>> mapGenerator) argument
281 MapValueCollectionGenerator( OneSizeTestContainerGenerator< Map<K, V>, Map.Entry<K, V>> mapGenerator) argument
[all...]
H A DTestsForMapsInJavaUtil.java34 import java.util.Map;
35 import java.util.Map.Entry;
40 * Generates a test suite covering the {@link Map} implementations in the
88 @Override protected Map<String, String> create(
104 @Override protected Map<String, String> create(
122 @Override protected Map<String, String> create(
148 @Override protected Map<String, String> create(
167 @Override protected Map<String, String> create(
187 @Override protected Map<AnEnum, String> create(
207 @Override protected Map<Strin
229 populate( Map<T, String> map, Entry<T, String>[] entries) argument
[all...]
/external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.h128 typedef std::multimap<lldb_private::FileSpec, shared_ptr> Map; typedef in class:ObjectContainerBSDArchive::Archive
130 static Map &
/external/llvm/include/llvm/ADT/
H A DMapVector.h1 //===- llvm/ADT/MapVector.h - Map w/ deterministic value order --*- C++ -*-===//
34 MapType Map; member in class:llvm::MapVector
71 Map.clear();
77 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
87 typename MapType::const_iterator Pos = Map.find(Key);
88 return Pos == Map.end()? ValueT() : Vector[Pos->second].second;
93 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
104 typename MapType::const_iterator Pos = Map.find(Key);
105 return Pos == Map.end()? 0 : 1;
109 typename MapType::const_iterator Pos = Map
[all...]
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCTargetDesc.cpp80 static unsigned Map[SystemZ::NUM_TARGET_REGS]; local
84 Map[GR32Regs[I]] = I;
85 Map[GRH32Regs[I]] = I;
86 Map[GR64Regs[I]] = I;
87 Map[GR128Regs[I]] = I;
88 Map[FP32Regs[I]] = I;
89 Map[FP64Regs[I]] = I;
90 Map[FP128Regs[I]] = I;
94 return Map[Reg];
/external/llvm/unittests/IR/
H A DValueMapTest.cpp273 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) { argument
274 (*Map)->erase(Old);
276 static void onDelete(ExtraData Map, KeyT Old) { argument
277 (*Map)->erase(Old);
284 // Now the ModifyingConfig can modify the Map inside a callback.
/external/llvm/unittests/Support/
H A DCommandLineTest.cpp79 StringMap<cl::Option*> Map; local
80 cl::getRegisteredOptions(Map);
82 ASSERT_TRUE(Map.count("test-option") == 1) <<
85 cl::Option *Retrieved = Map["test-option"];
/external/openfst/src/include/fst/script/
H A Dmap.h56 void Map(MapArgs *args) { function in namespace:fst::script
114 %newobject Map; member in namespace:fst::script
116 FstClass *Map(const FstClass& f, MapType map_type,
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DTrie.java34 import java.util.Map;
53 public Trie(Map<String, Integer> elements) {
57 private Trie(List<Map.Entry<String, Integer>> elements, int depth) {
70 List<Map.Entry<String, Integer>> elements, int depth,
148 private static <T> List<Map.Entry<String, T>> sortedUniqEntries( argument
149 Map<String, T> m) {
150 return new ArrayList<Map.Entry<String, T>>(
/external/smack/src/com/kenai/jbosh/
H A DComposableBody.java21 import java.util.Map;
65 * Map of all attributes to their values.
67 private final Map<BodyQName, String> attrs;
88 private Map<BodyQName, String> map;
196 final Map<BodyQName, String> attrMap,
271 public Map<BodyQName, String> getAttributes() {
320 for (Map.Entry<BodyQName, String> entry : attrs.entrySet()) {
195 ComposableBody( final Map<BodyQName, String> attrMap, final String payloadXML) argument
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java39 import java.util.Map;
756 Map<String, Header> challenges = this.proxyAuthHandler.getChallenges(
967 Map<String, Header> challenges = this.targetAuthHandler.getChallenges(
995 Map<String, Header> challenges = this.proxyAuthHandler.getChallenges(
1053 final Map<String, Header> challenges,
1052 processChallenges( final Map<String, Header> challenges, final AuthState authState, final AuthenticationHandler authHandler, final HttpResponse response, final HttpContext context) argument
/external/chromium_org/base/memory/
H A Dshared_memory.h165 bool Map(size_t bytes) { function in class:base::SharedMemory
187 // Mapped via Map(). Returns NULL if it is not mapped.
/external/chromium_org/chrome/browser/ui/views/
H A Dselect_file_dialog_extension.cc69 scoped_refptr<SelectFileDialogExtension> > Map; typedef in class:__anon5332::PendingDialog
70 Map map_;
93 Map::const_iterator it = map_.find(id);

Completed in 336 milliseconds

1234567