HomeSort by relevance Sort by last modified time
    Searched defs:CONTENT (Results 1 - 25 of 37) sorted by null

1 2

  /development/samples/training/threadsample/src/com/example/android/threadsample/
RSSPullParser.java 24 import android.content.ContentValues;
39 // An attribute value indicating that the element contains media content
40 private static final String CONTENT = "media:content";
147 // If it's CONTENT
148 if (eventName.equalsIgnoreCase(CONTENT)) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/luni/tests/java/util/
ScannerParseLargeFileBenchmarkTest.java 43 static final char[] CONTENT = "large file!\n".toCharArray();
67 buf[i] = CONTENT[(i + position) % CONTENT.length];
71 position = (length + position) % CONTENT.length;
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 19 import android.content.ContentProvider;
20 import android.content.ContentProviderDatabaseHelper;
21 import android.content.UriMatcher;
22 import android.content.Context;
28 import android.content.ContentValues;
33 // Content Provider for RSS feed information. Each row describes a single
56 public static final Uri CONTENT_URI = Uri.parse( "content://my_rss_item/rssitem");
63 public static final String CONTENT = "rawcontent";
79 CONTENT + " TEXT," +
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Attribute.java 28 public static final Attribute CONTENT = new AttributeImpl ("CONTENT");
  /external/smack/src/com/kenai/jbosh/
Attributes.java 41 static final BodyQName CONTENT = BodyQName.createBOSH("content");
  /frameworks/base/drm/java/android/drm/
DrmStore.java 29 * on right-protected content. The constants defined in this interface
59 * the rights-protected content.
68 * the rights-protected content.
102 public static final int CONTENT = 0x01;
120 * Defines playback states for content.
161 * Defines actions that can be performed on rights-protected content.
169 * The rights-protected content can be played.
173 * The rights-protected content can be set as a ringtone.
177 * The rights-protected content can be transferred.
181 * The rights-protected content can be set as output
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapStringTest.java 129 final String CONTENT = "abc";
130 doLiteralTest(new ImapMemoryLiteral(createFixedLengthInputStream(CONTENT)), CONTENT);
135 final String CONTENT = "def";
136 ImapTempFileLiteral l = new ImapTempFileLiteral(createFixedLengthInputStream(CONTENT));
137 doLiteralTest(l, CONTENT);
145 private static void doLiteralTest(ImapString s, String content) throws IOException {
146 assertEquals(content, s.getString());
147 assertEquals(content, Utility.fromAscii(IOUtils.toByteArray(s.getAsStream())));
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 20 #include "content/browser/browser_thread.h"
21 #include "content/common/notification_source.h"
38 "<META HTTP-EQUIV=\"Content-Type\""
39 " CONTENT=\"text/html; charset=UTF-8\">\r\n"
152 // Actual content, eg foo in <h1>foo</h2>.
153 CONTENT
202 case CONTENT:
271 !Write(title, CONTENT) ||
307 if (!Write(title, CONTENT) ||
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer.cc 24 #include "content/public/browser/browser_thread.h"
25 #include "content/public/browser/notification_source.h"
33 using content::BrowserThread;
45 "<META HTTP-EQUIV=\"Content-Type\""
46 " CONTENT=\"text/html; charset=UTF-8\">\r\n"
163 // Actual content, eg foo in <h1>foo</h2>.
164 CONTENT
219 case CONTENT:
288 !Write(title, CONTENT) ||
325 if (!Write(title, CONTENT) ||
    [all...]
  /frameworks/av/include/drm/
drm_framework_common.h 110 * Field specifies the protected content type
112 static const int CONTENT = 0x01;
150 * Defines actions that can be performed on protected content
162 * Constant field signifies that the content can be played
166 * Constant field signifies that the content can be set as ring tone
170 * Constant field signifies that the content can be transfered
174 * Constant field signifies that the content can be set as output
182 * Constant field signifies that the content can be executed
186 * Constant field signifies that the content can displayed
208 * Constant field signifies that the rights are expired for the content
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelLockingTest.java 44 private final String CONTENT = "The best things in life are nearest: Breath in your nostrils, light in your eyes, "
52 // Create a three temporary files with content.
58 writer.write(CONTENT);
FileChannelTest.java 57 private static final String CONTENT = "MYTESTSTRING needs to be a little long";
68 CONTENT_AS_BYTES = CONTENT.getBytes("iso8859-1");
75 private static final int CONTENT_LENGTH = CONTENT.length();
105 // to read content from FileChannel
313 * @param size the content size to be written
323 // we don't care about content - just need a particular file size
446 // reads the content left to readBuffer through read only file channel
451 // asserts the content read is the part which stays beyond the POSITION
483 // constructs the expected result which has content[0... POSITION] plus
484 // content[0...length()
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
LinkMovementMethodTest.java 46 private static final String CONTENT = "clickable\nunclickable\nclickable";
67 // Set the content view with a text view which contains 3 lines,
69 mView.setText(CONTENT, BufferType.SPANNABLE);
79 mClickable0 = markClickable(0, CONTENT.indexOf('\n'));
81 mClickable1 = markClickable(CONTENT.lastIndexOf('\n'), CONTENT.length());
  /libcore/luni/src/test/java/libcore/java/security/
SignatureTest.java 151 private static final byte[] CONTENT = hexToBytes(
191 sig.update(CONTENT);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 12 protected State state = State.CONTENT;
169 case 0: state = State.CONTENT; break;
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldFileChannelTest.java 43 private static final String CONTENT = "MYTESTSTRING needs to be a little long";
55 private static final int CONTENT_LENGTH = CONTENT.length();
57 private static final byte[] CONTENT_AS_BYTES = CONTENT.getBytes();
73 // to read content from FileChannel
190 * @param size the content size to be written
200 // we don't care about content - just need a particular file size
778 String test = CONTENT.substring(pos);
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduHeaders.java 77 public static final int CONTENT = 0xAE;
135 * X-Mms-DRM-Content |
298 * X-Mms-Content-Class field types.
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 19 import android.content.ContentProviderOperation;
20 import android.content.ContentProviderResult;
21 import android.content.ContentResolver;
22 import android.content.ContentUris;
23 import android.content.ContentValues;
24 import android.content.Context;
25 import android.content.OperationApplicationException;
26 import android.content.res.Resources;
46 * EmailContent is the superclass of the various classes of content stored by EmailProvider.
49 * methods for saving and retrieving content from the Provider
211 T content = klass.newInstance(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
assyntax.h 338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */
    [all...]
  /external/mesa3d/src/mesa/x86/
assyntax.h 338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 19 import android.content.ContentResolver;
20 import android.content.ContentValues;
21 import android.content.Context;
22 import android.content.Intent;
23 import android.content.pm.ApplicationInfo;
24 import android.content.pm.PackageManager;
25 import android.content.pm.PackageManager.NameNotFoundException;
26 import android.content.res.Resources;
80 import com.android.common.content.SyncStateContentProviderHelper;
96 * {@link android.content.ContentProvider} users get the same reference
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.debug.core_3.6.0.v20100519.jar 
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
  /external/emma/lib/
emma.jar 
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 

Completed in 1660 milliseconds

1 2