/development/samples/NotePad/tests/src/com/example/android/notepad/ |
NotePadProviderTest.java | 49 Uri.withAppendedPath(NotePad.Notes.CONTENT_URI, "invalid"); 151 NotePad.Notes.TABLE_NAME, // the table name for the insert 152 NotePad.Notes.COLUMN_NAME_TITLE, // column set to null if empty values map 164 // Tests the MIME type for the notes table URI. 165 String mimeType = mMockResolver.getType(NotePad.Notes.CONTENT_URI); 166 assertEquals(NotePad.Notes.CONTENT_TYPE, mimeType); 169 mimeType = mMockResolver.getType(NotePad.Notes.LIVE_FOLDER_URI); 170 assertEquals(NotePad.Notes.CONTENT_TYPE, mimeType); 173 Uri noteIdUri = ContentUris.withAppendedId(NotePad.Notes.CONTENT_ID_URI_BASE, 1); 177 assertEquals(NotePad.Notes.CONTENT_ITEM_TYPE, mimeType) [all...] |
/development/samples/NotePad/src/com/example/android/notepad/ |
NotePadProvider.java | 51 * Provides access to a database of notes. Each note has a title, the note 82 NotePad.Notes._ID, // Projection position 0, the note's id 83 NotePad.Notes.COLUMN_NAME_NOTE, // Projection position 1, the note's content 84 NotePad.Notes.COLUMN_NAME_TITLE, // Projection position 2, the note's title 93 // The incoming URI matches the Notes URI pattern 94 private static final int NOTES = 1; 122 // Add a pattern that routes URIs terminated with "notes" to a NOTES operation 123 sUriMatcher.addURI(NotePad.AUTHORITY, "notes", NOTES); [all...] |
NotePad.java | 36 * Notes table contract 38 public static final class Notes implements BaseColumns { 41 private Notes() {} 46 public static final String TABLE_NAME = "notes"; 62 * Path part for the Notes URI 64 private static final String PATH_NOTES = "/notes"; 69 private static final String PATH_NOTE_ID = "/notes/"; 79 private static final String PATH_LIVE_FOLDER = "/live_folders/notes"; 101 * The content Uri pattern for a notes listing for live folders 111 * The MIME type of {@link #CONTENT_URI} providing a directory of notes [all...] |
TitleEditor.java | 45 NotePad.Notes._ID, // 0 46 NotePad.Notes.COLUMN_NAME_TITLE, // 1 144 values.put(NotePad.Notes.COLUMN_NAME_TITLE, mText.getText().toString());
|
NoteEditor.java | 61 NotePad.Notes._ID, 62 NotePad.Notes.COLUMN_NAME_TITLE, 63 NotePad.Notes.COLUMN_NAME_NOTE 201 * Using the URI passed in with the triggering Intent, gets the note or notes in 209 mUri, // The URI that gets multiple notes from the provider. 270 int colTitleIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE); 289 int colNoteIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE); 412 int colNoteIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE); 481 if (uri != null && NotePad.Notes.CONTENT_ITEM_TYPE.equals(cr.getType(uri))) { 496 int colNoteIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE) [all...] |
NotesLiveFolder.java | 66 liveFolderIntent.setData(NotePad.Notes.LIVE_FOLDER_URI); 94 = new Intent(Intent.ACTION_EDIT, NotePad.Notes.CONTENT_ID_URI_PATTERN);
|
NotesList.java | 43 * Displays a list of notes. Will display notes from the {@link Uri} 61 NotePad.Notes._ID, // 0 62 NotePad.Notes.COLUMN_NAME_TITLE, // 1 86 // accesses a list of notes. 88 intent.setData(NotePad.Notes.CONTENT_URI); 108 NotePad.Notes.DEFAULT_SORT_ORDER // Use the default sort order. 120 String[] dataColumns = { NotePad.Notes.COLUMN_NAME_TITLE } ; 145 * this Activity. Other applications that want to handle notes can "register" themselves in 147 * mimeTYpe NotePad.Notes.CONTENT_TYPE. If they do this, the code in onCreateOptionsMenu( [all...] |
/external/clang/include/clang/Frontend/ |
TextDiagnosticBuffer.h | 31 DiagList Errors, Warnings, Remarks, Notes; 42 const_iterator note_begin() const { return Notes.begin(); } 43 const_iterator note_end() const { return Notes.end(); }
|
VerifyDiagnosticConsumer.h | 195 DirectiveList Notes; 201 Notes.clear();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/ |
buildNotes.php | 21 echo "<title>Build Notes for $buildType $buildName </title>";
28 <p><b><font face="Verdana" size="+3">Build Notes</font></b> </p>
33 Build Notes for <?php echo "$buildType $buildName"; ?></font></b></td>
56 echo "<br>There are no build notes for this build.";
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/client/ |
guestbook.py | 42 class Notes(messages.Message): 44 notes = messages.MessageField('guestbook.Note', 1, repeated=True) variable in class:Notes 49 @remote.method('guestbook.GetNotesRequest', 'guestbook.Notes')
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/ |
fDrawFlags.java | 75 public final static int Notes = 0x0080; 81 public final static int Std = Links+Faces+Tetras+Anchors+Notes+Joints;
|
/prebuilts/go/darwin-x86/src/go/doc/ |
doc.go | 20 Notes map[string][]*Note 23 // but all new code should use Notes instead. 71 // Notes are collected in the Package.Notes map indexed by the notes marker. 105 Notes: r.notes, 106 Bugs: noteBodies(r.notes["BUG"]),
|
/prebuilts/go/linux-x86/src/go/doc/ |
doc.go | 20 Notes map[string][]*Note 23 // but all new code should use Notes instead. 71 // Notes are collected in the Package.Notes map indexed by the notes marker. 105 Notes: r.notes, 106 Bugs: noteBodies(r.notes["BUG"]),
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/server/ |
guestbook.py | 96 class Notes(messages.Message): 97 notes = messages.MessageField(Note, 1, repeated=True) variable in class:Notes 117 @remote.method(GetNotesRequest, Notes) 126 notes = [] 133 notes.append(note) 136 notes.sort(key=lambda note: note.text) 138 return Notes(notes=notes)
|
/external/google-breakpad/src/common/linux/ |
synth_elf.h | 181 class Notes : public Section { 183 Notes(Endianness endianness)
|
file_id_unittest.cc | 52 using google_breakpad::synth_elf::Notes; 168 Notes notes(kLittleEndian); 169 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier, 171 elf.AddSection(".note.gnu.build-id", notes, SHT_NOTE); 200 Notes notes(kLittleEndian); 201 notes.AddNote(0, "Linux", 203 notes.AddNote(NT_GNU_BUILD_ID, "GNU", kExpectedIdentifier, 205 int note_idx = elf.AddSection(".note", notes, SHT_NOTE) [all...] |
synth_elf_unittest.cc | 45 using google_breakpad::synth_elf::Notes; 376 Notes notes(kLittleEndian); 378 ASSERT_TRUE(notes.GetContents(&contents)); 382 TEST_F(ElfNotesTest, Notes) { 383 Notes notes(kLittleEndian); 384 notes.AddNote(1, "Linux", reinterpret_cast<const uint8_t *>("\x42\x02\0\0"), 386 notes.AddNote(2, "a", reinterpret_cast<const uint8_t *>("foobar"), 404 EXPECT_EQ(kExpectedNotesSize, notes.Size()) [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/ |
btSoftBodyHelpers.h | 34 Notes = 0x0080, 41 Std = Links+Faces+Tetras+Anchors+Notes+Joints,
|
/external/clang/lib/Frontend/ |
TextDiagnosticBuffer.cpp | 19 /// HandleDiagnostic - Store the errors, warnings, and notes that are 33 Notes.emplace_back(Info.getLocation(), Buf.str());
|
/prebuilts/go/darwin-x86/src/go/doc/testdata/ |
a0.go | 19 // Multiple notes may be in the same comment group and should be 20 // recognized individually. Notes may start in the middle of a
|
/prebuilts/go/darwin-x86/src/runtime/ |
os2_plan9.go | 66 // Notes in runtime·sigtab that are handled by runtime·sigpanic.
|
/prebuilts/go/linux-x86/src/go/doc/testdata/ |
a0.go | 19 // Multiple notes may be in the same comment group and should be 20 // recognized individually. Notes may start in the middle of a
|
/prebuilts/go/linux-x86/src/runtime/ |
os2_plan9.go | 66 // Notes in runtime·sigtab that are handled by runtime·sigpanic.
|
/external/libunwind/doc/ |
unw_getcontext.tex | 29 \section{Platform-specific Notes}
|