Home
last modified time | relevance | path

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

12345678910>>...18

/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.h33 MsgHandler note(unsigned int pID);
66 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/base/docs/html-intl/intl/zh-cn/google/play/billing/
Dbilling_testing.jd58 …<p class="note"><strong>注意</strong>:要进行测试购买,许可测试帐户必须设置在用户的 Android 设备上。如果设备上有多个帐户,则必须使用下载应用时所用的帐户进…
103 …<p class="note"><strong>注意</strong>:过去,你可以通过上传未发布的“草稿”版本来测试应用,但现在系统已不再支持此功能。不过,现在你可以在将应用上传到 Google…
142 …<p class="note"><strong>注意</strong>:使用预留的商品 ID 发送应用内结算请求会覆盖常用的 Google Play 生产系统。当你针对某个预留的商品 ID 发送应…
148 …<p class="note"><strong>注意</strong>:你可以将应用发布到 <a href="{@docRoot}distribute/googleplay/developer-c…
159 …<p class="note"><strong>注意</strong>:过去,你可以通过上传未发布的“草稿”版本来测试应用,但现在系统已不再支持此功能。现在你必须将应用发布到 Alpha 或 Be…
175 <p class="note"><strong>注意</strong>:在设备上更改主要帐户的唯一方法是恢复出厂设置,请确保先使用你的主要帐户在设备上登录。</p>
Dbilling_overview.jd36 …<p class="note"><b>注意</b>:请务必遵守目标国家/地区(您要在这些国家/地区分发应用)的适用法律。例如,在欧盟国家,<a href="http://ec.europa.eu/…
72 <p class="note"><strong>重要提示</strong>:您必须有 Google 电子钱包商家帐户才能在 Google Play 上使用应用内结算服务。</p>
Dbilling_admin.jd49 …<p class="note"><strong>注意</strong>:过去,您可以通过上传未发布的“草稿”版本来测试应用,但现在系统已不再支持此功能。因此,您必须将应用发布到 Alpha 或 B…
55 <p class="note"><strong>注意</strong>:目前系统尚不支持批量上传包含订阅内容的商品列表。</p>
85 …<p class="note"><strong>注意</strong>:这种情况并不适用于测试帐户。也就是说,对于测试帐户来说,即使应用未发布而商品已发布,测试帐户中的用户是可以看到该商品的。有关…
112 <p class="note"><strong>注意</strong>:请务必规划好您的商品 ID 命名空间。商品 ID 保存后就无法再重复使用或更改。</p>
120 <p class="note"><strong>注意</strong>:目前系统尚不支持批量上传包含订阅内容的商品列表。</p>
/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.jd35 the note into the NoteEdit class, and introduce a full life cycle for editing
75 <code>mRowId</code>, in case the note
175 Cursor note = mDbHelper.fetchNote(mRowId);
176 startManagingCursor(note);
177 mTitleText.setText(note.getString(
178 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
179 mBodyText.setText(note.getString(
180 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY)));
183 <p>This method uses the <code>NotesDbAdapter.fetchNote()</code> method to find the right note to
234 We will use this to save the current note back to the database. Good
[all …]
Dnotepad-ex2.jd89 to delete a note. Call <code>menu.add()</code> like so:
122 method of our NotesDbAdapter and the note is deleted. That's it for the context menu &mdash; notes
145 <p>Create a new <code>Intent</code> to create a note
182 <code>Intent</code> to edit the note using
185 to pass in the title and body text, and the <code>mRowId</code> for the note we are
204 using the Bundle to pass in the title, body and mRowId of the note we want to edit.
207 The details of the note are pulled out from our query Cursor, which we move to the
215 <p class="note"><b>Note:</b> We assign the mNotesCursor field to a local variable at the
279 returned Intent) and use them to create a new note.
283 the note in the database.
[all …]
Dnotepad-ex1.jd107 <p><code>createNote()</code> takes strings for the title and body of a new note,
108 then creates that note in the database. Assuming the new note is created successfully, the
109 method also returns the row <code>_id</code> value for the newly created note.</p>
110 …code>deleteNote()</code> takes a <var>rowId</var> for a particular note, and deletes that note from
122 <p class="note"><b>Note:</b> A Cursor is returned rather than a collection of rows. This allows
127 <p><code>fetchNote()</code> is similar to <code>fetchAllNotes()</code> but just gets one note
135 {@link android.content.ContentValues ContentValues} instance to update the note of the given
255 Add the following contents (note: again the XML header is used, and the
292 we will use to create numbered note titles.</p>
329 access notes data, and populate the list with the available note
[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/wearables/apps/
Dvoice.jd31 voice action is spoken. Examples include "Take a note" or "Set an alarm".</dd>
41 as "Take a note" or "Set an alarm". This allows users to say what they want to do and let
50 <p>For example, for the "Take a note" command, declare this intent filter to start an activity
86 <td>Take a note</td>
87 <td>"OK Google, take a note"<br/><br/>"OK Google, note to self"</td>
95 <dd><code>android.content.Intent.EXTRA_TEXT</code> - a string with note body</dd>
/frameworks/base/docs/html/samples/
Dindex.jd32 <p class="note">
64 <p class="note">
71 <p class="note">
/frameworks/base/docs/html/training/tv/
Dindex.jd11 <p class="note"><strong>Note:</strong> For details on how to publish your TV apps in Google Play, …
/frameworks/base/docs/html/tools/sdk/
Dtools-notes.jd121 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
153 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
185 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
219 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
250 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
283 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
323 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
358 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
405 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
488 <li>If you are developing in Eclipse with ADT, note that this version of SDK Tools is
[all …]
/frameworks/base/docs/html/training/basics/activity-lifecycle/
Dstopping.jd55 <p class="note"><strong>Note:</strong> Because the system retains your {@link android.app.Activity}
88 saves the contents of a draft note to persistent storage:</p>
97 // Save the note's current draft, because the activity is stopping
98 // and we want to be sure the current note progress isn't lost.
104 mUri, // The URI for the note to update.
119 <p class="note"><strong>Note:</strong> Even if the system destroys your activity while it's stopped,
/frameworks/base/docs/html/training/
Dbuilding-wearables.jd12 <p class="note"><strong>Note:</strong> For more information about the APIs used in these training
/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/tv/adt-1/
Dindex.jd35 <p class="note">
79 <p class="note">
103 <p class="note">
138 <p class="note">
188 <p class="note">
208 <p class="note">
302 <p class="note">
/frameworks/base/docs/html/training/basics/fragments/
Dcreating.jd41 <p class="note"><strong>Note:</strong> If you decide that the minimum
103 <p class="note"><strong>Note:</strong> {@link android.support.v4.app.FragmentActivity} is a
134 <p class="note"><strong>Tip:</strong> For more about creating layouts for different
160 <p class="note"><strong>Note:</strong> When you add a fragment to an activity layout by defining
/frameworks/base/docs/html/google/gcm/
Ddemo.jd49 <p class="note"><strong>Note:</strong> This tutorial describes how to develop GCM-enabled apps usin…
96 <p class="note"><strong>Note:</strong> If you don't see <strong>Extras &gt; Google Cloud Messaging …
126 <p class="note"><strong>Note:</strong> You can get the IP by running <code>ifconfig</code> on Linux…
137 …<p class="note"><strong>Note:</strong> The API key value set in that class will be used just once …
176 …<p class="note"><strong>Note:</strong> You can get the IP by running <code>ifconfig</code> on Linu…
191 …Engine), and it does not include the forward slash (<code>/</code>). Also note that <code>SENDER_I…
263 <p class="note"><strong>Note:</strong> What happened? When the device received a registration callb…
275 <p class="note"><strong>Note:</strong> What happened? When you clicked the button, the web server s…
/frameworks/base/docs/html-intl/intl/ja/training/tv/start/
Dindex.jd29 <p class="note">
Dstart.jd30 <p class="note">
171 <p class="note">
217 <li>エミュレータのオプションを選択して、[<strong>OK</strong>] をクリックして AVD を作成します。 <p class="note">
/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

12345678910>>...18