Searched defs:map (Results 1 - 25 of 142) sorted by last modified time

123456

/frameworks/webview/chromium/plat_support/
H A Ddraw_gl.h101 // Called to map a GraphicBuffer in |mode|.
117 AwMapFunction* map; member in struct:AwDrawGLFunctionTable
/frameworks/wilhelm/src/android/
H A Dchannels.cpp127 // In practice this map is unnecessary, because the SL definitions just
153 // This map is quite sparse, because there really isn't a reasonable mapping
154 // between most of the SL_SPEAKER bits and the android input map. It's probably
165 const struct channel_map* map,
186 if (bitsIn & map[i].sles) {
187 bitsOut |= map[i].android;
163 sles_to_android_mask_helper( SLuint32 mask, const struct channel_map* map, unsigned int nMappings) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .JsonSerializationContextDefault contextImpl protected static final java.util.Map constructMapType (java.lang.reflect.Type, com. ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .JsonSerializationContextDefault contextImpl protected static final java.util.Map constructMapType (java.lang.reflect.Type, com. ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java371 private void logInto(LongSparseArray<?> map, StringBuilder sb) { argument
372 for (int i = 0; i < map.size(); i++) {
373 long key = map.keyAt(i);
374 Object value = map.valueAt(i);
/frameworks/support/compat/java/android/support/v4/util/
H A DArrayMap.java30 * avoid having to create an extra object for every entry put in to the map, and it
33 * a hash map).
67 public ArrayMap(SimpleArrayMap map) { argument
68 super(map);
124 * Determine if the array map contains all of the keys in the given collection.
126 * @return Returns true if this array map contains a key for every entry
134 * Perform a {@link #put(Object, Object)} of all key/value pairs in <var>map</var>
135 * @param map The map whose contents are to be retrieved.
138 public void putAll(Map<? extends K, ? extends V> map) { argument
[all...]
H A DLruCache.java30 private final LinkedHashMap<K, V> map; field in class:LruCache
52 this.map = new LinkedHashMap<K, V>(0, 0.75f, true);
84 mapValue = map.get(key);
93 * Attempt to create a value. This may take a long time, and the map
95 * added to the map while create() was working, we leave that value in
96 * the map and release the created value.
106 mapValue = map.put(key, createdValue);
110 map.put(key, mapValue);
140 previous = map.put(key, value);
166 if (size < 0 || (map
[all...]
H A DMapCollections.java456 public static <K, V> boolean containsAllHelper(Map<K, V> map, Collection<?> collection) { argument
459 if (!map.containsKey(it.next())) {
466 public static <K, V> boolean removeAllHelper(Map<K, V> map, Collection<?> collection) { argument
467 int oldSize = map.size();
470 map.remove(it.next());
472 return oldSize != map.size();
475 public static <K, V> boolean retainAllHelper(Map<K, V> map, Collection<?> collection) { argument
476 int oldSize = map.size();
477 Iterator<K> it = map.keySet().iterator();
483 return oldSize != map
[all...]
H A DSimpleArrayMap.java232 * Create a new empty ArrayMap. The default capacity of an array map is 0, and
257 public SimpleArrayMap(SimpleArrayMap<K, V> map) { argument
259 if (map != null) {
260 putAll(map);
265 * Make the array map empty. All storage is released.
283 * Ensure the array map can hold at least <var>minimumCapacity</var>
396 * Return true if the array map contains no items.
403 * Add a new value to the array map.
493 * Remove an existing key from the array map.
573 * Return the number of items in this array map
[all...]
/frameworks/support/compat/tests/java/android/support/v4/util/
H A DSimpleArrayMapTest.java35 SimpleArrayMap<String, String> map = new SimpleArrayMap<>(); field in class:SimpleArrayMapTest
52 map.put(String.format("key %d", i++), "B_DONT_DO_THAT");
70 map.clear();
90 map.put(String.format("key %d", i++), "B_DONT_DO_THAT");
92 map.clear();
/frameworks/support/exifinterface/src/android/support/media/
H A DExifInterface.java3067 private boolean isThumbnail(HashMap map) throws IOException { argument
3068 ExifAttribute imageLengthAttribute = (ExifAttribute) map.get(TAG_IMAGE_LENGTH);
3069 ExifAttribute imageWidthAttribute = (ExifAttribute) map.get(TAG_IMAGE_WIDTH);
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentTransition.java138 * @return A map from the initial shared element name to the final shared element name
188 * @param nameOverrides A map of the shared element names from the starting fragment to
283 * @param nameOverrides A map of the shared element names from the starting fragment to
459 * @param nameOverrides A map of the shared element names from the starting fragment to
588 * @param nameOverrides A map of the shared element names from the starting fragment to
691 * @param nameOverrides A map of the shared element names from the starting fragment to
747 * @param nameOverrides A map of the shared element names from the starting fragment to
806 * Utility to find the String key in {@code map} that maps to {@code value}.
808 private static String findKeyForValue(ArrayMap<String, String> map, String value) { argument
809 final int numElements = map
[all...]
H A DFragmentTransitionCompat21.java382 * stores them in {@code namedViews} map with the name as the key.
420 * Utility to find the String key in {@code map} that maps to {@code value}.
422 private static String findKeyForValue(Map<String, String> map, String value) { argument
423 for (Map.Entry<String, String> entry : map.entrySet()) {
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
H A DVolumeLoader.java33 HashMap<String, Properties> map = new HashMap<String, Properties>(); field in class:VolumeLoader
38 map.put(Mandelbulb.NAME,null);
39 map.put(Droid.NAME,null);
47 map.put(prop[i].getProperty("name"), prop[i]);
53 String [] ret = map.keySet().toArray(new String[map.size()]);
65 Properties p = map.get(name);
/frameworks/rs/
H A DrsClosure.cpp132 auto map = p.second; local
133 for (const auto& p1 : *map) {
H A DrsMap.h92 next = map->bucket[bucket_index];
105 map == other.map;
110 map != other.map;
118 iterator(size_t index, LinkNode* n, const Map* m) : bucket_index(index), node(n), map(m) {}
123 const Map* map; member in class:android::renderscript::Map::iterator
/frameworks/rs/rsov/driver/
H A DrsovScript.cpp136 std::map<std::string, int> *GA2ID)
603 // The result is stored in a refence to a map<string, int>
606 ParseMD(std::string s, std::map<std::string, int> &map) argument
607 : mString(s), mMapping(map) {}
664 std::map<std::string, int> &mMapping;
671 ExtractRSoVMD() : mGAMapping(new std::map<std::string, int>) {}
679 std::map<std::string, int> *takeMapping(void) { return mGAMapping.release(); }
682 std::unique_ptr<std::map<std::string, int> > mGAMapping;
/frameworks/rs/script_api/
H A DGenerateDocumentation.cpp153 map<string, DetailedFunctionEntry>* entries) {
286 static void writeSummaryTables(GeneratedFile* file, const map<string, Constant*>& constants, argument
287 const map<string, Type*>& types,
288 const map<string, Function*>& functions,
562 map<string, DetailedFunctionEntry> entries;
H A DSpecification.cpp802 // Read the specification, adding the definitions to the global functions map.
870 // Returns the named entry in the map. Creates it if it's not there.
872 T* findOrCreate(const string& name, map<string, T*>* map, bool* created) { argument
873 auto iter = map->find(name);
874 if (iter != map->end()) {
880 map->insert(pair<string, T*>(name, f));
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduParser.java784 HashMap<Integer, Object> map =
787 parseContentType(pduDataStream, map);
805 mStartParam = (byte[]) map.get(PduPart.P_START);
808 mTypeParam= (byte[]) map.get(PduPart.P_TYPE);
854 HashMap<Integer, Object> map = new HashMap<Integer, Object>();
855 byte[] contentType = parseContentType(pduDataStream, map);
863 byte[] name = (byte[]) map.get(PduPart.P_NAME);
869 Integer charset = (Integer) map.get(PduPart.P_CHARSET);
1337 * @param map to store parameters of Content-Type field
1341 HashMap<Integer, Object> map, Intege
1340 parseContentTypeParams(ByteArrayInputStream pduDataStream, HashMap<Integer, Object> map, Integer length) argument
1523 parseContentType(ByteArrayInputStream pduDataStream, HashMap<Integer, Object> map) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java17 package android.bluetooth.client.map;
H A DBluetoothMapBmessageBuilder.java17 package android.bluetooth.client.map;

Completed in 213 milliseconds

123456