OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:subend
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/text/
AlteredCharSequence.java
31
* offsets <code>substart</code> inclusive to <code>
subend
</code> exclusive
35
int substart, int
subend
) {
37
return new AlteredSpanned(source, sub, substart,
subend
);
39
return new AlteredCharSequence(source, sub, substart,
subend
);
43
int substart, int
subend
) {
47
mEnd =
subend
;
50
/* package */ void update(char[] sub, int substart, int
subend
) {
53
mEnd =
subend
;
61
int substart, int
subend
) {
62
super(source, sub, substart,
subend
);
[
all
...]
/external/icu4c/i18n/
nfrule.cpp
407
int32_t
subEnd
= subStart;
419
subEnd
= subStart + 2;
425
subEnd
= ruleText.indexOf(c, subStart + 1);
427
if (c == gLessThan &&
subEnd
!= -1 &&
subEnd
< ruleText.length() - 1 && ruleText.charAt(
subEnd
+1) == c) {
432
++
subEnd
;
439
if (
subEnd
== -1) {
448
subToken.setTo(ruleText, subStart,
subEnd
+ 1 - subStart);
453
ruleText.removeBetween(subStart,
subEnd
+1)
[
all
...]
/dalvik/docs/
prettify.js
788
var
subEnd
= j + 2 < m ? subDecs[j + 2] : chunk.length;
789
var token = source.substring(subStart,
subEnd
);
[
all
...]
Completed in 1072 milliseconds