Searched refs:data (Results 226 - 250 of 944) sorted by relevance

1234567891011>>

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAccountFeedbackActivity.java82 public void onAccountLoadCallbackFinished(ObjectCursor<Account> data) { argument
83 if (data != null && data.moveToFirst()) {
84 mAccount = data.getModel();
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
H A Dver2_pt_node_array_reader.cpp34 mBuffer.data(), &readingPos);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
H A DInputsActivity.java176 Bundle data = new Bundle();
177 data.putString(KEY_ID, info.getId());
178 return data;
182 Bundle data = createData(info);
183 data.putString(KEY_LABEL, label);
184 return data;
192 final int action, final Bundle data, final boolean checked) {
196 Bundle on = (data == null) ? new Bundle() : new Bundle(data);
198 Bundle off = (data
191 getOnOffLayout(final int titleResId, final int descResId, final int action, final Bundle data, final boolean checked) argument
409 displayCustomLabelActivity(Bundle data) argument
417 onActivityResult(int requestCode, int resultCode, Intent data) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DBreadCrumbView.java46 public void onTop(BreadCrumbView view, int level, Object data); argument
125 return c.data;
144 mController.onTop(this, mCrumbs.size(), getTopCrumb().data);
151 public View pushView(String name, Object data) { argument
152 return pushView(name, true, data);
155 public View pushView(String name, boolean canGoBack, Object data) { argument
156 Crumb crumb = new Crumb(name, canGoBack, data);
161 public void pushView(View view, Object data) { argument
162 Crumb crumb = new Crumb(view, true, data);
349 public Object data; field in class:BreadCrumbView.Crumb
[all...]
H A DBrowserBackupAgent.java60 public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data, argument
91 public void onRestore(BackupDataInput data, int appVersionCode, argument
96 while (data.readNextHeader()) {
97 if (BOOKMARK_KEY.equals(data.getKey())) {
98 // Read the flattened bookmark data into a temp file
99 crc = copyBackupToFile(data, tmpfile, data.getDataSize());
109 // all the data successfully, we don't touch the bookmarks table
146 Log.w(TAG, "Bad backup data; not restoring");
187 private long copyBackupToFile(BackupDataInput data, Fil argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DInstallShortcutReceiver.java144 public void onReceive(Context context, Intent data) { argument
145 if (!ACTION_INSTALL_SHORTCUT.equals(data.getAction())) {
149 PendingInstallShortcutInfo info = new PendingInstallShortcutInfo(data, context);
159 public static ShortcutInfo fromShortcutIntent(Context context, Intent data) { argument
160 PendingInstallShortcutInfo info = new PendingInstallShortcutInfo(data, context);
248 final Intent data; field in class:InstallShortcutReceiver.PendingInstallShortcutInfo
257 public PendingInstallShortcutInfo(Intent data, Context context) { argument
258 this.data = data;
261 launchIntent = data
[all...]
/packages/apps/Camera2/src/com/android/camera/filmstrip/
H A DFilmstripController.java22 import com.android.camera.data.FilmstripItem;
165 * @param data an item which can be present in the filmstrip.
169 public boolean isVisible(FilmstripItem data); argument
177 * Callback when the data item is promoted. A data is promoted if the user
178 * swipe up a data vertically.
180 * @param adapterIndex The ID of the promoted data.
185 * Callback when the data item is demoted. A data is promoted if the user
186 * swipe down a data verticall
[all...]
/packages/apps/Email/src/com/android/email/activity/setup/
H A DOAuthAuthenticationActivity.java172 public Loader<AuthenticationResult> onCreateLoader(int id, Bundle data) { argument
174 final String providerId = data.getString(EXTRA_PROVIDER_ID);
175 final String code = data.getString(EXTRA_AUTHENTICATION_CODE);
183 AuthenticationResult data) {
184 if (data == null) {
192 intent.putExtra(EXTRA_OAUTH_ACCESS_TOKEN, data.mAccessToken);
193 intent.putExtra(EXTRA_OAUTH_REFRESH_TOKEN, data.mRefreshToken);
194 intent.putExtra(EXTRA_OAUTH_EXPIRES_IN, data.mExpiresInSeconds);
182 onLoadFinished(Loader<AuthenticationResult> loader, AuthenticationResult data) argument
/packages/apps/Exchange/src/com/android/exchange/provider/
H A DGalResult.java41 public void addGalData(GalData data) { argument
42 galData.add(data);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DMediaSource.java17 package com.android.gallery3d.data;
21 import com.android.gallery3d.data.MediaSet.ItemConsumer;
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetTypeChooser.java35 Intent data = new Intent()
37 setResult(RESULT_OK, data);
/packages/apps/Gallery2/src/com/android/photos/shims/
H A DMediaSetLoader.java26 import com.android.gallery3d.data.ContentListener;
27 import com.android.gallery3d.data.DataManager;
28 import com.android.gallery3d.data.MediaItem;
29 import com.android.gallery3d.data.MediaObject;
30 import com.android.gallery3d.data.MediaSet;
31 import com.android.gallery3d.data.Path;
32 import com.android.gallery3d.data.MediaSet.SyncListener;
34 import com.android.photos.data.AlbumSetLoader;
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DGalleryBoundCursorLoader.java25 import com.android.messaging.datamodel.data.GalleryGridItemData;
26 import com.android.messaging.datamodel.data.MessagePartData;
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DPersonItemView.java33 import com.android.messaging.datamodel.data.PersonItemData;
34 import com.android.messaging.datamodel.data.PersonItemData.PersonItemDataListener;
44 * between the underlying data (e.g. ParticipantData) and what the UI wants (e.g. display name).
49 void onPersonClicked(PersonItemData data); argument
50 boolean onPersonLongClicked(PersonItemData data); argument
91 * Binds to a person item data which will provide us info to be displayed.
97 // Don't rebind if we are requesting the same data.
228 public void onPersonDataUpdated(final PersonItemData data) { argument
229 mBinding.ensureBound(data);
234 public void onPersonDataFailed(final PersonItemData data, fina argument
[all...]
/packages/apps/Nfc/src/com/android/nfc/echoserver/
H A DEchoServer.java45 * On LLCP link activation, we try to receive data on a pre-determined
46 * connection-less SAP. Like the connection-based server, all data in
47 * the buffer is echoed back to the SAP from which the data originated
77 public void write(byte[] data); argument
92 * if the nfcpy client sends a service data unit of 48 bytes
95 * Android LLCP implementation simply pushes all received data
97 * boundaries, not knowing how much data to put in a single
121 if (DBG) Log.d(TAG, "Dumping data unit");
133 // Special case: also send a zero-sized data unit
138 byte[] data
252 write(byte[] data) argument
344 write(byte[] data) argument
[all...]
/packages/apps/Nfc/tests/src/com/android/nfc/
H A DMockLlcpSocket.java43 public void send(byte[] data) throws IOException { argument
49 mPairedSocket.mReceivedPackets.add(data);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DMessagingException.java75 // Exception type-specific data
113 * Constructs a MessagingException with an exceptionType, a message, and data
116 * @param data exception-type specific data for the exception (or null)
118 public MessagingException(int exceptionType, String message, Object data) { argument
121 mExceptionData = data;
133 * Return the exception data. Will be null if not explicitly set.
135 * @return Returns the exception data.
/packages/inputmethods/LatinIME/native/jni/
H A Drun-tests.sh69 target_test_local=$ANDROID_PRODUCT_OUT/data/nativetest/$target_test_name/$target_test_name
70 target_test_device=/data/nativetest/$target_test_name/$target_test_name
/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dbyte_array_view.h41 AK_FORCE_INLINE const uint8_t *data() const { function in class:latinime::ReadOnlyByteArrayView
73 AK_FORCE_INLINE uint8_t *data() const { function in class:latinime::ReadWriteByteArrayView
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DAlbumDataAdapter.java64 PhotoSource.AlbumData data = getItem(position);
65 return mSettings.isAlbumEnabled(data.id);
87 PhotoSource.AlbumData data = getItem(position);
93 checkBox.setTag(R.id.data_payload, data);
99 textView.setText(data.title);
174 final PhotoSource.AlbumData data =
178 mSettings.setAlbumEnabled(data.id, isChecked);
180 if (DEBUG) Log.i(TAG, data.title + " is " +
/packages/services/Telephony/src/com/android/phone/common/mail/
H A DMessagingException.java74 // Exception type-specific data
112 * Constructs a MessagingException with an exceptionType, a message, and data
115 * @param data exception-type specific data for the exception (or null)
117 public MessagingException(int exceptionType, String message, Object data) { argument
120 mExceptionData = data;
132 * Return the exception data. Will be null if not explicitly set.
134 * @return Returns the exception data.
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFragment.java73 import com.android.messaging.datamodel.data.ConversationData;
74 import com.android.messaging.datamodel.data.ConversationData.ConversationDataListener;
75 import com.android.messaging.datamodel.data.ConversationMessageData;
76 import com.android.messaging.datamodel.data.ConversationParticipantsData;
77 import com.android.messaging.datamodel.data.DraftMessageData;
78 import com.android.messaging.datamodel.data.DraftMessageData.DraftMessageDataListener;
79 import com.android.messaging.datamodel.data.MessageData;
80 import com.android.messaging.datamodel.data.MessagePartData;
81 import com.android.messaging.datamodel.data.ParticipantData;
82 import com.android.messaging.datamodel.data
839 onConversationMessagesCursorUpdated(final ConversationData data, final Cursor cursor, final ConversationMessageData newestMessage, final boolean isSync) argument
1190 onConversationParticipantDataLoaded(final ConversationData data) argument
1208 onSubscriptionListDataLoaded(final ConversationData data) argument
1228 onActivityResult(final int requestCode, final int resultCode, final Intent data) argument
1638 onDraftChanged(final DraftMessageData data, final int changeFlags) argument
1649 onDraftAttachmentLimitReached(final DraftMessageData data) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapSmsPdu.java60 * coded according to 24.011. The IEI is not to be used, as the fixed order of the data makes a type 4 LV
79 SmsPdu(byte[] data, int type){ argument
80 this.mData = data;
85 this.mUserDataMsgOffset = gsmSubmitGetTpUdOffset(); // Assume no user data header
89 * Create a pdu instance based on the data generated on this device.
90 * @param data
95 SmsPdu(byte[]data, int encoding, int type, int languageTable){
96 this.mData = data;
119 /** The user data message payload size in bytes - excluding the user data heade
603 decodePdu(byte[] data, int type) argument
618 gsmStripOffScAddress(byte[] data) argument
630 gsmParseSubmitPdu(byte[] data) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/data/
H A DFilmstripItemUtils.java17 package com.android.camera.data;
32 * An utility class for data in content provider.
60 * @param is An input stream with the data of the bitmap.
146 // Not called often because most modes save image data non-rotated.
167 byte[] data = retriever.getEmbeddedPicture();
168 if (data != null) {
169 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInstallWidgetReceiver.java59 * A simple data class that contains per-item information that the adapter below can reference.
84 public WidgetListAdapter(Launcher l, String mimeType, ClipData data, argument
89 mClipData = data;
140 final WidgetMimeTypeHandlerData data = mActivities.get(position);
141 final ResolveInfo resolveInfo = data.resolveInfo;
142 final AppWidgetProviderInfo widgetInfo = data.widgetInfo;

Completed in 760 milliseconds

1234567891011>>