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

123456

/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp3-0x.cpp51 struct Map { struct in namespace:bullet4_example2
52 Map(std::initializer_list<std::pair<std::string,int>>) {} function in struct:bullet4_example2::Map
55 Map ship = {{"Sophie",14}, {"Surprise",28}};
/external/eigen/Eigen/src/Core/
H A DTranspositions.h219 struct traits<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,_PacketAccess> >
222 typedef Map<const Matrix<Index,SizeAtCompileTime,1,0,MaxSizeAtCompileTime,1>, _PacketAccess> IndicesType;
227 class Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,PacketAccess> class in namespace:Eigen
228 : public TranspositionsBase<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,PacketAccess> >
230 typedef internal::traits<Map> Traits;
233 typedef TranspositionsBase<Map> Base;
237 inline Map(const Index* indicesPtr) function in class:Eigen::Map
241 inline Map(const Index* indicesPtr, Index size) function in class:Eigen::Map
247 Map& operator=(const TranspositionsBase<OtherDerived>& other)
256 Map
[all...]
H A DPermutationMatrix.h388 struct traits<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAccess> >
392 typedef Map<const Matrix<IndexType, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1>, _PacketAccess> IndicesType;
397 class Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAccess> class in namespace:Eigen
398 : public PermutationBase<Map<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType>,_PacketAccess> >
400 typedef PermutationBase<Map> Base;
401 typedef internal::traits<Map> Traits;
409 inline Map(const Index* indicesPtr) function in class:Eigen::Map
413 inline Map(const Index* indicesPtr, Index size) function in class:Eigen::Map
419 Map& operator=(const PermutationBase<Other>& other)
424 Map
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h111 static CompressedStorage Map(Index* indices, Scalar* values, size_t size) function in class:Eigen::internal::CompressedStorage
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h176 static SkylineStorage Map(Index* upperProfile, Index* lowerProfile, Scalar* diag, Scalar* upper, Scalar* lower, Index size, Index upperSize, Index lowerSize) { function in class:Eigen::SkylineStorage
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h64 typedef MappedSparseMatrix<Scalar,Flags> Map; typedef in class:Eigen::DynamicSparseMatrix
/external/guava/guava/src/com/google/common/reflect/
H A DTypeResolver.java35 import java.util.Map;
78 * {@code Map<T, Something>} to {@code Map<String, Something>} etc. Similarly, {@code formal} and
79 * {@code actual} can be {@code Map<K, V>} and {@code Map<String, Integer>} respectively, or they
91 Map<TypeVariableKey, Type> mappings = Maps.newHashMap();
97 TypeResolver where(Map<TypeVariableKey, ? extends Type> mappings) {
102 final Map<TypeVariableKey, Type> mappings, Type from, final Type to) {
226 final TypeTable where(Map<TypeVariableKey, ? extends Type> mappings) {
229 for (Map
101 populateTypeMappings( final Map<TypeVariableKey, Type> mappings, Type from, final Type to) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DPlatform.java29 import java.util.Map;
57 static <E> Set<E> newSetFromMap(Map<E, Boolean> map) {
63 private final Map<E, Boolean> m; // The backing map
66 SetFromMap(Map<E, Boolean> map) {
67 checkArgument(map.isEmpty(), "Map is non-empty");
140 SortedMap<K, V> unfiltered, Predicate<? super Map.Entry<K, V>> predicate) {
139 mapsFilterSortedMap( SortedMap<K, V> unfiltered, Predicate<? super Map.Entry<K, V>> predicate) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedCollectionGenerators.java32 import java.util.Map;
33 import java.util.Map.Entry;
46 implements TestSetGenerator<Map.Entry<K, V>>, DerivedGenerator {
47 private final OneSizeTestContainerGenerator<Map<K, V>, Map.Entry<K, V>>
52 Map<K, V>, Map.Entry<K, V>> mapGenerator) {
57 public SampleElements<Map.Entry<K, V>> samples() {
62 public Set<Map.Entry<K, V>> create(Object... elements) {
67 public Map
50 MapEntrySetGenerator( OneSizeTestContainerGenerator< Map<K, V>, Map.Entry<K, V>> mapGenerator) argument
216 MapValueCollectionGenerator( OneSizeTestContainerGenerator< Map<K, V>, Map.Entry<K, V>> mapGenerator) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCompactDecimalDataCache.java10 import java.util.Map;
66 Map<String, DecimalFormat.Unit[]> units;
68 Data(long[] divisors, Map<String, DecimalFormat.Unit[]> units) {
443 int idx, Map<String, DecimalFormat.Unit[]> units) {
452 private static void copyFromPreviousIndex(int idx, Map<String, DecimalFormat.Unit[]> units) {
464 Map<String, DecimalFormat.Unit[]> units) {
483 Map<String, DecimalFormat.Unit[]> units, String variant, int base) {
482 getUnit( Map<String, DecimalFormat.Unit[]> units, String variant, int base) argument
H A DCompactDecimalFormat.java23 import java.util.Map;
24 import java.util.Map.Entry;
60 private final Map<String, DecimalFormat.Unit[]> units;
62 private final Map<String, Unit> pluralToCurrencyAffixes;
164 long[] divisor, Map<String,String[][]> pluralAffixes, Map<String, String[]> currencyAffixes,
215 Map<String, DecimalFormat.Unit[]> lhs, Map<String, DecimalFormat.Unit[]> rhs) {
220 for (Map.Entry<String, DecimalFormat.Unit[]> entry : lhs.entrySet()) {
355 private Map<Strin
214 mapsAreEqual( Map<String, DecimalFormat.Unit[]> lhs, Map<String, DecimalFormat.Unit[]> rhs) argument
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java10 import java.util.Map;
163 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final Map<String, ?> props) { argument
186 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final Map<String, ?> props) { argument
301 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) { argument
326 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) { argument
395 public static ServiceInfo create(final Map<Fields, String> qualifiedNameMap, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) { argument
669 public abstract void setText(final Map<String, ?> props) throws IllegalStateException; argument
711 public abstract Map<Fields, String> getQualifiedNameMap();
/external/llvm/include/llvm/ADT/
H A DMapVector.h1 //===- llvm/ADT/MapVector.h - Map w/ deterministic value order --*- C++ -*-===//
35 MapType Map; member in class:llvm::MapVector
66 Map.clear();
71 std::swap(Map, RHS.Map);
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
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h77 typedef LiveSegments Map; typedef in class:llvm::LiveIntervalUnion
78 const Map &getMap() { return Segments; }
/external/llvm/lib/IR/
H A DDebugInfo.cpp76 DITypeIdentifierMap Map; local
86 // Try to insert (TypeId, Ty) to Map.
88 Map.insert(std::make_pair(TypeId, Ty));
89 // If TypeId already exists in Map and this is a definition, replace
96 return Map;
/external/llvm/lib/Support/
H A DTimer.cpp198 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map; member in class:__anon10608::Name2PairMap
202 I = Map.begin(), E = Map.end(); I != E; ++I)
209 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DFragmentedMp4Builder.java85 protected List<Track> sortTracksInSequence(List<Track> tracks, final int cycle, final Map<Track, long[]> intersectionMap) { argument
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java28 import java.util.Map;
92 public static String formEncode(Iterable<? extends Map.Entry> parameters)
103 public static void formEncode(Iterable<? extends Map.Entry> parameters,
107 for (Map.Entry parameter : parameters) {
180 * Construct a Map containing a copy of the given parameters. If several
181 * parameters have the same name, the Map will contain the first value,
184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) {
185 Map<String, String> map = new HashMap<String, String>();
187 for (Map
286 addParameters(String url, Iterable<? extends Map.Entry<String, String>> parameters) argument
[all...]
H A DOAuthMessage.java29 import java.util.Map;
50 Collection<? extends Map.Entry> parameters) {
54 this.parameters = new ArrayList<Map.Entry<String, String>>();
56 this.parameters = new ArrayList<Map.Entry<String, String>>(parameters.size());
57 for (Map.Entry p : parameters) {
67 private final List<Map.Entry<String, String>> parameters;
68 private Map<String, String> parameterMap;
70 private final List<Map.Entry<String, String>> headers = new ArrayList<Map.Entry<String, String>>();
91 public List<Map
105 addParameters( Collection<? extends Map.Entry<String, String>> parameters) argument
[all...]
/external/openfst/src/include/fst/
H A Dsparse-power-weight.h38 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightPlusMapper
45 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightTimesMapper
55 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightDivideMapper
64 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightApproxMapper
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DFieldSet.java40 import java.util.Map;
136 Map.Entry<FieldDescriptorType, Object> entry = fields.getArrayEntryAt(i);
140 for (Map.Entry<FieldDescriptorType, Object> entry :
161 public Map<FieldDescriptorType, Object> getAllFields() {
168 for (Map.Entry<FieldDescriptorType, Object> entry :
180 private void cloneFieldEntry(Map<FieldDescriptorType, Object> map,
181 Map.Entry<FieldDescriptorType, Object> entry) {
196 public Iterator<Map.Entry<FieldDescriptorType, Object>> iterator() {
423 for (final Map.Entry<FieldDescriptorType, Object> entry :
434 final Map
433 isInitialized( final Map.Entry<FieldDescriptorType, Object> entry) argument
502 mergeFromField( final Map.Entry<FieldDescriptorType, Object> entry) argument
623 writeMessageSetTo( final Map.Entry<FieldDescriptorType, Object> entry, final CodedOutputStream output) argument
782 getMessageSetSerializedSize( final Map.Entry<FieldDescriptorType, Object> entry) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DDefaultRequestDirector.java68 import java.util.Map;
779 Map<String, Header> challenges = this.proxyAuthHandler.getChallenges(
1004 Map<String, Header> challenges = this.targetAuthHandler.getChallenges(
1034 Map<String, Header> challenges = this.proxyAuthHandler.getChallenges(
1092 final Map<String, Header> challenges,
1091 processChallenges( final Map<String, Header> challenges, final AuthState authState, final AuthenticationHandler authHandler, final HttpResponse response, final HttpContext context) argument
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp198 typedef std::map<const std::type_info*, Entry> Map; typedef in class:de::cmdline::detail::TypedFieldMap
204 Map m_fields;
/external/guava/guava/src/com/google/common/collect/
H A DImmutableMap.java31 import java.util.Map;
36 * An immutable, hash-based {@link Map} with reliable user-specified iteration
62 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable {
131 * <p>A call to {@link Map.Entry#setValue} on the returned entry will always
229 public Builder<K, V> putAll(Map<? extends K, ? extends V> map) {
272 Map<? extends K, ? extends V> map) {
300 private static <K, V> ImmutableMap<K, V> copyOfEnumMapUnsafe(Map<? extends K, ? extends V> map) {
305 Map<K, ? extends V> original) {
307 for (Map.Entry<?, ?> entry : copy.entrySet()) {
349 public final void putAll(Map<
304 copyOfEnumMap( Map<K, ? extends V> original) argument
[all...]
H A DMapConstraints.java30 import java.util.Map;
31 import java.util.Map.Entry;
84 public static <K, V> Map<K, V> constrainedMap( argument
85 Map<K, V> map, MapConstraint<? super K, ? super V> constraint) {
292 private final Map<K, V> delegate;
297 Map<K, V> delegate, MapConstraint<? super K, ? super V> constraint) {
301 @Override protected Map<K, V> delegate() {
316 @Override public void putAll(Map<? extends K, ? extends V> map) {
403 transient Map<K, Collection<V>> asMap;
415 @Override public Map<
296 ConstrainedMap( Map<K, V> delegate, MapConstraint<? super K, ? super V> constraint) argument
[all...]

Completed in 727 milliseconds

123456