Home
last modified time | relevance | path

Searched refs:following (Results 1 – 25 of 706) sorted by relevance

12345678910>>...29

/frameworks/base/core/java/android/view/
DAccessibilityIterators.java40 public int[] following(int current); in following() method
95 public int[] following(int offset) { in following() method in AccessibilityIterators.CharacterTextSegmentIterator
108 start = mImpl.following(start); in following()
113 final int end = mImpl.following(start); in following()
185 public int[] following(int offset) { in following() method in AccessibilityIterators.WordTextSegmentIterator
198 start = mImpl.following(start); in following()
203 final int end = mImpl.following(start); in following()
266 public int[] following(int offset) { in following() method in AccessibilityIterators.ParagraphTextSegmentIterator
/frameworks/base/core/java/android/text/method/
DWordIterator.java85 public int following(int offset) { in following() method in WordIterator
88 shiftedOffset = mIterator.following(shiftedOffset); in following()
114 shiftedOffset = mIterator.following(shiftedOffset); in nextBoundary()
271 return mIterator.following(shiftedOffset) + mOffsetShift; in getEnd()
275 return mIterator.following(shiftedOffset) + mOffsetShift; in getEnd()
/frameworks/base/core/tests/coretests/src/android/text/method/
DWordIteratorTest.java81 wordIterator.following(-1); in testFollowing()
86 wordIterator.following(text.length() + 1); in testFollowing()
91 assertEquals(text.indexOf('c') + 1, wordIterator.following(text.indexOf('a'))); in testFollowing()
92 assertEquals(text.indexOf('c') + 1, wordIterator.following(text.indexOf('c'))); in testFollowing()
93 assertEquals(text.indexOf('f') + 1, wordIterator.following(text.indexOf('c') + 1)); in testFollowing()
94 assertEquals(text.indexOf('f') + 1, wordIterator.following(text.indexOf('d'))); in testFollowing()
95 assertEquals(text.indexOf('i') + 1, wordIterator.following(text.indexOf('-'))); in testFollowing()
96 assertEquals(text.indexOf('i') + 1, wordIterator.following(text.indexOf('g'))); in testFollowing()
97 assertEquals(text.length(), wordIterator.following(text.indexOf('j'))); in testFollowing()
98 assertEquals(BreakIterator.DONE, wordIterator.following(text.length())); in testFollowing()
/frameworks/base/docs/html/ndk/guides/
Dstable_apis.jd38 For example, to link against {@code /system/lib/libfoo.so}, add the following line to your
142 <p>The NDK provides the following APIs for developing native code that runs on Android 1.5 system
164 linking by including the following line in your <a href="{@docRoot}ndk/guides/android_mk.html">
174 module against {@code /system/lib/libz.so} by including the following line in your
184 {@code /system/lib/libdl.so} by including the following line in your
192 <p>The NDK provides the following APIs for developing native code that runs on Android 1.6 system
200 including the following line in your <a href="{@docRoot}ndk/guides/android_mk.html">
233 <p>The NDK provides the following APIs for developing native code that runs on Android 2.0 system
243 including the following line in your <a href="{@docRoot}ndk/guides/android_mk.html">
277 <p>The NDK provides the following APIs for developing native code that runs on Android 2.2 system
[all …]
Dcpp-support.jd119 <p>This runtime only provides the following headers, with no support beyond them:</p>
160 build the library from sources by adding the following line to your {@code Application.mk}
182 NDK to rebuild {@code libc++} from sources by adding the following line to your
192 If you are using {@code ndk-build}, add the following line:</p>
220 following message will appear in {@code logcat}.</p>
235 <p>To enable exception-handling support for your entire app, add the following line to
237 To enable exception-handling support for individual modules', add the following line to
249 <p>To enable RTTI support for your entire app for your entire application, add the following line to
256 To enable RTTI support for individual modules, add the following line to
296 <p>For example, an app may have the following modules:</p>
/frameworks/base/obex/
DNOTICE6 modification, are permitted provided that the following conditions are met:
9 this list of conditions and the following disclaimer.
12 this list of conditions and the following disclaimer in the documentation
/frameworks/webview/chromium/
DLICENSE4 // modification, are permitted provided that the following conditions are
8 // notice, this list of conditions and the following disclaimer.
10 // copyright notice, this list of conditions and the following disclaimer
/frameworks/compile/mclinker/
DLICENSE.TXT21 so, subject to the following conditions:
24 this list of conditions and the following disclaimers.
27 this list of conditions and the following disclaimers in the
57 The following pieces of software have additional or alternate copyrights,
/frameworks/native/opengl/tests/angeles/
Dlicense-BSD.txt10 modification, are permitted provided that the following conditions
14 notice, this list of conditions and the following disclaimer.
16 notice, this list of conditions and the following disclaimer in
/frameworks/base/docs/html/training/beam-files/
Dsend-files.jd36 The Android Beam file transfer feature has the following requirements:
66 NFC, you must request the following permissions in your app manifest:
73 Allows your app to send data over NFC. To specify this permission, add the following element
84 Allows your app to read from external storage. To specify this permission, add the following
110 The following snippet shows you how to specify the
132 version in code, as described in the following section.
136 To specify in your app manifest that NFC is optional, you use the following element:
206 following snippet shows you how to do this:
236 following snippet shows you how to do this:
274 for the file. For example, the following snippet shows you how to get a file URI from a file
/frameworks/data-binding/compilerCommon/
DXMLParser.g47 modification, are permitted provided that the following conditions
10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
DXMLLexer.g47 modification, are permitted provided that the following conditions
10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
/frameworks/base/docs/html/guide/topics/text/
Dspell-checker-framework.jd44 The following diagram shows the lifecycle of the spelling checker service:
67 Define the service and session object with the following classes:
76 subclass, you must implement the following method:
97 following methods:
149 settings, as shown in the following snippet:
186 The metadata file <code>spellchecker.xml</code> contains the following XML:
214 following screenshots show this:
226 The following diagram shows the flow of control for interacting with a spelling checker service:
/frameworks/base/docs/html/ndk/guides/audio/
Dfloating-point.jd24 quality in high-performance audio applications. Floating point offers the following
55 <p>The following best practices help you avoid problems with floating-point calculations:</p>
84 <p>The following Wikipedia pages are helpful in understanding floating-point audio:</p>
95 <p>The following article provides information on those aspects of floating-point that have a
/frameworks/base/docs/html/ndk/guides/graphics/
Dvalidation-layer.jd78 add the following to your project's gradle configuration:
92 add the following to your project's gradle configuration:
110 directory by using the following command line options:
131 the build process produces final file structure like the following:
151 The following example shows how to verify that your APK contains the validation layers
188 The following code snippet shows how an app can use the Vulkan API to programmatically enable and
256 The following code snippet shows how an app can use the Vulkan API to programmatically enable a
315 The following example shows how to check for debug extension support and
378 // Later, when shutting down Vulkan, call the following
/frameworks/base/docs/html/training/app-links/
Dindex.jd27 Users following web links on devices are frequently presented with confusing choices. Tapping a
56 uses the following criteria, in descending order, to determine how to handle the request:
101 patterns that your app handles. The following example shows an intent filter that can
158 following manifest code snippet:
189 patterns defined in the app's intent filters. For example, an app with the following intent
226 app with the following intent filter declaration would pass verification only if the website
252 file, with the name {@code assetlinks.json}, at the following well-known location on the domain:
267 The JSON file uses the following fields to identify associated apps:
274 You can use the following command to generate the fingerprint via the Java keytool:
286 The following example {@code assetlinks.json} file grants link-opening rights to a
[all …]
/frameworks/rs/api/
Drs_value_types.spec22 RenderScript supports the following scalar numerical types:
41 Single entries can be accessed by following the variable name with a dot and:<ul>
46 For example, with <code>int4 myVar;</code> the following are equivalent:<code><br/>
/frameworks/base/docs/html/wear/preview/
Dstart.jd60 of the following packages:
94 reference documentation, which you can download from the following table.
153 following, which requires that your the Google Repository <a href=
161 <li>See the following page for setting up a watch or emulator with a
202 <li>See the following page for setting up a watch or emulator with a
/frameworks/native/services/surfaceflinger/EventLog/
DEventLogTags.logtags19 # The data type is a number from the following values:
25 # The data unit is a number taken from the following list:
/frameworks/base/docs/html/training/notify-user/
Dmanaging.jd46 The following section describes how to update notifications and also how to remove them.
58 The following snippet demonstrates a notification that is updated to reflect the
86 Notifications remain visible until one of the following happens:
/frameworks/base/core/jni/android/graphics/
DShader.cpp36 #error Need to convert float array to SkScalar array before calling the following function. in Color_HSVToColor()
122 #error Need to convert float array to SkScalar array before calling the following function. in LinearGradient_create1()
166 #error Need to convert float array to SkScalar array before calling the following function. in RadialGradient_create1()
205 #error Need to convert float array to SkScalar array before calling the following function. in SweepGradient_create1()
/frameworks/base/docs/html/training/wearables/data-layer/
Dmessages.jd24 and attach the following items to the message:</p>
56 <p>The following sections show you how to advertise device nodes that can process activity
85 <p>The following example shows how to add a capability named <code>voice_transcription</code> to
101 The following example shows how to manually retrieve the results of reachable nodes with the
125 The following example shows how to register the listener and retrieve the results of reachable nodes
167 <p>The following example shows how you might determine the best node to use:</p>
197 <p>The following example shows how to send a message to the transcription-capable node from a
240 connected nodes that you can send messages to, implement the following code:</p>
/frameworks/compile/slang/
DNOTICE108 meet the following conditions:
127 of the following places: within a NOTICE text file distributed
223 so, subject to the following conditions:
226 this list of conditions and the following disclaimers.
229 this list of conditions and the following disclaimers in the
257 The following pieces of software have additional or alternate copyrights,
293 so, subject to the following conditions:
296 this list of conditions and the following disclaimers.
299 this list of conditions and the following disclaimers in the
329 The following pieces of software have additional or alternate copyrights,
/frameworks/compile/libbcc/
DNOTICE110 meet the following conditions:
129 of the following places: within a NOTICE text file distributed
223 so, subject to the following conditions:
226 this list of conditions and the following disclaimers.
229 this list of conditions and the following disclaimers in the
259 The following pieces of software have additional or alternate copyrights,
284 * modification, are permitted provided that the following conditions
287 * notice, this list of conditions and the following disclaimer.
289 * notice, this list of conditions and the following disclaimer in the
292 * must display the following acknowledgement:
/frameworks/base/docs/html/training/tv/playback/
Dbrowse.jd49 minimum of code. The following example shows how to create a layout that contains a {@link
68 <p>The application's main activity sets this view, as shown in the following example:</p>
93 manager, as shown in the following example:</p>
188 header to include additional views in a more complex layout. The following sections show how to
218 abstract methods to create, bind, and unbind the view holder. The following
264 method to set the presenter for the row header, as shown in the following example.</p>
281 method sets the initial state of the headers in the browse fragment given one of the following
317 The following example code shows an implementation of a {@link
347 to display those items on screen for browsing by the user. The following example
398 class for changing the background of your TV app activity. The following example shows how to
[all …]

12345678910>>...29