/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | ConstrainedFieldPosition.java | 216 * Gets the INCLUSIVE start index for the current position. 220 * @return The start index saved in the instance. 290 * @param start 291 * The new inclusive start index. 296 public void setState(Field field, Object value, int start, int limit) { in setState() argument 304 fStart = start; in setState()
|
H A D | UCharacterIterator.java | 94 public static final UCharacterIterator getInstance(char[] source, int start, int limit) { in getInstance() argument 95 return new UCharArrayIterator(source, start, limit); in getInstance() 230 * @return the previous code unit in the text, or DONE if the new index is before the start of the text. 236 * Retreat to the start of the previous code point in the text, and return it (pre-decrement semantics). If the 238 * the iterator is decremented to the start of the surrogate pair, and the code point represented by the pair is 241 * @return the previous code point in the text, or DONE if the new index is before the start of the text. 279 * Sets the current index to the start. 313 * the position within the array to start putting the data.
|
/third_party/icu/icu4c/source/i18n/ |
H A D | uitercollationiterator.h | 69 state(ITER_CHECK_FWD), start(startIndex), in FCDUIterCollationIterator() 119 * The input text [start..(iter index)[ passes the FCD check. 127 * start & pos are undefined. 131 * The input text [start..limit[ passes the FCD check. 136 * The input text [start..limit[ failed the FCD check and was normalized. 142 * The input text [start..limit[ failed the FCD check and was normalized. 144 * The text iterator is at the start index. 151 int32_t start; member in FCDUIterCollationIterator
|
H A D | utf8collationiterator.h | 85 state(CHECK_FWD), start(p), in FCDUTF8CollationIterator() 139 * The input text [start..pos[ passes the FCD check. 147 * start is undefined. 151 * The input text [start..limit[ passes the FCD check. 156 * The input text [start..limit[ failed the FCD check and was normalized. 164 int32_t start; member in FCDUTF8CollationIterator
|
H A D | quant.cpp | 69 int32_t start = offset; in matches() local 93 offset = start; in matches()
|
H A D | string_segment.cpp | 29 void StringSegment::setOffset(int32_t start) { in setOffset() argument 30 fStart = start; in setOffset()
|
H A D | regexcmp.h | 113 int32_t minMatchLength(int32_t start, 115 int32_t maxMatchLength(int32_t start, 181 // needs to add a SAVE at the start of a (block) 189 // at the start of the most recently processed
|
H A D | brktrans.cpp | 101 bi->preceding(offsets.start); in handleTransliterate() 143 offsets.start = isIncremental ? lastBoundary + delta : offsets.limit; in handleTransliterate()
|
H A D | rbt.cpp | 207 * text is inserted or removed. The start offset moves toward in handleTransliterate() 213 * |eabcd begin - no match, advance start in handleTransliterate() 214 * e|abcd match rule 1 - change text & adjust start in handleTransliterate() 215 * ex|ycd match rule 2 - change text & adjust start in handleTransliterate() 216 * exz|d no match, advance start in handleTransliterate() 230 uint32_t loopLimit = index.limit - index.start; in handleTransliterate() 271 while (index.start < index.limit && in handleTransliterate()
|
H A D | rbt_pars.h | 205 * Set the variable range to [start, end] (inclusive). 206 * @param start the start value of the range. 209 void setVariableRange(int32_t start, int32_t end, UErrorCode& status); 258 * In any case the rule start will be correctly reported. 261 * @param start position of first character of current rule. 262 * @return start position of first character of current rule. 264 int32_t syntaxError(UErrorCode parseErrorCode, const UnicodeString&, int32_t start, 272 * @param pos the position in pattern at which to start parsing.
|
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | listformatter.h | 57 ListFormatData(const UnicodeString& two, const UnicodeString& start, const UnicodeString& middle, const UnicodeString& end, in ListFormatData() 59 twoPattern(two), startPattern(start), middlePattern(middle), endPattern(end), locale(loc) {} in ListFormatData() 76 * The fields are returned from start to end. The special field category
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | SimpleHoliday.java | 148 Calendar start = new GregorianCalendar(startYear, Calendar.JANUARY, 1); in rangeRule() 149 rangeRule.add(start.getTime(), rule); in rangeRule()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | NameUnicodeTransliterator.java | 61 int cursor = offsets.start; in handleTransliterate() 170 offsets.start = (isIncremental && openPos >= 0) ? openPos : cursor; in handleTransliterate()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
H A D | IncrementalProgressTest.java | 53 // we have a few special cases. Any-Remove (pos.start = 0, but also = limit) and U+XXXXX?X? in CheckIncrementalAux() 54 if (pos.start == 0 && pos.limit != 0 && !t.getID().equals("Hex-Any/Unicode")) { in CheckIncrementalAux() 61 if (pos.start != pos.limit) { in CheckIncrementalAux()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | NameUnicodeTransliterator.java | 62 int cursor = offsets.start; in handleTransliterate() 171 offsets.start = (isIncremental && openPos >= 0) ? openPos : cursor; in handleTransliterate()
|
H A D | UCharacterIterator.java | 88 public static final UCharacterIterator getInstance(char[] source, int start, int limit) { in getInstance() argument 89 return new UCharArrayIterator(source, start, limit); in getInstance() 215 * @return the previous code unit in the text, or DONE if the new index is before the start of the text. 220 * Retreat to the start of the previous code point in the text, and return it (pre-decrement semantics). If the 222 * the iterator is decremented to the start of the surrogate pair, and the code point represented by the pair is 225 * @return the previous code point in the text, or DONE if the new index is before the start of the text. 259 * Sets the current index to the start. 291 * the position within the array to start putting the data.
|
H A D | ConstrainedFieldPosition.java | 209 * Gets the INCLUSIVE start index for the current position. 213 * @return The start index saved in the instance. 278 * @param start 279 * The new inclusive start index. 283 public void setState(Field field, Object value, int start, int limit) { in setState() argument 289 fStart = start; in setState()
|
H A D | ChineseDateFormat.java | 153 protected int subParse(String text, int start, char ch, int count, boolean obeyCount, boolean allowNegative, in subParse() argument 161 return super.subParse(text, start, ch, count, obeyCount, allowNegative, ambiguousYear, cal); in subParse()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | SimpleHoliday.java | 150 Calendar start = new GregorianCalendar(startYear, Calendar.JANUARY, 1); in rangeRule() 151 rangeRule.add(start.getTime(), rule); in rangeRule()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
H A D | IncrementalProgressTest.java | 50 // we have a few special cases. Any-Remove (pos.start = 0, but also = limit) and U+XXXXX?X? in CheckIncrementalAux() 51 if (pos.start == 0 && pos.limit != 0 && !t.getID().equals("Hex-Any/Unicode")) { in CheckIncrementalAux() 58 if (pos.start != pos.limit) { in CheckIncrementalAux()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
H A D | FormattedNumberRange.java | 85 public CharSequence subSequence(int start, int end) { in subSequence() argument 86 return string.subString(start, end); in subSequence()
|
/third_party/libdrm/include/drm/ |
H A D | savage_drm.h | 187 unsigned short start; /* first register */ member 195 unsigned short start; /* first vertex in DMA/vertex buffer */ member
|
/third_party/lzma/CS/7zip/Compress/RangeCoder/ |
H A D | RangeCoderBit.cs | 55 UInt32 start = (UInt32)1 << (kNumBits - i - 1);
in BitEncoder() 57 for (UInt32 j = start; j < end; j++)
in BitEncoder()
|
/third_party/lzma/Java/SevenZip/Compression/RangeCoder/ |
H A D | Encoder.java | 131 int start = 1 << (kNumBits - i - 1);
133 for (int j = start; j < end; j++)
|
/third_party/mesa3d/.gitlab-ci/lava/utils/ |
H A D | gitlab_section.py | 46 collapse = marker == "start" and self.start_collapsed 58 print(self.start()) 64 def start(self) -> str: member in GitlabSection 67 return self.section(marker="start", header=self.header, time=self.__start_time)
|