Searched defs:end (Results 101 - 125 of 230) sorted by relevance

12345678910

/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java169 * > 0, this is relative to the end of the text - 1; if <= 0, this
188 * @param end the position in the text at which the composing region ends
192 public boolean setComposingRegion(int start, int end); argument
209 * > 0, this is relative to the end of the text - 1; if <= 0, this
249 * start and end should have the same value.
253 public boolean setSelection(int start, int end); argument
H A DInputConnectionWrapper.java73 public boolean setComposingRegion(int start, int end) { argument
74 return mTarget.setComposingRegion(start, end);
93 public boolean setSelection(int start, int end) { argument
94 return mTarget.setSelection(start, end);
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java199 private void addSpellCheckSpan(Editable editable, int start, int end) { argument
202 editable.setSpan(spellCheckSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
221 public void spellCheck(int start, int end) { argument
223 Log.d(TAG, "Start spell-checking: " + start + ", " + end);
231 end = mTextView.getText().length();
247 spellParser.parse(start, end);
262 spellParser.parse(start, end);
280 final int end = editable.getSpanEnd(spellCheckSpan);
288 isEditing = selectionEnd <= start || selectionStart > end;
290 isEditing = selectionEnd < start || selectionStart > end;
506 parse(int start, int end) argument
529 setRangeSpan(Editable editable, int start, int end) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java83 * even though they don't end in a line break
129 int end = start + count;
130 while (start < end) {
132 // way, if we end with a partial character we don't lose it.
133 int numBytes = Math.min(encodedBytes.remaining(), end - start);
340 CharSequence csq, int start, int end) {
341 builder.append(csq, start, end);
339 append( CharSequence csq, int start, int end) argument
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsHistoryTest.java299 // verify total beyond end
319 final long end = start + r.nextInt();
325 stats.recordData(start, end, entry);
487 NetworkStatsHistory stats, long start, long end, long rxBytes, long txBytes) {
488 final NetworkStatsHistory.Entry entry = stats.getValues(start, end, null);
510 private static void assertValues(NetworkStatsHistory stats, long start, long end, argument
513 final NetworkStatsHistory.Entry entry = stats.getValues(start, end, null);
486 assertValues( NetworkStatsHistory stats, long start, long end, long rxBytes, long txBytes) argument
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java135 /** Fail unless text+spans contains a span 'spanName' with the given start and end. */
137 int start, int end) throws Exception {
141 assertEquals(end, text.getSpanEnd(i));
341 // At the end.
417 public CharSequence subSequence(int start, int end) { argument
418 return new Wrapper(mString.subSequence(start, end));
497 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
136 checkContains(Spanned text, String[] spans, String spanName, int start, int end) argument
/frameworks/base/libs/androidfw/
H A DKeyLayoutMap.cpp189 ALOGE("%s: Expected end of line or trailing comment, got '%s'.",
210 char* end; local
211 int32_t code = int32_t(strtol(codeToken.string(), &end, 0));
212 if (*end) {
267 char* end; local
268 int32_t scanCode = int32_t(strtol(scanCodeToken.string(), &end, 0));
269 if (*end) {
300 axisInfo.splitValue = int32_t(strtol(splitToken.string(), &end, 0));
301 if (*end) {
342 axisInfo.flatOverride = int32_t(strtol(flatToken.string(), &end,
[all...]
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java62 public void end() { method in class:SafeSaxTest.ElementCounter
75 public void end(String body) { method in class:SafeSaxTest.TextElementCounter
133 public void end(String body) {
219 public void end(String body) {
226 public void end(String body) {
236 public void end(String body) {
275 public void end(String body) {
282 public void end(String body) {
289 public void end(String body) {
296 public void end(Strin
343 public void end() { method in class:SafeSaxTest.HandlerFactory.VideoListener
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h180 iterator end() { function in class:mcld::GCFactoryBase
186 const_iterator end() const { function in class:mcld::GCFactoryBase
H A DTargetRegistry.h137 static iterator end() { return s_TargetList.end(); } function in class:mcld::TargetRegistry
223 llvm::TargetRegistry::iterator TIter, TEnd = llvm::TargetRegistry::end();
258 } //end namespace mcld
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp175 } // end of while
177 } // end of if
178 } // end of for
220 size_t end = name_field.find_first_of(" :"); local
223 name_field.substr(begin, end - begin).getAsInteger(10, name_offset);
225 if (':' == name_field[end]) {
227 begin = end + 1;
228 end = name_field.find_first_of(' ', begin);
229 name_field.substr(begin, end - begin).getAsInteger(10, pNestedOffset);
234 end
[all...]
/frameworks/native/include/private/ui/
H A DRegionHelper.h202 RECT const * const end = rects + count; local
204 while (rects != end && rects->top == top) {
208 if (rects != end) {
/frameworks/native/libs/utils/
H A DBufferedTextOutput.cpp162 const char* const end = txt+len; local
166 while (txt < end) {
169 while (txt < end && *txt != '\n') txt++;
172 while (txt < end && *txt == '\n') txt++;
189 while (txt < end) {
H A DDebug.cpp166 char* end = typetostring(typeCode, buffer); local
167 *end = 0;
/frameworks/native/opengl/libs/EGL/
H A Degl_display.cpp215 char const* end; local
218 end = strchr(start, ' ');
219 if (end) {
221 const size_t len = end - start;
236 start = end + 1;
238 } while (end);
343 // This cannot be called with the lock held because it might end-up
385 // This cannot be called with the lock held because it might end-up
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp195 int start, end; local
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp97 int start, end; local
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp233 Region::const_iterator const end = reg.end(); member in class:android::Region
234 while (it != end) {
/frameworks/support/v7/gridlayout/gen/android/support/v7/gridlayout/
H A DR.java119 <tr><td><code>end</code></td><td>0x00800005</td><td> Push object to the end of its container, not changing its size. </td></tr>
227 public static int end=0x7f020011; field in class:R.id
638 <tr><td><code>end</code></td><td>0x00800005</td><td> Push object to the end of its container, not changing its size. </td></tr>
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_rel.c178 {"<o-dd:end>","</o-dd:end>"}
185 char* end = strstr((char*)drm_constrain,all_vaild_constraints[i][1]); local
187 if(end && (end < constrain_end)){
200 || (0 == strncmp(all_vaild_constraints[i][0],"<o-dd:end>",strlen("<o-dd:end>")))){
207 constrain_len -= (end - start);
488 "o-ex:rights\\o-ex:agreement\\o-ex:permission\\o-dd:%s\\o-ex:constraint\\o-dd:datetime\\o-dd:end",
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java80 CharSequence rtrim(CharSequence substr, int start, int end) { argument
81 while (end > start && !isGraphicOrEmoji(substr.charAt(end-1))) {
82 end--;
84 if (end > start) {
85 return substr.subSequence(start, end);
100 int end = l.getLineEnd(0);
101 this.next = this.current + end;
102 return rtrim(substr, start, end);
127 int end
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp133 size_t end = (commaPos < 0) ? val.size() : commaPos; local
135 AString nalString(val, start, end - start);
266 char *end; local
267 objectType = strtoul(s, &end, 10);
268 CHECK(end > s && *end == '\0');
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp103 char *end; local
104 unsigned long x = strtoul(colonPos + 1, &end, 10);
106 if (end == colonPos + 1 || *end != '\0' || x >= 65536) {
/frameworks/base/cmds/servicemanager/
H A Dbinder.c198 uint32_t *end = ptr + (size / 4); local
200 while (ptr < end) {
221 if ((end - ptr) * sizeof(uint32_t) < sizeof(struct binder_txn)) {
242 if ((end - ptr) * sizeof(uint32_t) < sizeof(struct binder_txn)) {
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java61 * cancel or end when cancel() or end() is called on this AnimatorSet
98 * terminated (by calling cancel() or end()).
100 * child animations of this AnimatorSet end. It also determines whether cancel/end
300 // send out the end event to all listeners
323 public void end() { method in class:AnimatorSet
327 // hasn't been started yet - sort the nodes now, then end them
341 node.animation.end();
545 // end even
[all...]

Completed in 367 milliseconds

12345678910