HomeSort by relevance Sort by last modified time
    Searched refs:NOTE (Results 1 - 25 of 54) sorted by null

1 2 3

  /development/samples/NotePad/src/com/example/android/notepad/
NotePad.java 46 public static final String CONTENT_TYPE = "vnd.android.cursor.dir/vnd.google.note";
49 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single note.
51 public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/vnd.google.note";
59 * The title of the note
65 * The note itself
68 public static final String NOTE = "note";
71 * The timestamp for when the note was created
77 * The timestamp for when the note was last modified
NotePadProvider.java 40 * Provides access to a database of notes. Each note has a title, the note
74 + NoteColumns.NOTE + " TEXT,"
183 if (values.containsKey(NoteColumns.NOTE) == false) {
184 values.put(NoteColumns.NOTE, "");
188 long rowId = db.insert(NOTES_TABLE_NAME, NoteColumns.NOTE, values);
253 sNotesProjectionMap.put(NoteColumns.NOTE, NoteColumns.NOTE);
NoteEditor.java 42 * A generic activity for editing a note in a database. This can be used
43 * either to simply view a note {@link Intent#ACTION_VIEW}, view and edit a note
44 * {@link Intent#ACTION_EDIT}, or create a new note {@link Intent#ACTION_INSERT}.
50 * Standard projection for the interesting columns of a normal note.
54 NoteColumns.NOTE, // 1
57 /** The index of the note column */
126 // If we were unable to create a new note, then just finish
130 Log.e(TAG, "Failed to insert new note into " + getIntent().getData());
149 // The text view for our note, identified by its ID in the XML file
188 String note = mCursor.getString(COLUMN_INDEX_NOTE); local
    [all...]
  /external/strace/
util.c 1331 /* Note: this is only true for the `clone' system call, which handles
    [all...]
  /bionic/libthread_db/
Android.mk 26 # NOTE: Using --no-undefined results in a missing symbol that is defined inside
  /bionic/libdl/
Android.mk 9 # NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
31 # NOTE: libdl needs __aeabi_unwind_cpp_pr0 from libgcc.a but libgcc.a needs a
  /external/elfutils/libebl/
eblsegmenttypename.c 42 PTYPE (NOTE),
eblsectiontypename.c 44 KNOWNSTYPE (NOTE),
  /development/ndk/platforms/android-9/samples/native-activity/
Android.mk 19 # NOTE: This is a helper to build this sample code using the
  /bionic/libc/regex/
engine.c 116 #define NOTE(str) { if (m->eflags&REG_TRACE) (void)printf("=%s\n", (str)); }
121 #define NOTE(s) /* nothing */
194 NOTE("finding start");
215 NOTE("dissecting");
226 NOTE("backref dissect");
238 NOTE("backoff");
249 NOTE("backoff dissect");
257 NOTE("false alarm");
555 /* note that the ss++ gets us past the O_CH */
732 break; /* NOTE BREAK OUT *
    [all...]
  /development/simulator/app/
Android.mk 77 # NOTE: OS X is no longer supported
  /external/v8/test/mjsunit/
with-leave.js 51 // NOTE: This checks that the object containing x has been
const-redecl.js 52 // NOTE: TestGlobal usually only tests the given string in the context
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardJapanizationTests.java 25 import android.provider.ContactsContract.CommonDataKinds.Note;
405 entry.addContentValues(Note.CONTENT_ITEM_TYPE)
406 .put(Note.NOTE, "note1");
407 entry.addContentValues(Note.CONTENT_ITEM_TYPE)
408 .put(Note.NOTE, "note2");
409 entry.addContentValues(Note.CONTENT_ITEM_TYPE)
410 .put(Note.NOTE, "note3")
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 333 echo perf: NOTE: $MSG
  /ndk/build/core/
default-build-commands.mk 18 # NOTE: Ensure that TARGET_LIBGCC is placed after all private objects
add-application.mk 67 # NOTE: APP_PLATFORM is an experimental feature for now.
147 # NOTE: To make unit-testing simpler, handle the case where there is no manifest.
setup-toolchain.mk 24 # NOTE: If NDK_TOOLCHAIN is defined, we're going to use it.
82 # Do the same for TOOLCHAIN_PREFIX. Note that we must chop the version
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_voice_gain_gnu.s 79 @ NOTE: instructions are reordered to reduce the effect of latency
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_voice_gain_gnu.s 79 @ NOTE: instructions are reordered to reduce the effect of latency
  /external/v8/src/
v8natives.js 141 // NOTE: We don't care about the character casing.
745 // NOTE: Both Boolean objects and values can enter here as
754 // NOTE: Both Boolean objects and values can enter here as
797 // NOTE: Both Number objects and values can enter here as
829 // NOTE: Both Number objects and values can enter here as
runtime.js 58 // NOTE: We use iteration instead of recursion, because it is
78 // NOTE: This checks for both null and undefined.
643 // NOTE: Setting the prototype for Array must take place as early as
  /external/libvpx/vp8/encoder/arm/neon/
fastfdct4x4_neon.asm 20 ;NOTE:
fastfdct8x4_neon.asm 20 ;NOTE:
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 41 import android.provider.ContactsContract.CommonDataKinds.Note;
171 mNoteMimetypeId = mDbHelper.getMimeTypeId(Note.CONTENT_ITEM_TYPE);
481 Note.NOTE +
486 int NOTE = 3;
672 bindString(insert, NoteInsert.NOTE, notes);
    [all...]

Completed in 355 milliseconds

1 2 3