/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | ComposedCharIter.java | 109 if (nextChar == Normalizer.DONE) { in hasNext() 112 return nextChar != Normalizer.DONE; in hasNext() 125 if (nextChar == Normalizer.DONE) { in next() 128 curChar = nextChar; in next() 129 nextChar = Normalizer.DONE; in next() 168 nextChar=c; in findNextChar() 174 private int nextChar = Normalizer.DONE; field in ComposedCharIter
|
D | CharsetRecog_mbcs.java | 60 for (iter.reset(); nextChar(iter, det);) { in match() 179 abstract boolean nextChar(iteratedChar it, CharsetDetector det); in nextChar() method in CharsetRecog_mbcs 202 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_sjis 268 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_big5 330 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_euc 476 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_gb_18030
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ComposedCharIter.java | 107 if (nextChar == Normalizer.DONE) { in hasNext() 110 return nextChar != Normalizer.DONE; in hasNext() 123 if (nextChar == Normalizer.DONE) { in next() 126 curChar = nextChar; in next() 127 nextChar = Normalizer.DONE; in next() 166 nextChar=c; in findNextChar() 172 private int nextChar = Normalizer.DONE; field in ComposedCharIter
|
D | CharsetRecog_mbcs.java | 59 for (iter.reset(); nextChar(iter, det);) { in match() 178 abstract boolean nextChar(iteratedChar it, CharsetDetector det); in nextChar() method in CharsetRecog_mbcs 201 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_sjis 267 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_big5 329 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_euc 475 boolean nextChar(iteratedChar it, CharsetDetector det) { in nextChar() method in CharsetRecog_mbcs.CharsetRecog_gb_18030
|
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
D | AsYouTypeFormatter.java | 290 public String inputDigit(char nextChar) { in inputDigit() argument 291 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, false); in inputDigit() 301 public String inputDigitAndRememberPosition(char nextChar) { in inputDigitAndRememberPosition() argument 302 currentOutput = inputDigitWithOptionToRememberPosition(nextChar, true); in inputDigitAndRememberPosition() 307 private String inputDigitWithOptionToRememberPosition(char nextChar, boolean rememberPosition) { in inputDigitWithOptionToRememberPosition() argument 308 accruedInput.append(nextChar); in inputDigitWithOptionToRememberPosition() 314 if (!isDigitOrLeadingPlusSign(nextChar)) { in inputDigitWithOptionToRememberPosition() 318 nextChar = normalizeAndAccrueDigitsAndPlusSign(nextChar, rememberPosition); in inputDigitWithOptionToRememberPosition() 363 String tempNationalNumber = inputDigitHelper(nextChar); in inputDigitWithOptionToRememberPosition() 413 private boolean isDigitOrLeadingPlusSign(char nextChar) { in isDigitOrLeadingPlusSign() argument [all …]
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
D | asyoutypeformatter.js | 503 i18n.phonenumbers.AsYouTypeFormatter.prototype.inputDigit = function(nextChar) { argument 505 this.inputDigitWithOptionToRememberPosition_(nextChar, false); 521 function(nextChar) { argument 524 this.inputDigitWithOptionToRememberPosition_(nextChar, true); 536 inputDigitWithOptionToRememberPosition_ = function(nextChar, argument 539 this.accruedInput_.append(nextChar); 545 if (!this.isDigitOrLeadingPlusSign_(nextChar)) { 549 nextChar = this.normalizeAndAccrueDigitsAndPlusSign_(nextChar, 604 var tempNationalNumber = this.inputDigitHelper_(nextChar); 695 function(nextChar) { argument [all …]
|
/third_party/node/deps/npm/node_modules/strip-json-comments/ |
D | index.js | 17 var nextChar; 26 nextChar = str[i + 1]; 39 if (!insideComment && currentChar + nextChar === '//') { 44 } else if (insideComment === singleComment && currentChar + nextChar === '\r\n') { 54 } else if (!insideComment && currentChar + nextChar === '/*') { 60 } else if (insideComment === multiComment && currentChar + nextChar === '*/') {
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
D | CMapFormat12.java | 71 private int nextChar; field in CMapFormat12.CharacterIterator 74 nextChar = groupStartChar(groupIndex); in CharacterIterator() 87 if (nextChar < groupEndChar) { in hasNext() 88 nextChar++; in hasNext() 95 nextChar = groupStartChar(groupIndex); in hasNext() 110 return nextChar; in next()
|
D | CMapFormat13.java | 70 private int nextChar; field in CMapFormat13.CharacterIterator 73 nextChar = groupStartChar(groupIndex); in CharacterIterator() 86 if (nextChar < groupEndChar) { in hasNext() 87 nextChar++; in hasNext() 94 nextChar = groupStartChar(groupIndex); in hasNext() 109 return nextChar; in next()
|
D | CMapFormat8.java | 61 private int nextChar; field in CMapFormat8.CharacterIterator 78 nextChar = firstCharInGroup; in hasNext() 82 if (nextChar < endCharInGroup) { in hasNext() 83 nextChar++; in hasNext() 101 return nextChar; in next()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
D | CMapFormat13.java | 70 private int nextChar; field in CMapFormat13.CharacterIterator 73 nextChar = groupStartChar(groupIndex); in CharacterIterator() 86 if (nextChar < groupEndChar) { in hasNext() 87 nextChar++; in hasNext() 94 nextChar = groupStartChar(groupIndex); in hasNext() 109 return nextChar; in next()
|
D | CMapFormat12.java | 71 private int nextChar; field in CMapFormat12.CharacterIterator 74 nextChar = groupStartChar(groupIndex); in CharacterIterator() 87 if (nextChar < groupEndChar) { in hasNext() 88 nextChar++; in hasNext() 95 nextChar = groupStartChar(groupIndex); in hasNext() 110 return nextChar; in next()
|
D | CMapFormat8.java | 61 private int nextChar; field in CMapFormat8.CharacterIterator 78 nextChar = firstCharInGroup; in hasNext() 82 if (nextChar < endCharInGroup) { in hasNext() 83 nextChar++; in hasNext() 101 return nextChar; in next()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | csrmbcs.h | 90 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0; 103 UBool nextChar(IteratedChar *it, InputText *det) const; 134 UBool nextChar(IteratedChar *it, InputText *det) const; 177 UBool nextChar(IteratedChar* it, InputText* det) const; 196 UBool nextChar(IteratedChar* it, InputText* det) const;
|
D | csrmbcs.cpp | 157 while (nextChar(&iter, det)) { in match_mbcs() 244 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_sjis 293 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_euc 406 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const in nextChar() function in CharsetRecog_big5 458 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_gb_18030
|
/third_party/icu/icu4c/source/i18n/ |
D | csrmbcs.h | 90 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0; 103 UBool nextChar(IteratedChar *it, InputText *det) const; 134 UBool nextChar(IteratedChar *it, InputText *det) const; 177 UBool nextChar(IteratedChar* it, InputText* det) const; 196 UBool nextChar(IteratedChar* it, InputText* det) const;
|
D | csrmbcs.cpp | 157 while (nextChar(&iter, det)) { in match_mbcs() 244 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_sjis 293 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_euc 406 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const in nextChar() function in CharsetRecog_big5 458 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_gb_18030
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | csrmbcs.h | 90 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0; 103 UBool nextChar(IteratedChar *it, InputText *det) const; 134 UBool nextChar(IteratedChar *it, InputText *det) const; 177 UBool nextChar(IteratedChar* it, InputText* det) const; 196 UBool nextChar(IteratedChar* it, InputText* det) const;
|
D | csrmbcs.cpp | 157 while (nextChar(&iter, det)) { in match_mbcs() 244 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_sjis 293 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_euc 406 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const in nextChar() function in CharsetRecog_big5 458 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_gb_18030
|
/third_party/node/deps/icu-small/source/i18n/ |
D | csrmbcs.h | 90 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0; 103 UBool nextChar(IteratedChar *it, InputText *det) const override; 134 UBool nextChar(IteratedChar *it, InputText *det) const override; 177 UBool nextChar(IteratedChar* it, InputText* det) const override; 196 UBool nextChar(IteratedChar* it, InputText* det) const override;
|
D | csrmbcs.cpp | 157 while (nextChar(&iter, det)) { in match_mbcs() 244 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_sjis 293 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_euc 406 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const in nextChar() function in CharsetRecog_big5 458 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { in nextChar() function in CharsetRecog_gb_18030
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | JsonTokenizer.cs | 718 private char? nextChar; field in Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader 726 if (nextChar != null) in Read() 728 char? tmp = nextChar; in Read() 729 nextChar = null; in Read() 748 if (nextChar != null) in PushBack() 752 nextChar = c; in PushBack()
|
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/ |
D | dbcs-codec.js | 286 seqObj = this.seqObj, nextChar = -1, 291 if (nextChar === -1) { 296 var uCode = nextChar; 297 nextChar = -1; 324 nextChar = uCode; uCode = UNASSIGNED; // Write an error, then current char. 345 … nextChar = uCode; // Current character will be written too in the next iteration.
|
/third_party/node/deps/icu-small/source/tools/genrb/ |
D | rle.c | 301 UBool nextChar = true; in rleStringToByteArray() local 335 if (nextChar) { in rleStringToByteArray() 338 nextChar = false; in rleStringToByteArray() 342 nextChar = true; in rleStringToByteArray()
|
/third_party/skia/third_party/externals/icu/source/tools/genrb/ |
D | rle.c | 301 UBool nextChar = true; in rleStringToByteArray() local 335 if (nextChar) { in rleStringToByteArray() 338 nextChar = false; in rleStringToByteArray() 342 nextChar = true; in rleStringToByteArray()
|