OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currIndex
(Results
1 - 14
of
14
) sorted by null
/external/icu4c/layout/
ContextualGlyphInsertionProc2.cpp
44
le_int16
currIndex
= SWAPW(entry->currentInsertionListIndex);
88
if (
currIndex
> 0) {
94
for (i = 0; i < count; i++,
currIndex
++) {
95
insertGlyphs[i] = insertionTable[
currIndex
];
102
for (i = 1; i < count + 1; i++,
currIndex
++) {
103
insertGlyphs[i] = insertionTable[
currIndex
];
112
for (i = 0; i < count; i++,
currIndex
++) {
113
insertGlyphs[i] = insertionTable[
currIndex
];
120
for (i = 1; i < count + 1; i++,
currIndex
++) {
121
insertGlyphs[i] = insertionTable[
currIndex
];
[
all
...]
ContextualGlyphSubstitution.h
48
le_uint16
currIndex
;
ContextualGlyphSubstProc2.cpp
46
le_int16
currIndex
= SWAPW(entry->
currIndex
);
55
if (
currIndex
!= -1) {
56
le_uint32 offset = SWAPL(perGlyphTable[
currIndex
]);
/external/icu4c/i18n/
csdetect.cpp
296
int32_t
currIndex
;
317
if(((Context *)en->context)->
currIndex
>= fCSRecognizers_size) {
323
const char *currName = fCSRecognizers[((Context *)en->context)->
currIndex
]->getName();
327
((Context *)en->context)->
currIndex
++;
334
((Context *)en->context)->
currIndex
= 0;
ucurr.cpp
[
all
...]
/external/chromium_org/third_party/icu/source/i18n/
csdetect.cpp
342
int32_t
currIndex
;
363
if(((Context *)en->context)->
currIndex
>= fCSRecognizers_size) {
369
const char *currName = fCSRecognizers[((Context *)en->context)->
currIndex
]->getName();
373
((Context *)en->context)->
currIndex
++;
380
((Context *)en->context)->
currIndex
= 0;
ucurr.cpp
[
all
...]
/external/chromium_org/third_party/icu/source/test/cintltst/
uenumtst.c
38
int32_t
currIndex
;
65
if(cont->
currIndex
>= cont->maxIndex) {
73
cont->currChar = (cont->array)[cont->
currIndex
];
76
cont->
currIndex
++;
82
if(cont->
currIndex
>= cont->maxIndex) {
86
cont->currChar = (cont->array)[cont->
currIndex
];
88
cont->
currIndex
++;
94
cont->
currIndex
= 0;
144
int32_t
currIndex
;
166
if(ucont->
currIndex
>= ucont->maxIndex)
[
all
...]
/external/icu4c/test/cintltst/
uenumtst.c
38
int32_t
currIndex
;
65
if(cont->
currIndex
>= cont->maxIndex) {
73
cont->currChar = (cont->array)[cont->
currIndex
];
76
cont->
currIndex
++;
82
if(cont->
currIndex
>= cont->maxIndex) {
86
cont->currChar = (cont->array)[cont->
currIndex
];
88
cont->
currIndex
++;
94
cont->
currIndex
= 0;
144
int32_t
currIndex
;
166
if(ucont->
currIndex
>= ucont->maxIndex)
[
all
...]
/libcore/crypto/src/main/java/org/conscrypt/
TrustManagerImpl.java
329
int
currIndex
;
332
for (
currIndex
= 0;
currIndex
< chain.length;
currIndex
++) {
339
for (int nextIndex =
currIndex
+ 1; nextIndex < chain.length; nextIndex++) {
340
if (chain[
currIndex
].getIssuerDN().equals(chain[nextIndex].getSubjectDN())) {
342
// Exchange certificates so that 0 through
currIndex
+ 1 are in proper order
343
if (nextIndex !=
currIndex
+ 1) {
349
chain[nextIndex] = chain[
currIndex
+ 1];
350
chain[
currIndex
+ 1] = tempCertificate
[
all
...]
/libcore/luni/src/main/java/java/awt/font/
NumericShaper.java
705
int
currIndex
;
707
currIndex
= INDEX_EUROPEAN;
709
currIndex
= contextIndex;
714
if (
currIndex
!= INDEX_ETHIOPIC || text[ind] != '0'){
715
text[ind] = (char)(digitsLowRanges[
currIndex
] + text[ind]);
720
if (
currIndex
!= index){
722
currIndex
= index;
724
currIndex
= INDEX_EUROPEAN;
[
all
...]
/external/jdiff/src/jdiff/
HTMLIndexes.java
322
Index
currIndex
= null; // The entry which is emitted
326
if (
currIndex
== null) {
327
currIndex
= nextIndex; // Prime the pump
329
if (nextIndex.name_.compareTo(
currIndex
.name_) == 0) {
336
oldsw = emitIndexEntry(
currIndex
, oldsw, multipleMarker);
340
oldsw = emitIndexEntry(
currIndex
, oldsw, multipleMarker);
343
currIndex
= nextIndex;
346
// Emit the last entry left in
currIndex
349
if (
currIndex
!= null)
350
oldsw = emitIndexEntry(
currIndex
, oldsw, multipleMarker)
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java
829
findNextPCharOrNonPOrNonWCharIndex(String phoneNumber, int
currIndex
) {
830
boolean wMatched = isWait(phoneNumber.charAt(
currIndex
));
831
int index =
currIndex
+ 1;
849
if ((index < length) && (index > (
currIndex
+ 1)) &&
850
((wMatched == false) && isPause(phoneNumber.charAt(
currIndex
)))) {
851
return (
currIndex
+ 1);
903
int
currIndex
= 0;
905
while (
currIndex
< length) {
906
c = phoneNumber.charAt(
currIndex
);
908
if (
currIndex
< length - 1)
[
all
...]
/external/guava/guava/lib/
jdiff.jar
Completed in 847 milliseconds