Searched refs:put (Results 126 - 150 of 572) sorted by relevance

1234567891011>>

/frameworks/av/include/drm/
H A DDrmMetadata.h94 status_t put(const String8* key, const char* value);
/frameworks/base/core/java/android/app/
H A DApplicationLoaders.java63 mLoaders.put(zip, pathClassloader);
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java259 * @param cursor The cursor that contains the data to put in the window.
581 * @param values The {@link ContentValues} to put the value into, with the field as the key
606 * @param values The {@link ContentValues} to put the value into, with the field as the key
611 values.put(key, cursor.getString(cursor.getColumnIndexOrThrow(field)));
619 * @param values The {@link ContentValues} to put the value into, with the field as the key
630 * @param values The {@link ContentValues} to put the value into, with the field as the key
637 values.put(key, cursor.getInt(colIndex));
639 values.put(key, (Integer) null);
648 * @param values The {@link ContentValues} to put the value into, with the field as the key
660 * @param values The {@link ContentValues} to put th
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java478 cmd.put( (byte) 0xC1 );
479 cmd.put( (byte) blockIndex );
506 cmd.put( (byte) 0xC0 );
507 cmd.put( (byte) blockIndex );
/frameworks/base/libs/hwui/
H A DFboCache.cpp81 bool FboCache::put(GLuint fbo) { function in class:android::uirenderer::FboCache
H A DLayerCache.h69 bool put(Layer* layer);
H A DRenderBufferCache.h59 bool put(RenderBuffer* buffer);
/frameworks/base/location/java/android/location/
H A DCountryDetector.java128 mListeners.put(listener, transport);
/frameworks/base/media/java/android/media/
H A DCameraProfile.java85 sCache.put(cameraId, levels);
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java186 mStorageMap.put(storage.getPath(), storage);
286 values.put(Files.FileColumns.DATA, path);
287 values.put(Files.FileColumns.FORMAT, format);
288 values.put(Files.FileColumns.PARENT, parent);
289 values.put(Files.FileColumns.STORAGE_ID, storageId);
290 values.put(Files.FileColumns.SIZE, size);
291 values.put(Files.FileColumns.DATE_MODIFIED, modified);
323 values.put(Audio.Playlists.DATA, path);
324 values.put(Audio.Playlists.NAME, name);
325 values.put(File
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DKeyValueMap.java41 put(key, value);
H A DMutableFrameFormat.java93 mMetaData.put(key, value);
H A DOneShotScheduler.java64 scheduled.put(filter.getName(),1);
H A DStopWatchMap.java85 mStopWatches.put(stopWatchName, new StopWatch(stopWatchName));
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DGraphReader.java58 mReferences.put(name, object);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaInserterTest.java98 values.put("_data", "/mnt/sdcard/file" + ++mFilesCounter);
104 values.put("_data", "/mnt/sdcard/audio" + ++mAudioCounter);
110 values.put("_data", "/mnt/sdcard/video" + ++mVideoCounter);
116 values.put("_data", "/mnt/sdcard/image" + ++mImagesCounter);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageVerificationState.java73 mSufficientVerifierUids.put(uid, true);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentResolver.java86 mProviders.put(name, provider);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DShader.java55 mSourceParams.put(p.getParamName(), p);
/frameworks/base/tools/layoutlib/bridge/src/android/os/
H A DHandlerThread_Delegate.java62 sThreads.put(context, list);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DDelegateManager.java121 mDelegates.put(native_object, newDelegate);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DAdnRecordCache.java155 mUserWriteResponse.put(efid, response);
233 mUserWriteResponse.put(efid, response);
283 mAdnLikeWaiters.put(efid, waiters);
338 mAdnLikeFiles.put(efid, (ArrayList<AdnRecord>) ar.result);
/frameworks/support/v4/java/android/support/v4/content/
H A DWakefulBroadcastReceiver.java99 mActiveWakeLocks.put(id, wl);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java122 sImMap.put(Im.PROTOCOL_AIM, VCardConstants.PROPERTY_X_AIM);
123 sImMap.put(Im.PROTOCOL_MSN, VCardConstants.PROPERTY_X_MSN);
124 sImMap.put(Im.PROTOCOL_YAHOO, VCardConstants.PROPERTY_X_YAHOO);
125 sImMap.put(Im.PROTOCOL_ICQ, VCardConstants.PROPERTY_X_ICQ);
126 sImMap.put(Im.PROTOCOL_JABBER, VCardConstants.PROPERTY_X_JABBER);
127 sImMap.put(Im.PROTOCOL_SKYPE, VCardConstants.PROPERTY_X_SKYPE_USERNAME);
545 contentValuesListMap.put(key, contentValuesList);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java259 // the internal version), and put the content in the maps.
268 sRevRMap.put(resType, fullMap);
277 // if the object is an int[] we put it in sRArrayMap using an IntArray
280 sRArrayMap.put(new IntArray((int[]) f.get(null)), f.getName());
283 sRMap.put(value, Pair.of(resType, f.getName()));
284 fullMap.put(f.getName(), value);
557 * @param projectKey the key of the project, or null to put the bitmap in the framework cache.
565 sProjectBitmapCache.put(projectKey, map);
568 map.put(value, new SoftReference<Bitmap>(bmp));
570 sFrameworkBitmapCache.put(valu
[all...]

Completed in 666 milliseconds

1234567891011>>