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

  /external/apache-harmony/luni/src/test/api/common/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");
  /frameworks/base/drm/java/android/drm/
DrmStore.java 82 public static final int CONTENT = 0x01;
94 * Defines playback states for content.
129 * Defines actions that can be performed on rights-protected content.
137 * The rights-protected content can be played.
141 * The rights-protected content can be set as a ringtone.
145 * The rights-protected content can be transferred.
149 * The rights-protected content can be set as output.
153 * The rights-protected content can be previewed.
157 * The rights-protected content can be executed.
161 * The rights-protected content can be displayed
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
SignatureTest.java 119 private static final byte[] CONTENT = hexToBytes(
159 sig.update(CONTENT);
  /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/apache-harmony/nio/src/test/java/common/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...]
  /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) ||
  /frameworks/base/include/drm/
drm_framework_common.h 109 * Field specifies the protected content type
111 static const int CONTENT = 0x01;
149 * Defines actions that can be performed on protected content
161 * Constant field signifies that the content can be played
165 * Constant field signifies that the content can be set as ring tone
169 * Constant field signifies that the content can be transfered
173 * Constant field signifies that the content can be set as output
181 * Constant field signifies that the content can be executed
185 * Constant field signifies that the content can displayed
207 * Constant field signifies that the rights are expired for the content
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
LinkMovementMethodTest.java 52 private static final String CONTENT = "clickable\nunclickable\nclickable";
73 // Set the content view with a text view which contains 3 lines,
75 mView.setText(CONTENT, BufferType.SPANNABLE);
85 mClickable0 = markClickable(0, CONTENT.indexOf('\n'));
87 mClickable1 = markClickable(CONTENT.lastIndexOf('\n'), CONTENT.length());
  /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/base/core/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;
42 * EmailContent is the superclass of the various classes of content stored by EmailProvider.
45 * methods for saving and retrieving content from the Provider.
68 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY)
151 T content = klass.newInstance(); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 19 import com.android.common.content.SyncStateContentProviderHelper;
21 import android.content.ContentResolver;
22 import android.content.ContentValues;
23 import android.content.Context;
24 import android.content.pm.ApplicationInfo;
25 import android.content.pm.PackageManager;
26 import android.content.pm.PackageManager.NameNotFoundException;
27 import android.content.res.Resources;
86 * {@link android.content.ContentProvider} users get the same reference.
607 public static final String CONTENT = "content"
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
assyntax.h 300 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 

Completed in 1157 milliseconds