Searched defs:Map (Results 126 - 150 of 234) sorted by relevance

12345678910

/external/guava/guava/src/com/google/common/collect/
H A DStandardTable.java38 import java.util.Map;
39 import java.util.Map.Entry;
55 * the data is stored in a {@code Map<R, Map<C, V>>}. A method call like {@code
68 @GwtTransient final Map<R, Map<C, V>> backingMap;
69 @GwtTransient final Supplier<? extends Map<C, V>> factory;
71 StandardTable(Map<R, Map<C, V>> backingMap, argument
72 Supplier<? extends Map<
[all...]
H A DTables.java33 import java.util.Map;
158 public Map<C, V> column(R columnKey) {
168 public Map<R, Map<C, V>> columnMap() {
214 public Map<R, V> row(C rowKey) {
224 public Map<C, Map<R, V>> rowMap() {
257 * generate a table based on arbitrary {@link Map} classes.
272 * the data is stored in a {@code Map<R, Map<
297 newCustomTable( Map<R, Map<C, V>> backingMap, Supplier<? extends Map<C, V>> factory) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java34 import java.util.Map;
828 Map<Integer, AtomicInteger> replica,
854 Map<Integer, AtomicInteger> replica, int value) {
827 insertIntoReplica( Map<Integer, AtomicInteger> replica, int newValue) argument
853 removeFromReplica( Map<Integer, AtomicInteger> replica, int value) argument
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
H A DMultibinder.java58 import java.util.Map;
373 Map<T, Binding<T>> result = new LinkedHashMap<T, Binding<T>>(mapCapacity(bindings.size()));
539 Map<T, Binding<T>> existingBindings,
538 newDuplicateValuesException( Map<T, Binding<T>> existingBindings, Binding<T> binding, final T newValue, Binding<T> duplicateBinding) argument
/external/libmojo/mojo/android/system/
H A Dcore_impl.cc344 static ScopedJavaLocalRef<jobject> Map(JNIEnv* env, function in namespace:mojo::android
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp39 MMIAddrLabelMap *Map; member in class:llvm::final
41 MMIAddrLabelMapCallbackPtr() : Map(nullptr) {}
42 MMIAddrLabelMapCallbackPtr(Value *V) : CallbackVH(V), Map(nullptr) {}
48 void setMap(MMIAddrLabelMap *map) { Map = map; }
179 Map->UpdateForDeletedBlock(cast<BasicBlock>(getValPtr()));
183 Map->UpdateForRAUWBlock(cast<BasicBlock>(getValPtr()), cast<BasicBlock>(V2));
418 /// setCallSiteLandingPad - Map the landing pad's EH symbol to the call site
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp63 StringMap<int> Map; member in class:__anon13671::NameToIdxMap
67 return !Map.insert(std::make_pair(Name, (int)i)).second;
71 StringMap<int>::const_iterator I = Map.find(Name);
72 if (I == Map.end())
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldSet.java40 import java.util.Map;
155 Map.Entry<FieldDescriptorType, Object> entry = fields.getArrayEntryAt(i);
159 for (Map.Entry<FieldDescriptorType, Object> entry :
180 public Map<FieldDescriptorType, Object> getAllFields() {
187 for (Map.Entry<FieldDescriptorType, Object> entry :
199 private void cloneFieldEntry(Map<FieldDescriptorType, Object> map,
200 Map.Entry<FieldDescriptorType, Object> entry) {
215 public Iterator<Map.Entry<FieldDescriptorType, Object>> iterator() {
442 for (final Map.Entry<FieldDescriptorType, Object> entry :
453 final Map
452 isInitialized( final Map.Entry<FieldDescriptorType, Object> entry) argument
521 mergeFromField( final Map.Entry<FieldDescriptorType, Object> entry) argument
613 writeMessageSetTo( final Map.Entry<FieldDescriptorType, Object> entry, final CodedOutputStream output) argument
778 getMessageSetSerializedSize( final Map.Entry<FieldDescriptorType, Object> entry) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc609 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map; typedef in struct:google::protobuf::DynamicMessageFactory::PrototypeMap
610 Map map_;
624 for (PrototypeMap::Map::iterator iter = prototypes_->map_.begin();
/external/r8/src/main/java/com/android/tools/r8/shaking/
H A DRootSetBuilder.java33 import java.util.Map;
44 private final Map<DexItem, ProguardKeepRule> noShrinking = new IdentityHashMap<>();
52 private final Map<DexItem, Map<DexItem, ProguardKeepRule>> dependentNoShrinking =
54 private final Map<DexItem, ProguardMemberRule> noSideEffects = new IdentityHashMap<>();
55 private final Map<DexItem, ProguardMemberRule> assumedValues = new IdentityHashMap<>();
490 public final Map<DexItem, ProguardKeepRule> noShrinking;
496 public final Map<DexItem, ProguardMemberRule> noSideEffects;
497 public final Map<DexItem, ProguardMemberRule> assumedValues;
498 private final Map<DexIte
529 legalDependentNoShrinkingItems( Map<DexItem, Map<DexItem, ProguardKeepRule>> dependentNoShrinking) argument
[all...]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVUtil.h109 static const SPIRVMap Map(false);
110 return Map;
117 static const SPIRVMap Map(true);
118 return Map;
122 for (auto &I:getMap().Map)
129 for (auto &I:getMap().Map) {
136 const SPIRVMap& Map = getMap(); local
137 typename MapTy::const_iterator Loc = Map.Map.find(Key);
138 if(Loc == Map
146 const SPIRVMap& Map = getRMap(); local
169 MapTy Map; member in struct:SPIRV::SPIRVMap
432 getOrInsert( MapTy &Map, typename MapTy::key_type Key, FuncTy Func) argument
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceELFSection.h201 // Map from symbol name to its symbol information. This assumes symbols are
207 void writeSymbolMap(ELFStreamer &Str, const SymMap &Map);
331 const SymMap &Map) {
334 for (auto &KeyValue : Map) {
344 for (auto &KeyValue : Map) {
330 writeSymbolMap(ELFStreamer &Str, const SymMap &Map) argument
H A DIceVariableSplitting.cpp48 /// need to clear the entire Map[] vector for each block.
74 : Func(Func), NumVars(Func->getNumVariables()), Map(NumVars) {}
86 Map[VarNum].LastUseInst = &Instr;
87 Map[VarNum].LastUseNode = Node;
95 Variable *MappedVar = Map[VarNum].MappedVar;
98 if (Map[VarNum].MappedVarNode != Node)
109 Map[VarNum].MappedVar = NewVar;
110 Map[VarNum].MappedVarNode = Node;
120 Variable *Link = Map[VarNum].MappedVar;
121 if (Link == nullptr || Map[VarNu
150 CfgVector<VarInfo> Map; member in class:Ice::__anon20725::VariableMap
[all...]
/external/syslinux/efi32/include/efi/
H A Defipciio.h206 EFI_PCI_IO_PROTOCOL_MAP Map; member in struct:_EFI_PCI_IO
/external/syslinux/efi64/include/efi/
H A Defipciio.h206 EFI_PCI_IO_PROTOCOL_MAP Map; member in struct:_EFI_PCI_IO
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defipciio.h206 EFI_PCI_IO_PROTOCOL_MAP Map; member in struct:_EFI_PCI_IO
/external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
H A DPciRootBridgeIo.h199 Completes the Map() operation and releases any corresponding resources.
202 @param Mapping The mapping value returned from Map().
205 @retval EFI_INVALID_PARAMETER Mapping is not a value that was returned by Map().
376 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_MAP Map; member in struct:_EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL
/external/desugar/java/com/google/devtools/common/options/
H A DOptionsParser.java36 import java.util.Map;
97 private static final Map<ImmutableList<Class<? extends OptionsBase>>, OptionsData> optionsData =
542 Map<String, String> categoryDescriptions, HelpVerbosity helpVerbosity) {
585 public String describeOptionsHtml(Map<String, String> categoryDescriptions, Escaper escaper) {
815 public static <O extends OptionsBase> Map<Field, Object> toMap(Class<O> optionsClass, O options) {
818 Map<Field, Object> map = new LinkedHashMap<>();
840 public static <O extends OptionsBase> O fromMap(Class<O> optionsClass, Map<Field, Object> map) {
902 "Map keys do not match fields of options class; extra map keys: {"
541 describeOptions( Map<String, String> categoryDescriptions, HelpVerbosity helpVerbosity) argument
/external/eigen/Eigen/src/Core/
H A DPlainObjectBase.h121 template<typename PlainObjectType, int MapOptions, typename StrideType> friend class Eigen::Map;
122 friend class Eigen::Map<Derived, Unaligned>;
123 typedef Eigen::Map<Derived, Unaligned> MapType;
124 friend class Eigen::Map<const Derived, Unaligned>;
125 typedef const Eigen::Map<const Derived, Unaligned> ConstMapType;
128 friend class Eigen::Map<Derived, AlignedMax>;
129 friend class Eigen::Map<const Derived, AlignedMax>;
131 typedef Eigen::Map<Derived, AlignedMax> AlignedMapType;
132 typedef const Eigen::Map<const Derived, AlignedMax> ConstAlignedMapType;
133 template<typename StrideType> struct StridedMapType { typedef Eigen::Map<Derive
583 static inline ConstMapType Map(const Scalar* data) function in class:Eigen::PlainObjectBase
585 static inline MapType Map(Scalar* data) function in class:Eigen::PlainObjectBase
587 static inline ConstMapType Map(const Scalar* data, Index size) function in class:Eigen::PlainObjectBase
589 static inline MapType Map(Scalar* data, Index size) function in class:Eigen::PlainObjectBase
591 static inline ConstMapType Map(const Scalar* data, Index rows, Index cols) function in class:Eigen::PlainObjectBase
593 static inline MapType Map(Scalar* data, Index rows, Index cols) function in class:Eigen::PlainObjectBase
610 static inline typename StridedConstMapType<Stride<Outer, Inner> >::type Map(const Scalar* data, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
613 static inline typename StridedMapType<Stride<Outer, Inner> >::type Map(Scalar* data, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
616 static inline typename StridedConstMapType<Stride<Outer, Inner> >::type Map(const Scalar* data, Index size, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
619 static inline typename StridedMapType<Stride<Outer, Inner> >::type Map(Scalar* data, Index size, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
622 static inline typename StridedConstMapType<Stride<Outer, Inner> >::type Map(const Scalar* data, Index rows, Index cols, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
625 static inline typename StridedMapType<Stride<Outer, Inner> >::type Map(Scalar* data, Index rows, Index cols, const Stride<Outer, Inner>& stride) function in class:Eigen::PlainObjectBase
[all...]
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h308 * Specialization of Map<Quaternion<Scalar>>
313 struct traits<Map<Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> >
315 typedef Map<Matrix<_Scalar,4,1>, _Options> Coefficients;
321 struct traits<Map<const Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Aligned)==Aligned ? AutoAlign : DontAlign> >
323 typedef Map<const Matrix<_Scalar,4,1>, _Options> Coefficients;
335 * \tparam _Options see class Map
337 * This is a specialization of class Map for Quaternion. This class allows to view
340 * \sa class Map, class Quaternion, class QuaternionBase
343 class Map<const Quaternion<_Scalar>, _Options > class in namespace:Eigen
344 : public QuaternionBase<Map<cons
360 EIGEN_DEVICE_FUNC explicit EIGEN_STRONG_INLINE Map(const Scalar* coeffs) : m_coeffs(coeffs) {} function in class:Eigen::Map
380 class Map<Quaternion<_Scalar>, _Options > class in namespace:Eigen
397 EIGEN_DEVICE_FUNC explicit EIGEN_STRONG_INLINE Map(Scalar* coeffs) : m_coeffs(coeffs) {} function in class:Eigen::Map
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DTypeToken.java46 import java.util.Map;
202 * {@code Map<K, V>} for any {@code K} and {@code V} type: <pre> {@code
203 * static <K, V> TypeToken<Map<K, V>> mapOf(
205 * return new TypeToken<Map<K, V>>() {}
226 * {@code Map<K, V>} for any {@code K} and {@code V} type: <pre> {@code
227 * static <K, V> TypeToken<Map<K, V>> mapOf(
229 * return new TypeToken<Map<K, V>>() {}
428 * {@code <? extends Map<String, Integer>[]>} etc.
479 * {@code <? extends Map<String, Integer>[]>} etc.), or else {@code null} is returned.
1125 Map<
1158 sortKeysByValue( final Map<K, V> map, final Comparator<? super V> valueComparator) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDateIntervalInfo.java19 import java.util.Map;
20 import java.util.Map.Entry;
314 private Map<String, Map<String, PatternInfo>> fIntervalPatterns = null;
343 fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>();
547 Map<String, PatternInfo> patternsOfOneSkeleton =
564 fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>(DEFAULT_HASH_SIZE);
766 Map<String, PatternInfo> patternsOfOneSkeleton = fIntervalPatterns.get(skeleton);
803 Map<String, PatternInfo> patternsOfOneSkeleton = fIntervalPatterns.get(skeleton);
847 Map<Strin
954 cloneIntervalPatterns( Map<String, Map<String, PatternInfo>> patterns) argument
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DMeasureUnitTest.java27 import java.util.Map;
1898 static Map<MeasureUnit, Pair<MeasureUnit, MeasureUnit>> getUnitsToPerParts() {
1900 Map<MeasureUnit, Pair<String, String>> unitsToPerStrings =
1902 Map<String, MeasureUnit> namesToUnits = new HashMap<String, MeasureUnit>();
1903 for (Map.Entry<String, List<MeasureUnit>> entry : allUnits.entrySet()) {
1919 Map<MeasureUnit, Pair<MeasureUnit, MeasureUnit>> unitsToPerUnits =
1921 for (Map.Entry<MeasureUnit, Pair<String, String>> entry : unitsToPerStrings.entrySet()) {
1935 Map<String, MeasureUnit> seen = new HashMap<String, MeasureUnit>();
1938 for (Map.Entry<String, List<MeasureUnit>> entry : allUnits.entrySet()) {
1970 Map<Strin
1969 checkForDup( Map<String, MeasureUnit> seen, String name, MeasureUnit unit) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateIntervalInfo.java18 import java.util.Map;
19 import java.util.Map.Entry;
322 private Map<String, Map<String, PatternInfo>> fIntervalPatterns = null;
350 fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>();
556 Map<String, PatternInfo> patternsOfOneSkeleton =
573 fIntervalPatterns = new HashMap<String, Map<String, PatternInfo>>(DEFAULT_HASH_SIZE);
776 Map<String, PatternInfo> patternsOfOneSkeleton = fIntervalPatterns.get(skeleton);
813 Map<String, PatternInfo> patternsOfOneSkeleton = fIntervalPatterns.get(skeleton);
857 Map<Strin
969 cloneIntervalPatterns( Map<String, Map<String, PatternInfo>> patterns) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DMeasureUnitTest.java26 import java.util.Map;
1897 static Map<MeasureUnit, Pair<MeasureUnit, MeasureUnit>> getUnitsToPerParts() {
1899 Map<MeasureUnit, Pair<String, String>> unitsToPerStrings =
1901 Map<String, MeasureUnit> namesToUnits = new HashMap<String, MeasureUnit>();
1902 for (Map.Entry<String, List<MeasureUnit>> entry : allUnits.entrySet()) {
1918 Map<MeasureUnit, Pair<MeasureUnit, MeasureUnit>> unitsToPerUnits =
1920 for (Map.Entry<MeasureUnit, Pair<String, String>> entry : unitsToPerStrings.entrySet()) {
1934 Map<String, MeasureUnit> seen = new HashMap<String, MeasureUnit>();
1937 for (Map.Entry<String, List<MeasureUnit>> entry : allUnits.entrySet()) {
1969 Map<Strin
1968 checkForDup( Map<String, MeasureUnit> seen, String name, MeasureUnit unit) argument
[all...]

Completed in 2315 milliseconds

12345678910