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

12345678910

/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpecRegistry.java38 import java.util.Map;
59 private final Map<String,CookieSpecFactory> registeredSpecs;
157 public synchronized void setItems(final Map<String, CookieSpecFactory> map) { argument
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DArbitraryMeasurementWorker.java28 import java.util.Map;
43 @WorkerOptions Map<String, String> workerOptions) {
69 Options(Map<String, String> options) {
40 ArbitraryMeasurementWorker( @enchmark Object benchmark, @BenchmarkMethod Method method, @WorkerOptions Map<String, String> workerOptions) argument
H A DMacrobenchmarkWorker.java34 import java.util.Map;
48 Ticker ticker, @WorkerOptions Map<String, String> workerOptions) {
47 MacrobenchmarkWorker(@enchmark Object benchmark, @BenchmarkMethod Method method, Ticker ticker, @WorkerOptions Map<String, String> workerOptions) argument
/external/clang/lib/Serialization/
H A DModule.cpp54 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) {
55 if (Map.begin() == Map.end())
60 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
53 dumpLocalRemap(StringRef Name, const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) argument
/external/google-breakpad/src/processor/
H A Dmap_serializers.h159 typedef std::map<AddrType, ContainedRangeMap<AddrType, EntryType>*> Map; typedef in class:google_breakpad::ContainedRangeMapSerializer
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestMapEntrySetGenerator.java22 import java.util.Map;
32 implements TestSetGenerator<Map.Entry<K, V>> {
43 public SampleElements<Map.Entry<K, V>> samples() {
48 public Set<Map.Entry<K, V>> create(Object... elements) {
49 Map.Entry<K, V>[] entries = createArray(elements.length);
54 public abstract Set<Map.Entry<K, V>> createFromEntries( argument
55 Map.Entry<K, V>[] entries);
59 public Map.Entry<K, V>[] createArray(int length) {
60 return new Map.Entry[length];
65 public List<Map
[all...]
/external/guava/guava-testlib/test/com/google/common/collect/testing/
H A DMapTestSuiteBuilderTests.java38 import java.util.Map;
60 @Override protected final Map<String, String> create( argument
61 Map.Entry<String, String>[] entries) {
63 for (Map.Entry<String, String> entry : entries) {
69 abstract Map<String, String> wrap(HashMap<String, String> map);
89 @Override Map<String, String> wrap(final HashMap<String, String> map) {
94 @Override public Set<Map.Entry<String, String>> entrySet() {
108 @Override Map<String, String> wrap(final HashMap<String, String> map) {
113 @Override public Set<Map.Entry<String, String>> entrySet() {
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
H A DJpaPersistService.java32 import java.util.Map;
46 private final Map<?,?> persistenceProperties;
50 @Nullable @Jpa Map<?,?> persistenceProperties) {
49 JpaPersistService(@pa String persistenceUnitName, @Nullable @Jpa Map<?,?> persistenceProperties) argument
/external/libmojo/mojo/public/cpp/bindings/
H A Dmap_traits_standard.h14 struct MapTraits<Map<K, V>> {
17 using Iterator = typename Map<K, V>::Iterator;
18 using ConstIterator = typename Map<K, V>::ConstIterator;
20 static bool IsNull(const Map<K, V>& input) { return input.is_null(); } argument
21 static void SetToNull(Map<K, V>* output) { *output = nullptr; }
23 static size_t GetSize(const Map<K, V>& input) { return input.size(); } argument
25 static ConstIterator GetBegin(const Map<K, V>& input) { argument
28 static Iterator GetBegin(Map<K, V>& input) { return input.begin(); }
39 static bool Insert(Map<K, V>& input, const K& key, V&& value) {
43 static bool Insert(Map<
[all...]
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h32 // Map - Used to handle the correspondence of entry to ID.
33 std::map<T, unsigned> Map; member in class:llvm::UniqueVector
44 unsigned &Val = Map[Entry];
61 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
64 if (MI != Map.end()) return MI->second;
100 Map.clear();
/external/llvm/lib/Fuzzer/
H A DFuzzerTracePC.cpp19 void PcCoverageMap::Reset() { memset(Map, 0, sizeof(Map)); }
25 Map[WordIdx] |= 1UL << BitIdx;
31 Res += __builtin_popcountl(Map[i] |= Other.Map[i]);
45 size_t PcMapMergeInto(PcCoverageMap *Map) { argument
48 return Map->MergeFrom(CurrentMap);
/external/lzma/CPP/Windows/
H A DFileMapping.h43 LPVOID Map(DWORD desiredAccess, UInt64 fileOffset, SIZE_T numberOfBytesToMap) function in class:NWindows::CFileMapping
49 LPVOID Map(DWORD desiredAccess, UInt64 fileOffset, SIZE_T numberOfBytesToMap, LPVOID baseAddress) function in class:NWindows::CFileMapping
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineLoopRanges.h34 typedef IntervalMap<SlotIndex, unsigned, 4> Map; typedef in class:llvm::MachineLoopRange
35 typedef Map::Allocator Allocator;
41 /// Map intervals to a bit mask.
43 Map Intervals;
68 const Map &getMap() { return Intervals; }
/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::__anon974
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.h74 T *Map(IndexT idx) { function in class:__tsan::DenseSlabAlloc
84 *(IndexT*)Map(idx) = freelist_;
121 freelist_ = *(IndexT*)Map(idx);
129 *(IndexT*)Map(idx) = freelist_;
/external/eigen/Eigen/src/Core/
H A DMap.h18 struct traits<Map<PlainObjectType, MapOptions, StrideType> >
38 /** \class Map
46 * \tparam StrideType optionally specifies strides. By default, Map assumes the memory layout
78 * \b Tip: to change the array of data mapped by a Map object, you can use the C++
84 * This class is the return type of PlainObjectBase::Map() but can also be used directly.
86 * \sa PlainObjectBase::Map(), \ref TopicStorageOrders
88 template<typename PlainObjectType, int MapOptions, typename StrideType> class Map class in namespace:Eigen
89 : public MapBase<Map<PlainObjectType, MapOptions, StrideType> >
93 typedef MapBase<Map> Base;
94 EIGEN_DENSE_PUBLIC_INTERFACE(Map)
122 explicit inline Map(PointerArgType dataPtr, const StrideType& stride = StrideType()) function in class:Eigen::Map
135 inline Map(PointerArgType dataPtr, Index size, const StrideType& stride = StrideType()) function in class:Eigen::Map
149 inline Map(PointerArgType dataPtr, Index rows, Index cols, const StrideType& stride = StrideType()) function in class:Eigen::Map
[all...]
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample3-inl.h153 Queue* Map(F function) const { function in class:Queue
/external/googletest/googletest/samples/
H A Dsample3-inl.h153 Queue* Map(F function) const { function in class:Queue
/external/guava/guava/src/com/google/common/collect/
H A DPlatform.java26 import java.util.Map;
57 static <E> Set<E> newSetFromMap(Map<E, Boolean> map) {
94 Predicate<? super Map.Entry<K, V>> predicate) {
93 mapsFilterSortedMap(SortedMap<K, V> map, Predicate<? super Map.Entry<K, V>> predicate) argument
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;
79 * <p>This method returns a {@link SortedMap}, instead of the {@code Map}
82 @Override public SortedMap<R, Map<C, V>> rowMap() {
83 return (SortedMap<R, Map<C, V>>) super.rowMap();
87 SortedMap<R, Map<
[all...]
/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/lib/CodeGen/
H A DLiveRangeCalc.h47 /// LiveOutMap - Map basic blocks to the value leaving the block.
56 /// Map each basic block where a live range is live out to the live-out value
73 LiveOutMap Map; member in class:llvm::LiveRangeCalc
134 /// Reset Map and Seen fields.
218 Map[MBB] = LiveOutPair(VNI, nullptr);
/external/llvm/lib/Transforms/ObjCARC/
H A DBlotMapVector.h18 /// Map keys to indices in Vector.
20 MapTy Map; member in class:llvm::BlotMapVector
36 assert(Vector.size() >= Map.size()); // May differ due to blotting.
37 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end(); I != E;
44 assert(!I->first || (Map.count(I->first) &&
45 Map[I->first] == size_t(I - Vector.begin())));
51 Map.insert(std::make_pair(Arg, size_t(0)));
63 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
74 typename MapTy::iterator It = Map
[all...]
/external/protobuf/gtest/samples/
H A Dsample3-inl.h154 Queue* Map(F function) const { function in class:Queue

Completed in 695 milliseconds

12345678910