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

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/main/java/java/util/
MapEntry.java 21 * MapEntry is an internal class which provides an implementation of Map.Entry.
23 class MapEntry<K, V> implements Map.Entry<K, V>, Cloneable {
55 if (object instanceof Map.Entry) {
56 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object;
  /libcore/luni/src/test/java/libcore/java/net/
OldCookieHandlerTest.java 24 import java.util.Map;
80 public Map get(URI uri, Map requestHeaders) throws IOException {
86 public void put(URI uri, Map responseHeaders) throws IOException {
  /packages/apps/Browser/src/com/android/browser/
PreloadedTabControl.java 22 import java.util.Map;
46 final String fallbackUrl, final Map<String, String> fallbackHeaders) {
53 public void loadUrlIfChanged(String url, Map<String, String> headers) {
69 public void loadUrl(String url, Map<String, String> headers) {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockShortcutRepository.java 22 import java.util.Map;
30 private Map<String, Integer> mCorpusScores;
32 public void setCorpusScores(Map<String, Integer> corpusScores) {
65 public void getCorpusScores(Consumer<Map<String, Integer>> consumer) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsMockResources.java 23 import java.util.Map;
26 private Map<Integer, String> mPackages = Maps.newHashMap();
27 private Map<Integer, String> mTypes = Maps.newHashMap();
28 private Map<Integer, String> mEntries = Maps.newHashMap();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringDescriptor.java 24 import java.util.Map;
35 private final Map<String, String> mArguments;
38 Map<String, String> arguments) {
45 public Map<String, String> getArguments() {
51 * an argument map. The argument map is created by the refactoring itself in
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
Bridge.java 27 import java.util.Map;
68 * @param enumValueMap map attrName => { map enumFlagName => Integer value }. This is typically
73 public boolean init(Map<String, String> platformProperties,
75 Map<String, Map<String, Integer>> enumValueMap,
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
Api.java 27 import java.util.Map;
74 private final Map<String, ApiClass> mClasses;
76 private Api(Map<String, ApiClass> classes) {
84 Map<String, ApiClass> getClasses() {
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/installapp/
UninstallAppWizard.java 19 import java.util.Map;
32 private Map<String, String> availablePackages = null;
57 public void init(Map<String, String> applicationList)
62 public void setAvailablePackages(Map<String, String> applicationList)
  /tools/motodev/src/plugins/preflighting/src/com/motorolamobility/preflighting/internal/commandoutput/
OutputterExtensionReader.java 21 import java.util.Map;
40 private static Map<String, AbstractOutputter> outputtersMap = null;
42 private static Map<String, AbstractOutputter> loadOutputters()
79 public static Map<String, AbstractOutputter> getOutputtersMap()
  /tools/motodev/src/plugins/preflighting.checkers/src/com/motorolamobility/preflighting/checkers/layout/
LayoutFileId.java 21 import java.util.Map;
27 * This class can contain a list of Ids and/or a Map<Node,String> where
36 private Map<Node, String> nodeIdMap;
52 public LayoutFileId(File file, Map<Node, String> nodeMap)
69 public Map<Node, String> getNodeIdMap()
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/checker/
IChecker.java 20 import java.util.Map;
90 * If the {@link IChecker} has no conditions, an empty {@link Map} must be returned.
92 * @return A {@link Map} that contains the condition IDs as keys and the condition objects associated with them.
94 public Map<String, ICondition> getConditions();
99 * @param checkerConditions {@link Map} holding the conditions. Each condition is identified
109 public Map<String, ICheckerParameter> getParameters();
116 public void setParameters(Map<String, ICheckerParameter> conditionParameters);
  /external/guava/guava/src/com/google/common/collect/
StandardTable.java 35 import java.util.Map;
36 import java.util.Map.Entry;
42 * {@link Table} implementation backed by a map that associates row keys with
52 * the data is stored in a {@code Map<R, Map<C, V>>}. A method call like {@code
65 @GwtTransient final Map<R, Map<C, V>> backingMap;
66 @GwtTransient final Supplier<? extends Map<C, V>> factory;
68 StandardTable(Map<R, Map<C, V>> backingMap
81 Map<C, V> map = safeGet(backingMap, rowKey); local
117 Map<C, V> map = safeGet(backingMap, rowKey); local
162 Map<C, V> map = backingMap.get(rowKey); local
189 Map<C, V> map = safeGet(backingMap, rowKey); local
445 Map<C, V> map() { method in class:RowEntrySet
451 Map<C, V> map = backingRowMap(); local
457 final Map<C, V> map = backingRowMap(); local
    [all...]
ForwardingTable.java 23 import java.util.Map;
29 * map as desired per the <a
55 public Map<R, V> column(C columnKey) {
65 public Map<C, Map<R, V>> columnMap() {
115 public Map<C, V> row(R rowKey) {
125 public Map<R, Map<C, V>> rowMap() {
StandardRowSortedTable.java 25 import java.util.Map;
39 * {@link Map} specified by the {@link Table} interface.
57 StandardRowSortedTable(SortedMap<R, Map<C, V>> backingMap,
58 Supplier<? extends Map<C, V>> factory) {
62 private SortedMap<R, Map<C, V>> sortedBackingMap() {
63 return (SortedMap<R, Map<C, V>>) backingMap;
124 * <p>This method returns a {@link SortedMap}, instead of the {@code Map}
127 @Override public SortedMap<R, Map<C, V>> rowMap() {
132 private class RowSortedMap extends RowMap implements SortedMap<R, Map<C, V>> {
149 public SortedMap<R, Map<C, V>> headMap(R toKey)
    [all...]
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 22 import java.util.Map;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
75 Map<MethodSerializationWrapper, ArgumentsMatcher> map = (Map<MethodSerializationWrapper, ArgumentsMatcher>) stream local
77 matchers = new HashMap<Method, ArgumentsMatcher>(map.size());
78 for (Map.Entry<MethodSerializationWrapper, ArgumentsMatcher> entry : map
94 Map<MethodSerializationWrapper, ArgumentsMatcher> map = new HashMap<MethodSerializationWrapper, ArgumentsMatcher>( local
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Primitives.java 23 import java.util.Map;
36 /** A map from primitive types to their corresponding wrapper types. */
37 private static final Map<Class<?>, Class<?>> PRIMITIVE_TO_WRAPPER_TYPE;
39 /** A map from wrapper types to their corresponding primitive types. */
40 private static final Map<Class<?>, Class<?>> WRAPPER_TO_PRIMITIVE_TYPE;
45 Map<Class<?>, Class<?>> primToWrap = new HashMap<Class<?>, Class<?>>(16);
46 Map<Class<?>, Class<?>> wrapToPrim = new HashMap<Class<?>, Class<?>>(16);
62 private static void add(Map<Class<?>, Class<?>> forward,
63 Map<Class<?>, Class<?>> backward, Class<?> key, Class<?> value) {
  /external/proguard/src/proguard/obfuscate/
MemberObfuscator.java 32 * from the given descriptor map.
46 private final Map descriptorMap;
55 * @param descriptorMap the map of descriptors to
60 Map descriptorMap)
92 // Get the name map, creating a new one if necessary.
93 Map nameMap = retrieveNameMap(descriptorMap, descriptor);
122 * Gets the name map, based on the given map and a given descriptor.
123 * A new empty map is created if necessary.
124 * @param descriptorMap the map of descriptors to [new name - old name] maps
    [all...]
  /external/javassist/src/main/javassist/util/
HotSwapper.java 79 private Map newClassFiles;
112 Map arguments = connector.defaultArguments();
157 Map map = new HashMap(); local
158 map.put(classtype, classFile);
159 reload2(map, className);
165 * @param classFiles a map between fully-qualified class names
170 public void reload(Map classFiles) {
173 Map map = new HashMap() local
248 Map map = newClassFiles; local
    [all...]
  /frameworks/base/core/java/android/widget/
SimpleExpandableListAdapter.java 25 import java.util.Map;
28 * An easy adapter to map static data to group and child views defined in an XML
33 * the Map to specific views. This process is similar for a child, except it is
34 * one-level deeper so the data backing is specified as a List<List<Map>>,
37 * Map holds the data for that particular child.
40 private List<? extends Map<String, ?>> mGroupData;
46 private List<? extends List<? extends Map<String, ?>>> mChildData;
64 * @param groupFrom A list of keys that will be fetched from the Map
76 * (index by child position), and the Map corresponds to the data
77 * for a child (index by values in the childFrom array). The Map
    [all...]
  /external/apache-harmony/auth/src/test/java/unix/org/apache/harmony/auth/module/
UnixLoginModuleTest.java 24 import java.util.Map;
47 Map sharedState = new HashMap();
48 Map options = new HashMap();
65 Map shared = new HashMap();
66 Map options = new HashMap();
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 29 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.Entry<String, String>> getParameters() throws IOException
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
AggregatorManager.java 24 import java.util.Map;
45 for (Map.Entry<String, Aggregator> x : sFeatureMap.entrySet()) {
63 public Map<String, String> getDataMap(String dataName) {
71 private ArrayList<StringString> getList(final Map<String, String> sample) {
73 for (Map.Entry<String, String> x : sample.entrySet()) {
  /frameworks/support/volley/tests/src/com/android/volley/toolbox/
BasicNetworkTest.java 32 import java.util.Map;
62 public Map<String, String> getHeaders() {
63 Map<String, String> result = new HashMap<String, String>();
69 public Map<String, String> getPostParams() {
70 Map<String, String> result = new HashMap<String, String>();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
HttpHelper.java 21 import java.util.Map;
31 public String get(String url, Map<String,String> requestHeaders)
36 public String post(String url, Map<String,String> requestHeaders, String content)
45 private Map<String,String> mHeaders;
80 public Map<String, String> getHeaders() {

Completed in 726 milliseconds

1 2 3 4 5 67 8 91011>>