HomeSort by relevance Sort by last modified time
    Searched refs:Map (Results 1 - 25 of 2018) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/core/
MultiMap.java 19 import java.util.Map;
22 * This is simply a Map with slightly different semantics.
33 public interface MultiMap extends Map {
  /sdk/layoutlib_api/src/com/android/layoutlib/api/
ILayoutBridge.java 21 import java.util.Map;
35 * <li>new render method: {@link #computeLayout(IXmlPullParser, Object, int, int, boolean, int, float, float, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
36 * <li>deprecated {@link #computeLayout(IXmlPullParser, Object, int, int, int, float, float, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
40 * <li>new render method: {@link #computeLayout(IXmlPullParser, Object, int, int, int, float, float, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
41 * <li>deprecated {@link #computeLayout(IXmlPullParser, Object, int, int, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
46 * <li>new render method: {@link #computeLayout(IXmlPullParser, Object, int, int, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li
    [all...]
  /development/tools/mkstubs/tests/data/
TestTemplateClass.java 24 import java.util.Map;
32 private final Map<T, U> mMap_T_U = null;
34 public Map<ArrayList<T>, Map<String, ArrayList<U>>> mMap_T_S_U = null;
39 public Map<T, U> getMap_T_U() {
43 public Map<ArrayList<T>, Map<String, ArrayList<U>>> getMap_T_S_U() {
53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) {
  /external/clang/lib/StaticAnalyzer/Core/
FunctionSummary.cpp 19 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) {
26 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) {
34 for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I) {
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 12 #include <map>
76 // allows all of the map implementations to be tested with shared
81 T Map;
110 // Empty map tests
113 EXPECT_EQ(0u, this->Map.size());
114 EXPECT_TRUE(this->Map.empty());
117 EXPECT_TRUE(this->Map.begin() == this->Map.end());
120 EXPECT_FALSE(this->Map.count(this->getKey()));
121 EXPECT_TRUE(this->Map.find(this->getKey()) == this->Map.end())
311 DenseMap<unsigned, unsigned, TestDenseMapInfo> map; local
    [all...]
  /dalvik/tests/031-class-attributes/src/
FancyClass.java 18 import java.util.Map;
20 public class FancyClass<K,V> extends HashMap<K,V> implements Map<K,V> {
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/
Converter.java 35 import java.util.Map;
38 public T convert(T input, Map<String, String> params);
  /libcore/luni/src/main/java/java/sql/
Struct.java 20 import java.util.Map;
41 * method uses the type map associated with the {@link Connection} for
54 * method uses the supplied type mapping to determine how to map SQL types
58 * Connection} type map is <i>never</i> utilized by this method.
61 * a Map describing how SQL Type names are mapped to classes.
66 public Object[] getAttributes(Map<String, Class<?>> theMap)
SQLClientInfoException.java 21 import java.util.Map;
30 final private Map<String, ClientInfoStatus> failedProperties;
43 * Code is set to 0, and the Map<String,ClientInfoStatus> object is set to
47 * the Map<String,ClientInfoStatus> object to use as the
50 public SQLClientInfoException(Map<String, ClientInfoStatus> failedProperties) {
57 * Throwable object is set to the given cause Throwable object, and the Map<String,ClientInfoStatus>
61 * the Map<String,ClientInfoStatus> object to use as the
68 Map<String, ClientInfoStatus> failedProperties, Throwable cause) {
75 * reason, and the Map<String,ClientInfoStatus> object is set to the failed
81 * the Map<String,ClientInfoStatus> object to use as th
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestMapGenerator.java 19 import java.util.Map;
29 extends TestContainerGenerator<Map<K, V>, Map.Entry<K, V>> {
TestMapEntrySetGenerator.java 20 import java.util.Map;
24 * Creates map entries using sample keys and sample values.
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(
54 Map.Entry<K, V>[] entries);
58 public Map.Entry<K, V>[] createArray(int length) {
59 return new Map.Entry[length]
    [all...]
  /external/proguard/src/proguard/obfuscate/
MapCleaner.java 27 import java.util.Map;
30 * This ClassVisitor clears a given map whenever it visits a class.
38 private final Map map; field in class:MapCleaner
43 * @param map the map to be cleared.
45 public MapCleaner(Map map)
47 this.map = map;
    [all...]
  /frameworks/base/core/java/android/webkit/
UrlInterceptHandler.java 21 import java.util.Map;
44 public CacheResult service(String url, Map<String, String> headers);
59 public PluginData getPluginData(String url, Map<String, String> headers);
PluginData.java 20 import java.util.Map;
46 * The associated HTTP response headers stored as a map of
51 private Map<String, String[]> mHeaders;
63 * @param headers The response headers. Map of
75 Map<String, String[]> headers,
115 * @return A Map<String, String[]> containing all headers. The
124 public Map<String, String[]> getHeaders() {
  /external/nist-sip/java/gov/nist/javax/sip/header/
AddressParameters.java 3 import java.util.Map;
4 import java.util.Map.Entry;
24 * Get the parameters map.
27 public abstract Map<String,Entry<String,String>> getParameters();
  /packages/apps/Phone/src/com/android/phone/
CarrierLogo.java 20 import java.util.Map;
30 private static Map<String, Integer> sLogoMap = null;
32 private static Map<String, Integer> getLogoMap() {
  /external/openfst/src/script/
map.cc 19 #include <fst/script/map.h>
24 FstClass *Map(const FstClass& ifst, MapType map_type,
29 Apply<Operation<MapArgs> >("Map", ifst.ArcType(), &args_with_retval);
34 REGISTER_FST_OPERATION(Map, StdArc, MapArgs);
35 REGISTER_FST_OPERATION(Map, LogArc, MapArgs);
36 REGISTER_FST_OPERATION(Map, Log64Arc, MapArgs);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPSchemaRegistry.java 12 import java.util.Map;
103 * @return Returns the registered prefix/namespace-pairs as map, where the keys are the
106 Map getNamespaces();
110 * @return Returns the registered namespace/prefix-pairs as map, where the keys are the
113 Map getPrefixes();
174 * @return Returns the registered aliases as map, where the key is the "qname" (prefix and name)
177 Map getAliases();
  /libcore/luni/src/main/java/java/net/
CookieHandler.java 21 import java.util.Map;
51 * @return an unchangeable map of all appropriate cookies.
55 public abstract Map<String, List<String>> get(URI uri,
56 Map<String, List<String>> requestHeaders) throws IOException;
69 public abstract void put(URI uri, Map<String, List<String>> responseHeaders)
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
FunctionSummary.h 47 MapTy Map;
53 MapTy::iterator I = Map.find(D);
54 if (I != Map.end())
57 I = Map.insert(std::pair<const Decl*, FunctionSummary*>(D, DS)).first;
58 assert(I != Map.end());
68 MapTy::const_iterator I = Map.find(D);
69 if (I != Map.end())
86 MapTy::const_iterator I = Map.find(D);
87 if (I != Map.end())
94 MapTy::const_iterator I = Map.find(D)
    [all...]
  /external/llvm/include/llvm/ADT/
ValueMap.h 1 //===- llvm/ADT/ValueMap.h - Safe map from Values to data -------*- C++ -*-===//
66 /// Returns a mutex that should be acquired around any changes to the map.
81 MapT Map;
91 : Map(NumInitBuckets), Data() {}
93 : Map(NumInitBuckets), Data(Data) {}
99 inline iterator begin() { return iterator(Map.begin()); }
100 inline iterator end() { return iterator(Map.end()); }
101 inline const_iterator begin() const { return const_iterator(Map.begin()); }
102 inline const_iterator end() const { return const_iterator(Map.end()); }
104 bool empty() const { return Map.empty();
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ConstructorProjection.java 23 import java.util.Map;
29 Map<ITypeVariableDefinition, ITypeReference> mappings) {
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAttributeTableGenerator.java 5 import java.util.Map;
17 AttributeTable getAttributes(Map parameters)
SimpleAttributeTableGenerator.java 5 import java.util.Map;
21 public AttributeTable getAttributes(Map parameters)
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularImmutableMap.java 19 import java.util.Map;
28 RegularImmutableMap(Map<? extends K, ? extends V> delegate) {

Completed in 483 milliseconds

1 2 3 4 5 6 7 8 91011>>