Searched defs:content (Results 1 - 25 of 45) sorted by relevance

12

/packages/inputmethods/LatinIME/tools/dicttool/compat/android/content/
H A DContext.java17 package android.content;
H A DSharedPreferences.java17 package android.content;
/packages/apps/UnifiedEmail/src/com/android/mail/content/
H A DCursorCreator.java17 package com.android.mail.content;
H A DObjectCursor.java17 package com.android.mail.content;
/packages/services/Car/car-support-lib/src/android/support/car/content/pm/
H A DCarPackageManager.java17 package android.support.car.content.pm;
H A DCarPackageManagerEmbedded.java17 package android.support.car.content.pm;
26 private final android.car.content.pm.CarPackageManager mManager;
29 mManager = (android.car.content.pm.CarPackageManager) manager;
33 public android.car.content.pm.CarPackageManager getManager() {
/packages/apps/Email/provider_src/com/android/email/provider/
H A DUtilities.java20 import android.content.ContentUris;
21 import android.content.ContentValues;
22 import android.content.Context;
190 public static void saveOrUpdate(EmailContent content, Context context) { argument
191 if (content.isSaved()) {
192 content.update(context, content.toContentValues());
194 content.save(context);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DDialogActivity.java40 mContentFrame = (FrameLayout) findViewById(R.id.content);
56 public void setDialogContent(View content) { argument
58 mContentFrame.addView(content);
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/
H A DImapStringTest.java145 private static void doLiteralTest(ImapString s, String content) throws IOException { argument
146 assertEquals(content, s.getString());
147 assertEquals(content, Utility.fromAscii(IOUtils.toByteArray(s.getAsStream())));
H A DImapTestUtils.java101 public static FixedLengthInputStream createFixedLengthInputStream(String content) { argument
103 ByteArrayInputStream in = new ByteArrayInputStream(Utility.toAscii(content + "#trailing"));
104 return new FixedLengthInputStream(in, content.length());
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/exchange/
H A DExchangeAttachment.java27 public String content; // Not currently used field in class:ExchangeAttachment
37 content = in.readString();
54 dest.writeString(content);
/packages/services/Car/car-lib/src/android/car/content/pm/
H A DCarAppBlockingPolicy.java17 package android.car.content.pm;
H A DCarAppBlockingPolicyService.java16 package android.car.content.pm;
20 import android.content.Intent;
41 "android.car.content.pm.CarAppBlockingPolicyService";
H A DAppBlockingPackageInfo.java16 package android.car.content.pm;
21 import android.content.pm.Signature;
H A DCarPackageManager.java17 package android.car.content.pm;
24 import android.content.Context;
/packages/apps/Settings/src/com/android/settings/dashboard/conditional/
H A DConditionAdapterUtils.java66 View card = view.itemView.findViewById(R.id.content);
82 animateChange(view.itemView, view.itemView.findViewById(R.id.content),
110 private static void animateChange(final View view, final View content, argument
114 final int beforeBottom = content.getBottom();
123 final int afterBottom = content.getBottom();
125 final ObjectAnimator animator = ObjectAnimator.ofInt(content, "bottom",
/packages/apps/TV/src/com/android/tv/dvr/ui/
H A DRecordingCardView.java19 import android.content.Context;
62 mContentView = (TextView) findViewById(R.id.content);
69 void setContent(CharSequence content) { argument
70 mContentView.setText(content);
/packages/apps/Tag/src/com/android/apps/tag/record/
H A DMimeRecord.java24 import android.content.Context;
42 private MimeRecord(String mimeType, byte[] content) { argument
44 Preconditions.checkNotNull(content);
45 mContent = Arrays.copyOf(content, content.length);
H A DVCardRecord.java33 import android.content.ActivityNotFoundException;
34 import android.content.ContentUris;
35 import android.content.Context;
36 import android.content.Intent;
37 import android.content.pm.PackageManager;
38 import android.content.pm.ResolveInfo;
39 import android.content.res.AssetFileDescriptor;
79 private VCardRecord(byte[] content) { argument
80 mVCard = content;
90 // TODO: parse content an
[all...]
/packages/apps/Email/provider_src/com/android/email/
H A DLegacyConversions.java19 import android.content.ContentUris;
20 import android.content.ContentValues;
21 import android.content.Context;
426 final InputStream content;
430 content = new ByteArrayInputStream(att.mContentBytes);
437 content = null;
440 content = context.getContentResolver().openInputStream(contentUri);
447 if (content != null) {
448 addAttachmentPart(mp, mimeType, contentSize, filename, contentId, content);
470 * @param contentType The content
495 addAttachmentPart(final Multipart mp, final String contentType, final Long contentSize, final String filename, final String contentId, final InputStream content) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAbstractSlotRenderer.java19 import android.content.Context;
47 Texture content, int width, int height, int rotation) {
50 // The content is always rendered in to the largest square that fits
59 // Fit the content into the box
61 (float) width / content.getWidth(),
62 (float) height / content.getHeight());
64 content.draw(canvas, 0, 0);
46 drawContent(GLCanvas canvas, Texture content, int width, int height, int rotation) argument
H A DGLRoot.java19 import android.content.Context;
43 public void setContentPane(GLView content); argument
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DInsertNewMessageAction.java19 import android.content.Context;
348 private MessageData insertSendingSmsMessage(final MessageData content, final int subId, argument
375 final String messageText = content.getMessageText();
392 content.getSelfId(), messageText);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DHttpHelper.java36 public String post(String url, Map<String,String> requestHeaders, String content) argument
109 public void setContent(String content) { argument
110 mContent = content;
H A DJavaNetHttpHelper.java59 * Executes a GET request and returns the response content.
62 * @return The response content. This is the empty string if the response
63 * contained no content.
72 * Executes a GET request and returns the response content.
76 * @return The response content. This is the empty string if the response
77 * contained no content.
101 public String post(String url, Map<String,String> requestHeaders, String content) argument
109 Integer.toString(content == null ? 0 : content.length()));
111 c.setDoOutput(content !
[all...]

Completed in 652 milliseconds

12