Searched refs:HashMap (Results 151 - 175 of 326) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DIconLoader.java30 import java.util.HashMap;
50 private HashMap<Integer, Bitmap> mIconsCache = null;
75 mIconsCache = new HashMap<Integer, Bitmap>(50);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimSmsInterfaceManager.java36 import java.util.HashMap;
54 private HashMap<Integer, HashSet<String>> mCellBroadcastSubscriptions =
55 new HashMap<Integer, HashSet<String>>();
H A DUsimPhoneBookManager.java32 import java.util.HashMap;
259 mEmailsForAdnRec = new HashMap<Integer, ArrayList<String>>();
384 HashMap<Integer,Map<Integer,Integer>> mFileIds;
387 mFileIds = new HashMap<Integer, Map<Integer, Integer>>();
401 Map<Integer, Integer> val = new HashMap<Integer, Integer>();
/frameworks/base/media/java/android/media/
H A DExifInterface.java23 import java.util.HashMap;
107 private HashMap<String, String> mAttributes;
188 * mAttributes is a HashMap which stores the Exif attributes of the file.
200 mAttributes = new HashMap<String, String>();
H A DMetadata.java26 import java.util.HashMap;
260 private final HashMap<Integer, Integer> mKeyToPosMap =
261 new HashMap<Integer, Integer>();
H A DTimedText.java22 import java.util.HashMap;
89 private final HashMap<Integer, Object> mKeyObjectMap =
90 new HashMap<Integer, Object>();
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DMtpClient.java38 import java.util.HashMap;
59 private final HashMap<String, MtpDevice> mDevices = new HashMap<String, MtpDevice>();
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java38 import java.util.HashMap;
57 private static HashMap<Integer, BassBoost> sInstances = new HashMap<Integer, BassBoost>(10);
H A DVirtualizerTest.java38 import java.util.HashMap;
57 private static HashMap<Integer, Virtualizer> sInstances = new HashMap<Integer, Virtualizer>(10);
H A DPresetReverbTest.java38 import java.util.HashMap;
57 private static HashMap<Integer, PresetReverb> sInstances = new HashMap<Integer, PresetReverb>(10);
H A DVisualizerTest.java43 import java.util.HashMap;
60 private static HashMap<Integer, Visualizer> sInstances = new HashMap<Integer, Visualizer>(10);
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java21 import java.util.HashMap;
63 private final HashMap<String, ProviderStats> mStats = new HashMap<String, ProviderStats>();
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientAlternatesAdapter.java35 import java.util.HashMap;
58 public static HashMap<String, RecipientEntry> getMatchingRecipients(Context context,
64 * Get a HashMap of address to RecipientEntry that contains all contact
70 * @return HashMap<String,RecipientEntry>
72 public static HashMap<String, RecipientEntry> getMatchingRecipients(Context context,
97 HashMap<String, RecipientEntry> recipientEntries = new HashMap<String, RecipientEntry>();
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java25 import java.util.HashMap;
79 private static HashMap<String,PartParser> sParsePartMap;
81 sParsePartMap = new HashMap<String,PartParser>();
115 private static final HashMap<String,Integer> sParseFreqMap = new HashMap<String,Integer>();
127 private static final HashMap<String,Integer> sParseWeekdayMap = new HashMap<String,Integer>();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java33 import java.util.HashMap;
58 private HashMap<String, InputPort> mInputPorts;
59 private HashMap<String, OutputPort> mOutputPorts;
62 private HashMap<String, Frame> mFramesToSet;
76 mFramesToSet = new HashMap<String, Frame>();
549 mInputPorts = new HashMap<String, InputPort>();
550 mOutputPorts = new HashMap<String, OutputPort>();
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java72 import java.util.HashMap;
165 private final HashMap<Pair<Pair<Account, String>, Integer>, Integer>
167 new HashMap<Pair<Pair<Account, String>, Integer>, Integer>();
168 private final HashMap<Account, Integer> signinRequiredNotificationIds =
169 new HashMap<Account, Integer>();
172 private final HashMap<String, Account[]> accountCache =
175 private HashMap<Account, HashMap<String, String>> userDataCache =
176 new HashMap<Account, HashMap<Strin
[all...]
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java79 import java.util.HashMap;
153 private final HashMap<String, MockProvider> mMockProviders =
154 new HashMap<String, MockProvider>();
157 private final HashMap<Object, Receiver> mReceivers = new HashMap<Object, Receiver>();
164 private final HashMap<String, LocationProviderInterface> mRealProviders =
165 new HashMap<String, LocationProviderInterface>();
168 private final HashMap<String, LocationProviderInterface> mProvidersByName =
169 new HashMap<String, LocationProviderInterface>();
172 private final HashMap<Strin
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java21 import java.util.HashMap;
71 private HashMap<Animator, Node> mNodeMap = new HashMap<Animator, Node>();
573 anim.mNodeMap = new HashMap<Animator, Node>();
580 HashMap<Node, Node> nodeCloneMap = new HashMap<Node, Node>(); // <old, new>
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java28 import java.util.HashMap;
477 * Read a HashMap from an InputStream containing XML. The stream can
482 * @return HashMap The resulting map.
489 public static final HashMap readMapXml(InputStream in)
494 return (HashMap)readValueXml(parser, new String[1]);
542 * Read a HashMap object from an XmlPullParser. The XML data could
551 * @return HashMap The newly generated map.
555 public static final HashMap readThisMapXml(XmlPullParser parser, String endTag, String[] name)
558 HashMap map = new HashMap();
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java20 import java.util.HashMap;
124 final HashMap<Integer,AppWidgetHostView> mViews = new HashMap<Integer, AppWidgetHostView>();
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java25 import java.util.HashMap;
41 private final HashMap<SensorListener, LegacyListener> mLegacyListenersMap =
42 new HashMap<SensorListener, LegacyListener>();
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java21 import java.util.HashMap;
58 private static final HashMap sConstructorMap = new HashMap();
/frameworks/base/services/java/com/android/server/input/
H A DPersistentDataStore.java40 import java.util.HashMap;
64 private final HashMap<String, InputDeviceState> mInputDevices =
65 new HashMap<String, InputDeviceState>();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DSignalToneUtil.java19 import java.util.HashMap;
82 static private HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>();
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java38 import java.util.HashMap;
139 mMap = new HashMap<String, Object>();
217 return new HashMap<String, Object>(mMap);
400 mMap = new HashMap<String, Object>(mMap);

Completed in 506 milliseconds

1234567891011>>