Home
last modified time | relevance | path

Searched refs:fRuleSource (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/common/
Drbbidata.cpp84 fRuleSource = NULL; in init0()
122 fRuleSource = (UChar *)((char *)data + fHeader->fRuleSource); in init()
123 fRuleString.setTo(TRUE, fRuleSource, -1); in init()
265 for (int32_t c=0; fRuleSource[c] != 0; c++) { in printData()
266 RBBIDebugPrintf("%c", fRuleSource[c]); in printData()
407 …ds->swapArray16(ds, inBytes+ds->readUInt32(rbbiDH->fRuleSource), ds->readUInt32(rbbiDH->fRuleSourc… in ubrk_swap()
408 outBytes+ds->readUInt32(rbbiDH->fRuleSource), status); in ubrk_swap()
Drbbidata.h86 uint32_t fRuleSource; /* Offset to the source for for the break */ member
173 const UChar *fRuleSource; variable
Drbbirb.cpp190 data->fRuleSource = data->fStatusTable + statusTableSize; in flattenData()
204 fStrippedRules.extract((UChar *)((uint8_t *)data+data->fRuleSource), rulesSize/2+1, *fStatus); in flattenData()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRBBIDataWrapper.java138 public String fRuleSource; field in RBBIDataWrapper
229 int fRuleSource; // Offset to the source for for the break field in RBBIDataWrapper.RBBIDataHeader
276 This.fHeader.fRuleSource = bytes.getInt(); in get()
357 if (pos > This.fHeader.fRuleSource) { in get()
360 ICUBinary.skipBytes(bytes, This.fHeader.fRuleSource - pos); in get()
361 pos = This.fHeader.fRuleSource; in get()
362 This.fRuleSource = ICUBinary.getString( in get()
385 out.println("Source Rules: " + fRuleSource); in dump()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DRBBIDataWrapper.java141 public String fRuleSource; field in RBBIDataWrapper
233 int fRuleSource; // Offset to the source for for the break field in RBBIDataWrapper.RBBIDataHeader
280 This.fHeader.fRuleSource = bytes.getInt(); in get()
361 if (pos > This.fHeader.fRuleSource) { in get()
364 ICUBinary.skipBytes(bytes, This.fHeader.fRuleSource - pos); in get()
365 pos = This.fHeader.fRuleSource; in get()
366 This.fRuleSource = ICUBinary.getString( in get()
389 out.println("Source Rules: " + fRuleSource); in dump()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedBreakIterator.java164 (!fRData.fRuleSource.equals(other.fRData.fRuleSource))) { in equals()
188 retStr = fRData.fRuleSource; in toString()
200 return fRData.fRuleSource.hashCode(); in hashCode()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRuleBasedBreakIterator.java167 (!fRData.fRuleSource.equals(other.fRData.fRuleSource))) { in equals()
192 retStr = fRData.fRuleSource; in toString()
205 return fRData.fRuleSource.hashCode(); in hashCode()
/external/icu/icu4c/source/test/intltest/
Drbbiapts.cpp1037 builtSource = (const UChar *)(builtRules + ((RBBIDataHeader*)builtRules)->fRuleSource); in RoundtripRule()