HomeSort by relevance Sort by last modified time
    Searched full:notes (Results 26 - 50 of 1863) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/providers/ContactsProvider/tests/assets/test1/
expected_groups.txt 7 7 notes=System Group: My Contacts
24 24 notes=Eclair Contacts
41 41 notes=Starred in Android
58 58 notes=null
  /packages/providers/ContactsProvider/tests/assets/testSynced/
expected_groups.txt 7 7 notes=System Group: My Contacts
  /system/media/camera/docs/
metadata_template.mako 64 % if prop.notes is not None:
65 <notes>${prop.notes}</notes>
110 % if value.notes is not None:
111 <notes>${value.notes}</notes>
130 % if prop.notes is not None:
131 <notes>${prop.notes | x}</notes
    [all...]
  /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...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/
README 7 run-time support, and installation notes for building flex 2.5
11 (contributed by Terrence O Kane, who notes that no source
19 - Amiga/: notes on building flex for the Amiga, contributed
37 - Notes on building flex for the Macintosh using Think-C,
48 - Borland.old/: notes on building flex 2.4 for Borland C++ 3.1
61 - A number of notes and Makefiles for compiling flex under MS-DOS,
64 - Notes on building flex for MVS, in the MVS/ subdirectory.
  /external/chromium/chrome/browser/resources/
keyboard_overlay_data.js 12 "notes": "power",
19 "notes": "escape",
108 "notes": "backspace",
115 "notes": "tab",
204 "notes": "enter",
211 "notes": "left ctrl",
301 "notes": "left shift",
381 "notes": "right shift",
391 "notes": "left alt",
462 "notes": "right ctrl"
    [all...]
  /external/linux-tools-perf/util/ui/browsers/
annotate.c 71 struct annotation *notes = symbol__annotation(sym); local
72 struct source_line *src_line = notes->src->lines;
73 struct sym_hist *h = annotation__histogram(notes, evidx);
77 next = objdump__get_next_ip_line(&notes->src->source, self);
145 struct annotation *notes = symbol__annotation(sym); local
150 pthread_mutex_lock(&notes->lock);
152 list_for_each_entry(pos, &notes->src->source, node) {
161 pthread_mutex_unlock(&notes->lock);
258 struct annotation *notes; local
282 notes = symbol__annotation(sym)
    [all...]
  /external/proguard/src/proguard/
FullyQualifiedClassNameChecker.java 59 * notes if necessary. Returns the number of notes printed.
84 * printing notes if necessary.
112 * printing notes if necessary.
133 * printing notes if necessary.
146 * printing notes if necessary.
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
Notepadv1.java 66 // Get all of the notes from the database and create the item list
74 SimpleCursorAdapter notes = local
76 setListAdapter(notes);
NotesDbAdapter.java 28 * Simple notes database access helper class. Defines the basic CRUD operations
29 * for the notepad example, and gives the ability to list all notes as well as
51 "create table notes (_id integer primary key autoincrement, "
55 private static final String DATABASE_TABLE = "notes";
76 db.execSQL("DROP TABLE IF EXISTS notes");
92 * Open the notes database. If it cannot be opened, try to create a new
140 * Return a Cursor over the list of all notes in the database
142 * @return Cursor over all notes
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
download.php 39 echo '<p><b><font size="+4">Important Notes<BR>';
42 <p>It is very important to read the following notes in order to run this version
43 of Eclipse. Once you have read the notes you can click on the Download link
  /external/markdown/docs/
release-2.0.2.txt 1 Python-Markdown 2.0.2 Release Notes
  /development/samples/NotePad/res/values/
strings.xml 19 <string name="live_folder_name">Notes</string>
24 <string name="title_notes_list">Notes</string>
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 28 * Simple notes database access helper class. Defines the basic CRUD operations
29 * for the notepad example, and gives the ability to list all notes as well as
51 "create table notes (_id integer primary key autoincrement, "
55 private static final String DATABASE_TABLE = "notes";
76 db.execSQL("DROP TABLE IF EXISTS notes");
92 * Open the notes database. If it cannot be opened, try to create a new
140 * Return a Cursor over the list of all notes in the database
142 * @return Cursor over all notes
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 28 * Simple notes database access helper class. Defines the basic CRUD operations
29 * for the notepad example, and gives the ability to list all notes as well as
51 "create table notes (_id integer primary key autoincrement, "
55 private static final String DATABASE_TABLE = "notes";
76 db.execSQL("DROP TABLE IF EXISTS notes");
92 * Open the notes database. If it cannot be opened, try to create a new
140 * Return a Cursor over the list of all notes in the database
142 * @return Cursor over all notes
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 28 * Simple notes database access helper class. Defines the basic CRUD operations
29 * for the notepad example, and gives the ability to list all notes as well as
51 "create table notes (_id integer primary key autoincrement, "
55 private static final String DATABASE_TABLE = "notes";
76 db.execSQL("DROP TABLE IF EXISTS notes");
92 * Open the notes database. If it cannot be opened, try to create a new
140 * Return a Cursor over the list of all notes in the database
142 * @return Cursor over all notes
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java 28 * Simple notes database access helper class. Defines the basic CRUD operations
29 * for the notepad example, and gives the ability to list all notes as well as
51 "create table notes (_id integer primary key autoincrement, "
55 private static final String DATABASE_TABLE = "notes";
76 db.execSQL("DROP TABLE IF EXISTS notes");
92 * Open the notes database. If it cannot be opened, try to create a new
140 * Return a Cursor over the list of all notes in the database
142 * @return Cursor over all notes
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java 28 * Simple notes database access helper class. Defines the basic CRUD operations
29 * for the notepad example, and gives the ability to list all notes as well as
51 "create table notes (_id integer primary key autoincrement, "
55 private static final String DATABASE_TABLE = "notes";
76 db.execSQL("DROP TABLE IF EXISTS notes");
92 * Open the notes database. If it cannot be opened, try to create a new
140 * Return a Cursor over the list of all notes in the database
142 * @return Cursor over all notes
  /device/google/accessory/demokit/hardware/fab/shield/
README.txt 8 Board is 2 layers, plus unusual silk screen (see notes below)
15 Other Notes:
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/
local_data.html 20 <i>Notes
31 <i>Notes
  /external/qemu/distrib/sdl-1.2.15/
docs.html 19 <H2> SDL 1.2.15 Release Notes </H2>
24 <H3> General Notes </H3>
44 <H3> Unix Notes </H3>
61 <H3> Windows Notes </H3>
78 <H3> Mac OS X Notes </H3>
88 <H2> SDL 1.2.14 Release Notes </H2>
93 <H3> General Notes </H3>
128 <H3> Unix Notes </H3>
208 <H3> Windows Notes </H3>
237 <H3> Mac OS X Notes </H3
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
AdHocCommandData.java 52 private List<AdHocCommandNote> notes = new ArrayList<AdHocCommandNote>(); field in class:AdHocCommandData
117 for (AdHocCommandNote note : notes) {
172 * Returns the list of notes that the command has.
174 * @return the notes.
177 return notes;
181 this.notes.add(note);
185 this.notes.remove(note);
  /external/clang/include/clang/Frontend/
TextDiagnosticBuffer.h 31 DiagList Errors, Warnings, Notes;
39 const_iterator note_begin() const { return Notes.begin(); }
40 const_iterator note_end() const { return Notes.end(); }
  /external/linux-tools-perf/util/
annotate.h 71 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
73 return (((void *)&notes->src->histograms) +
74 (notes->src->sizeof_sym_hist * idx));
  /development/apps/Development/src/com/android/development/
ColumnData.java 1 /* //device/apps/Notes/NotesList.java

Completed in 836 milliseconds

12 3 4 5 6 7 8 91011>>