Home
last modified time | relevance | path

Searched refs:note (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/frameworks/compile/slang/lit-tests/
Dlit.cfg59 lit.note('using slang: %r' % config.slang)
60 lit.note('using FileCheck: %r' % config.filecheck)
61 lit.note('using rs-filecheck-wrapper.sh: %r' % config.rs_filecheck_wrapper)
62 lit.note('using output directory: %r' % config.test_exec_root)
/frameworks/compile/libbcc/tests/debuginfo/
Dlit.site.cfg98 lit.note('using bash: %r' % config.sh)
99 lit.note('using perl: %r' % config.perl)
100 lit.note('using verification script: %r' % config.test_bcc_debuginfo)
101 lit.note('using FileCheck: %r' % config.filecheck)
102 lit.note('using GDB: %r' % config.gdb)
/frameworks/compile/mclinker/include/mcld/Support/
DMsgHandling.h36 MsgHandler note(unsigned int pID);
69 inline mcld::MsgHandler mcld::note(unsigned int pID) in note() function
/frameworks/compile/libbcc/tests/debuginfo/target-tests/
Dlit.cfg80 lit.note('using Android SDK: %r' % config.sdk_dir)
81 lit.note('using Android SDK Version: %r' % config.sdk_version)
82 lit.note('using test apk builder: %r' % config.build_test_apk)
83 lit.note('using GDB plugin directory: %r' % config.gdb_plugin_directory)
/frameworks/compile/libbcc/tests/debuginfo/host-tests/
Dlit.cfg56 lit.note('using clang: %r' % config.clang)
57 lit.note('using bcc driver: %r' % config.bcc_driver)
58 lit.note('LD_LIBRARY_PATH is %r' % config.environment['LD_LIBRARY_PATH'])
/frameworks/base/docs/html/training/notepad/
Dnotepad-ex3.jd34 the note into the NoteEdit class, and introduce a full life cycle for editing
74 <code>mRowId</code>, in case the note
174 Cursor note = mDbHelper.fetchNote(mRowId);
175 startManagingCursor(note);
176 mTitleText.setText(note.getString(
177 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
178 mBodyText.setText(note.getString(
179 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY)));
182 <p>This method uses the <code>NotesDbAdapter.fetchNote()</code> method to find the right note to
233 We will use this to save the current note back to the database. Good
[all …]
Dnotepad-ex2.jd88 to delete a note. Call <code>menu.add()</code> like so:
121 method of our NotesDbAdapter and the note is deleted. That's it for the context menu &mdash; notes
144 <p>Create a new <code>Intent</code> to create a note
181 <code>Intent</code> to edit the note using
184 to pass in the title and body text, and the <code>mRowId</code> for the note we are
203 using the Bundle to pass in the title, body and mRowId of the note we want to edit.
206 The details of the note are pulled out from our query Cursor, which we move to the
214 <p class="note"><b>Note:</b> We assign the mNotesCursor field to a local variable at the
278 returned Intent) and use them to create a new note.
282 the note in the database.
[all …]
Dnotepad-ex1.jd106 <p><code>createNote()</code> takes strings for the title and body of a new note,
107 then creates that note in the database. Assuming the new note is created successfully, the
108 method also returns the row <code>_id</code> value for the newly created note.</p>
109 …code>deleteNote()</code> takes a <var>rowId</var> for a particular note, and deletes that note from
121 <p class="note"><b>Note:</b> A Cursor is returned rather than a collection of rows. This allows
126 <p><code>fetchNote()</code> is similar to <code>fetchAllNotes()</code> but just gets one note
134 {@link android.content.ContentValues ContentValues} instance to update the note of the given
254 Add the following contents (note: again the XML header is used, and the
291 we will use to create numbered note titles.</p>
328 access notes data, and populate the list with the available note
[all …]
/frameworks/base/docs/html/guide/components/
Dintents-filters.jd388 specific note that the user can view or edit, and another for starting
389 with a new, blank note that the user can fill in and save. (All of Note
712 that manages the note data. Here is the manifest file in its entirety:
733 &lt;data android:mimeType="vnd.android.cursor.dir/vnd.google.note" /&gt;
738 &lt;data android:mimeType="vnd.android.cursor.item/vnd.google.note" /&gt;
750 &lt;data android:mimeType="vnd.android.cursor.item/vnd.google.note" /&gt;
755 &lt;data android:mimeType="vnd.android.cursor.dir/vnd.google.note" /&gt;
767 &lt;data android:mimeType="vnd.android.cursor.item/vnd.google.note" /&gt;
777 on a directory of notes (the note list) rather than on a single note.
802 &lt;data android:mimeType="vnd.android.cursor.dir/vnd.google.note" /&gt;
[all …]
/frameworks/compile/slang/tests/P_redefine_RS_VERSION/
Dstderr.txt.expect2 <built-in>:1:9: note: previous definition is here
/frameworks/base/docs/html/training/basics/fragments/
Dcreating.jd38 <p class="note"><strong>Note:</strong> If you decide for other reasons that the minimum
92 <p class="note"><strong>Note:</strong> {@link android.support.v4.app.FragmentActivity} is a
123 <p class="note"><strong>Tip:</strong> For more information about creating layouts for different
143 <p class="note"><strong>Note:</strong> When you add a fragment to an activity layout by defining
/frameworks/base/docs/html/training/basics/activity-lifecycle/
Dstopping.jd59 <p class="note"><strong>Note:</strong> Because the system retains your {@link android.app.Activity}
92 saves the contents of a draft note to persistent storage:</p>
101 // Save the note's current draft, because the activity is stopping
102 // and we want to be sure the current note progress isn't lost.
108 mUri, // The URI for the note to update.
123 <p class="note"><strong>Note:</strong> Even if the system destroys your activity while it's stopped,
/frameworks/base/docs/html/google/gcm/
Ddemo.jd33 <p class="note"><strong>Note:</strong> This tutorial describes how to develop GCM-enabled apps usin…
80 <p class="note"><strong>Note:</strong> If you don't see <strong>Extras &gt; Google Cloud Messaging …
110 <p class="note"><strong>Note:</strong> You can get the IP by running <code>ifconfig</code> on Linux…
121 …<p class="note"><strong>Note:</strong> The API key value set in that class will be used just once …
160 …<p class="note"><strong>Note:</strong> You can get the IP by running <code>ifconfig</code> on Linu…
175 …Engine), and it does not include the forward slash (<code>/</code>). Also note that <code>SENDER_I…
247 <p class="note"><strong>Note:</strong> What happened? When the device received a registration callb…
259 <p class="note"><strong>Note:</strong> What happened? When you clicked the button, the web server s…
/frameworks/base/docs/html/tools/sdk/
Dtools-notes.jd42 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r22.0.1 is
83 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r22 is
138 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r21.1 is
173 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r21.0.1 is
276 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r21 is designed
362 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r20.0.3 is designed
393 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r20.0.1 is designed
429 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r20 is designed for
498 <p class="note"><strong>Note:</strong> This update of SDK Tools is only available through
507 <li>If you are developing in Eclipse with ADT, note that the SDK Tools r19 is designed for
[all …]
/frameworks/base/docs/html/tools/help/
Dgltracer.jd23 <p class="note"><strong>Note:</strong> The Tracer tool requires a device running Android 4.1 (API
76 <p class="note"><strong>Note:</strong> If you are tracing the default activity for the
80 <p class="note"><strong>Note:</strong> If you want to capture progressive frame images for each
/frameworks/base/docs/html/training/improving-layouts/
Dloading-ondemand.jd73 <p class="note"><strong>Note:</strong> The {@link android.view.ViewStub#inflate()} method returns
83 <p class="note"><strong>Note:</strong> One drawback of {@link android.view.ViewStub} is that it
/frameworks/base/docs/html/tools/
Ddevice.jd37 <p class="note"><strong>Note:</strong> When developing on a device, keep in mind that you should
58 <p class="note"><strong>Note:</strong> If you manually enable debugging in the manifest
66 <p class="note"><strong>Note:</strong> On Android 4.2 and newer, <strong>Developer
98 <p class="note"><strong>Note:</strong> The rule syntax
115 <p class="note"><strong>Note:</strong> When you connect a device running Android 4.2.2 or higher
/frameworks/base/docs/html/sdk/installing/
Dindex.jd23 <li>Make a note of the name and location in which it saves the SDK on your system&mdash;you will ne…
49 <p>Make a note of the name and location of the SDK directory on your system&mdash;you will need to
73 <p>Make a note of the name and location of the SDK directory on your system&mdash;you will need to
/frameworks/base/docs/html/training/in-app-billing/
Dlist-iab-products.jd44 …nformation to query purchase details in your application later. <p class="note"><strong>Important:…
45 … activate the product so that your application can purchase it. <p class="note"><strong>Warning:</…
50 <p class="note"><strong>Note:</strong> When making the query, you will need to specify the product …
/frameworks/compile/mclinker/lib/LD/
DELFDynObjReader.cpp97 note(diag::note_has_no_symtab) << pInput.name() in readSymbols()
/frameworks/base/docs/html/guide/topics/ui/controls/
Dradiobutton.jd65 <p class="note"><strong>Note:</strong> The {@link android.widget.RadioGroup} is a subclass of
99 <p class="note"><strong>Tip:</strong> If you need to change the radio button state
/frameworks/base/docs/html/tools/testing/
Dtesting_accessibility.jd76 <p class="note"><strong>Note:</strong> Keyboards and D-pads provide different navigation paths
176 <p class="note">
198 <p class="note"><strong>Note:</strong> On Android 4.1 (API Level 16) and higher, the system
204 <p class="note"><strong>Note:</strong> You must turn on TalkBack <em>first</em>, otherwise this
237 <p class="note"><strong>Note:</strong> Accessibility gestures provide a different navigation path
254 <p class="note">
/frameworks/base/docs/html/training/basics/supporting-devices/
Dscreens.jd61 <p class="note"><strong>Note:</strong> Android automatically scales your layout in order to
127 <p class="note"><strong>Note:</strong> Android 3.2 and above supports an advanced method of
172 <p class="note"><strong>Note:</strong> Low-density (ldpi) resources aren’t always necessary. When
/frameworks/base/docs/html-intl/ru/training/multiscreen/
Dindex.jd49 <p class="note"><strong>Примечание</strong>. В этом модуле и в учебном приложении используется <a
/frameworks/base/docs/html-intl/zh-cn/training/multiscreen/
Dindex.jd49 <p class="note"><strong>请注意</strong>:本教程和相关的示例使用了<a

12345678910>>...13