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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/IM/plugin/com/android/im/plugin/
ImPlugin.java 19 import java.util.Map;
23 * Gets a map of branding resources for the provider. The keys are defined
27 * @return The map of branding resources.
29 Map<Integer, Integer> getResourceMap();
47 Map<String, String> getProviderConfig();
PresenceMapping.java 19 import java.util.Map;
22 * The methods used to map presence value sent in protocol to predefined
29 * received from the server when map to the predefined status.
36 * Map the presence values sent in protocol to the predefined presence
48 Map<String, Object> allValues);
76 Map<String, Object> getExtra(int status);
  /sdk/layoutlib_api/src/com/android/layoutlib/api/
ILayoutBridge.java 19 import java.util.Map;
29 * <li>new render method: {@link #computeLayout(IXmlPullParser, Object, int, int, boolean, int, float, float, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
30 * <li>deprecated {@link #computeLayout(IXmlPullParser, Object, int, int, int, float, float, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
34 * <li>new render method: {@link #computeLayout(IXmlPullParser, Object, int, int, int, float, float, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
35 * <li>deprecated {@link #computeLayout(IXmlPullParser, Object, int, int, String, boolean, Map, Map, IProjectCallback, ILayoutLog)}</li>
40 * <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) {
  /dalvik/libcore/sql/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)
Ref.java 20 import java.util.Map;
62 * @param map
69 public Object getObject(Map<String, Class<?>> map) throws SQLException;
Array.java 20 import java.util.Map;
63 * @param map
64 * the map defining the correspondence between SQL type names
70 public Object getArray(long index, int count, Map<String, Class<?>> map)
76 * @param map
77 * the map defining the correspondence between SQL type names
83 public Object getArray(Map<String, Class<?>> map) throws SQLException;
141 * @param map
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.ListView.groovy 32 public Map<?, ?> getDefaultAttributes() {
  /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;
42 public CacheResult service(String url, Map<String, String> headers);
56 public PluginData getPluginData(String url, Map<String, String> headers);
PluginData.java 20 import java.util.Map;
45 * The associated HTTP response headers stored as a map of
50 private Map<String, String[]> mHeaders;
62 * @param headers The response headers. Map of
73 Map<String, String[]> headers,
111 * @return A Map<String, String[]> containing all headers. The
119 public Map<String, String[]> getHeaders() {
  /external/guava/src/com/google/common/collect/
MapDifference.java 21 import java.util.Map;
40 * Returns an unmodifiable map containing the entries from the left map whose
41 * keys are not present in the right map.
43 Map<K, V> entriesOnlyOnLeft();
46 * Returns an unmodifiable map containing the entries from the right map whose
47 * keys are not present in the left map.
49 Map<K, V> entriesOnlyOnRight();
52 * Returns an unmodifiable map containing the entries that appear in bot
    [all...]
BiMap.java 21 import java.util.Map;
27 * A bimap (or "bidirectional map") is a map that preserves the uniqueness of
36 public interface BiMap<K, V> extends Map<K, V> {
73 * the iteration order of {@code map}.
76 * entry fails. Note that some map entries may have been added to the
79 void putAll(Map<? extends K, ? extends V> map);
87 * instead of the {@link java.util.Collection} specified in the {@link Map}
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
SystemProperties.java 26 import java.util.Map;
48 * Fill the given Map with system properties
50 void init(Map<String, ?> desktopProperties);
53 * Fills the given map with system-dependent visual text
58 void mapInputMethodHighlight(InputMethodHighlight highlight, Map<TextAttribute, ?> map);
  /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() {
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ConstructorProjection.java 23 import java.util.Map;
29 Map<ITypeVariableDefinition, ITypeReference> mappings) {
MethodProjection.java 24 import java.util.Map;
30 private Map<ITypeVariableDefinition, ITypeReference> mappings;
33 Map<ITypeVariableDefinition, ITypeReference> mappings) {
  /dalvik/libcore/luni/src/main/java/java/net/
CacheResponse.java 22 import java.util.Map;
52 * Returns an immutable {@code Map} which contains the response headers
55 * @return an immutable {@code Map} which contains the response headers. The
56 * generic map contains response header fields as the key and a list
62 public abstract Map<String, List<String>> getHeaders() throws IOException;
CookieHandler.java 21 import java.util.Map;
70 * @return an unchangeable map of all appropriate cookies.
74 public abstract Map<String, List<String>> get(URI uri,
75 Map<String, List<String>> requestHeaders) throws IOException;
88 public abstract void put(URI uri, Map<String, List<String>> responseHeaders)
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
ServiceManager.java 19 import java.util.Map;
69 public static void initServiceCache(Map<String, IBinder> cache) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutRepository.java 20 import java.util.Map;
61 * @return A map for corpus name to score. A higher score means that the corpus
64 Map<String,Integer> getCorpusScores();
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 27 import java.util.Map;
31 * Demonstrates expandable lists backed by a Simple Map-based adapter
43 List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
44 List<List<Map<String, String>>> childData = new ArrayList<List<Map<String, String>>>();
46 Map<String, String> curGroupMap = new HashMap<String, String>();
51 List<Map<String, String>> children = new ArrayList<Map<String, String>>();
53 Map<String, String> curChildMap = new HashMap<String, String>()
    [all...]
  /development/apps/launchperf/src/com/android/launchperf/
EmptyActivity.java 22 import java.util.Map;
  /sdk/ddms/app/src/com/android/ddms/
DebugPortProvider.java 25 import java.util.Map;
44 private Map<String, Map<String, Integer>> mMap;
66 Map<String, Integer> deviceMap = mMap.get(device.getSerialNumber());
78 * Returns the map of Static debugger ports. The map links device serial numbers to
79 * a map linking application name to debugger ports.
81 public Map<String, Map<String, Integer>> getPortList() {
86 * Create the map member from the values contained in the Preference Store
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ConcurrentMap.java 8 import java.util.Map;
15 * A {@link java.util.Map} providing additional atomic
27 * @param <K> the type of keys maintained by this map
30 public interface ConcurrentMap<K, V> extends Map<K, V> {
36 * if (!map.containsKey(key))
37 * return map.put(key, value);
39 * return map.get(key);</pre>
46 * (A <tt>null</tt> return can also indicate that the map
50 * is not supported by this map
52 * prevents it from being stored in this map
    [all...]

Completed in 648 milliseconds

1 2 3 4 5 6 7 8 91011>>