/frameworks/base/core/tests/coretests/src/android/text/format/ |
D | TimeTest.java | 180 Time local = new Time("America/Los_Angeles"); in testNormalize1() local 185 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1); in testNormalize1() 187 local.normalize(false /* use isDst */); in testNormalize1() 188 local.monthDay += test.offset; in testNormalize1() 189 local.normalize(true /* ignore isDst */); in testNormalize1() 190 if (local.year != test.year2 || local.month != test.month2 in testNormalize1() 191 || local.monthDay != test.day2 || local.hour != test.hour2 in testNormalize1() 192 || local.minute != test.minute2) { in testNormalize1() 196 local.year, local.month, local.monthDay, local.hour, local.minute); in testNormalize1() 202 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1); in testNormalize1() [all …]
|
/frameworks/base/services/common_time/ |
D | common_clock.cpp | 67 status_t CommonClock::localToCommon(int64_t local, int64_t *common_out) const { in localToCommon() argument 73 if (!cur_trans_.doForwardTransform(local, common_out)) in localToCommon() 97 void CommonClock::setBasis(int64_t local, int64_t common) { in setBasis() argument 100 cur_trans_.a_zero = local; in setBasis()
|
D | common_clock.h | 34 status_t localToCommon(int64_t local, int64_t *common_out) const; 40 void setBasis(int64_t local, int64_t common);
|
/frameworks/support/renderscript/v8/rs_support/scriptc/ |
D | rs_time.rsh | 75 * in @p local. This function also returns a pointer to @p local. If @p local 78 * @param local Broken-down time. 81 * @return Pointer to broken-down time (same as input @p local). 84 rsLocaltime(rs_tm *local, const rs_time_t *timer);
|
/frameworks/rs/scriptc/ |
D | rs_time.rsh | 75 * in @p local. This function also returns a pointer to @p local. If @p local 78 * @param local Broken-down time. 81 * @return Pointer to broken-down time (same as input @p local). 84 rsLocaltime(rs_tm *local, const rs_time_t *timer);
|
/frameworks/support/renderscript/v8/rs_support/ |
D | rsScriptC_Lib.cpp | 86 tm* rsrLocalTime(Context *rsc, Script *sc, tm *local, time_t *timer) { in rsrLocalTime() argument 87 if (!local) { in rsrLocalTime() 95 memcpy(local, tmp, sizeof(*tmp)); in rsrLocalTime() 97 return local; in rsrLocalTime()
|
D | rsRuntime.h | 54 tm* rsrLocalTime(Context *, Script *, tm *local, time_t *timer);
|
/frameworks/rs/ |
D | rsScriptC_Lib.cpp | 86 tm* rsrLocalTime(Context *rsc, Script *sc, tm *local, time_t *timer) { in rsrLocalTime() argument 87 if (!local) { in rsrLocalTime() 95 memcpy(local, tmp, sizeof(*tmp)); in rsrLocalTime() 97 return local; in rsrLocalTime()
|
/frameworks/testing/uiautomator/samples/SkeletonTest/ |
D | README | 11 adb push ${OUT}/data/local/tmp/uiautomator.skeletontest.jar /data/local/tmp/
|
/frameworks/base/docs/html/training/connect-devices-wirelessly/ |
D | nsd-wifi-direct.jd | 28 how to discover services that are connected to a local network. However, using 32 even when no local network or hotspot is available.</p> 67 <p>If you're providing a local service, you need to register it for 68 service discovery. Once your local service is registered, the framework 71 <p>To create a local service:</p> 79 WifiP2pServiceInfo, WifiP2pManager.ActionListener) addLocalService()} to register the local 97 // Add the local service, sending the service info, network channel, 132 * fullDomain: full domain name: e.g "printer._ipp._tcp.local."
|
D | index.jd | 30 enable communication with other devices on the same local network, and even 51 services offered on the local network, and use NSD to determine the connection
|
D | nsd.jd | 41 identify other devices on the local network that support the services your app 47 name and connection information to the local network and scan for information 54 you don't care about broadcasting your app's services over the local network, 58 <p>To register your service on the local network, first create a {@link 79 local services. Keep in mind that the name must be unique for any service on the 266 name of the local service to determine if the device just picked up its own
|
/frameworks/base/tests/HwAccelerationTest/ |
D | .gitignore | 3 local.properties
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
D | sip.jd | 218 account on the device running the application is called the <em>local 221 the local {@link android.net.sip.SipProfile}, this effectively registers the 236 <p>The following code excerpt opens the local profile for making calls and/or 283 … Log.d("WalkieTalkieActivity/onDestroy", "Failed to close local profile.", ee); 292 "local profile"), and a valid SIP address to receive the call (the 326 <li>A local SIP profile (the caller).</li> 356 <li>Initialize the local profile ({@link android.net.sip.SipProfile}) with a 357 pending intent that fires your receiver when someone calls the local profile.
|
/frameworks/base/docs/html/training/articles/ |
D | perf-jni.jd | 55 <p>The JNIEnv is used for thread-local storage. For this reason, <strong>you cannot share a JNIEnv… 93 thread-local-storage; that way it'll be passed into your destructor as 116 to store this data in a static local structure.</p> 148 by a JNI function is a "local reference". This means that it's valid for the 156 <p>The only way to get non-local references is via the functions 161 local reference as an argument and returns a global one. 170 <p>All JNI methods accept both local and global references as arguments. 185 <p>Programmers are required to "not excessively allocate" local references. In practical terms thi… 186 that if you're creating large numbers of local references, perhaps while running through an array of 190 16 local references, so if you need more than that you should either delete as you go or use [all …]
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
D | StubMethodAdapter.java | 299 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { in visitFrame() argument 301 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack); in visitFrame()
|
D | DelegateMethodAdapter2.java | 384 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { in visitFrame() argument 386 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack); in visitFrame()
|
/frameworks/native/libs/binder/ |
D | Parcel.cpp | 158 IBinder *local = binder->localBinder(); in flatten_binder() local 159 if (!local) { in flatten_binder() 170 obj.binder = local->getWeakRefs(); in flatten_binder() 171 obj.cookie = local; in flatten_binder() 191 IBinder *local = real->localBinder(); in flatten_binder() local 192 if (!local) { in flatten_binder()
|
/frameworks/base/docs/html/distribute/googleplay/about/ |
D | monetizing.jd | 127 their local currency</em>.</p> 138 <h2 id="payouts">Monthly payouts in your local currency</h2> 146 account, in your local currency.</p>
|
/frameworks/base/docs/html/tools/testing/ |
D | index.jd | 25 policy. Implementation-wise, this policy is simply a thread-local integer bitmask.</p>
|
/frameworks/base/tests/DumpRenderTree/assets/results/ |
D | layout_tests_failed.txt | 448 /sdcard/android/layout_tests/fast/loader/local-iFrame-source-from-local.html 460 /sdcard/android/layout_tests/fast/loader/local-image-from-local.html 461 /sdcard/android/layout_tests/fast/loader/local-CSS-from-local.html 463 /sdcard/android/layout_tests/fast/loader/local-JavaScript-from-local.html 535 /sdcard/android/layout_tests/http/tests/plugins/local-geturl-from-remote.html 539 /sdcard/android/layout_tests/http/tests/local/drag-over-remote-content.html 643 /sdcard/android/layout_tests/http/tests/appcache/local-content.html 799 /sdcard/android/layout_tests/http/tests/security/local-iFrame-from-remote.html 802 /sdcard/android/layout_tests/http/tests/security/local-video-poster-from-remote.html 803 /sdcard/android/layout_tests/http/tests/security/local-CSS-from-remote.html [all …]
|
/frameworks/base/docs/html/tools/help/ |
D | adb.jd | 50 it binds to local TCP port 5037 and listens for commands sent from adb clients—all adb 172 <td><code>pull <remote> <local></code></td> 178 <td><code>push <local> <remote></code></td> 185 <td><code>forward <local> <remote></code></td> 186 <td>Forwards socket connections from a specified local port to a specified remote port on the emula… 189 <li><code>local:<UNIX domain socket name></code></li> 200 …; zero or more PPP/PPPD options, such as <code>defaultroute</code>, <code>local</code>, <code>nott… 358 <pre class="no-pretty-print">adb forward tcp:6100 local:logd </pre> 373 <pre class="no-pretty-print">adb pull <remote> <local></pre> 376 <pre class="no-pretty-print">adb push <local> <remote></pre> [all …]
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
D | icon_design_action_bar.jd | 190 drawable resources, you should store a local copy of those icons or drawables in your application 191 resources, then reference the local copy from your application code. In that way, you can maintain
|
/frameworks/base/voip/java/com/android/server/sip/ |
D | SipSessionGroup.java | 170 String local = null; in reset() local 176 local = socket.getLocalAddress().getHostAddress(); in reset() 186 if (local == null) { in reset() 192 mLocalIp = local; in reset() 200 mSipStack.createListeningPoint(local, port, protocol)); in reset()
|
/frameworks/base/docs/html/about/ |
D | marketplace.jd | 55 individually in local currencies around the world. On purchase, Google Play handles transactions in
|