Home
last modified time | relevance | path

Searched refs:_text (Results 1 – 25 of 34) sorted by relevance

12

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DTextTrieMap.java132 private CharSequence _text; field in TextTrieMap.CharIterator
139 _text = text; in CharIterator()
149 if (_nextIdx == _text.length() && _remainingChar == null) { in hasNext()
160 if (_nextIdx == _text.length() && _remainingChar == null) { in next()
169 int cp = UCharacter.foldCase(Character.codePointAt(_text, _nextIdx), true); in next()
178 next = _text.charAt(_nextIdx); in next()
247 private char[] _text; field in TextTrieMap.Node
255 _text = text; in Node()
261 return _text == null ? 0 : _text.length; in charCount()
292 if (ch < child._text[0]) { in findMatch()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTextTrieMap.java124 private CharSequence _text; field in TextTrieMap.CharIterator
131 _text = text; in CharIterator()
141 if (_nextIdx == _text.length() && _remainingChar == null) { in hasNext()
152 if (_nextIdx == _text.length() && _remainingChar == null) { in next()
161 int cp = UCharacter.foldCase(Character.codePointAt(_text, _nextIdx), true); in next()
170 next = _text.charAt(_nextIdx); in next()
238 private char[] _text; field in TextTrieMap.Node
246 _text = text; in Node()
252 return _text == null ? 0 : _text.length; in charCount()
283 if (ch < child._text[0]) { in findMatch()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DStringTokenIterator.java12 private String _text; field in StringTokenIterator
21 _text = text; in StringTokenIterator()
51 _token = _text.substring(_start, _end); in next()
61 return (_end < _text.length()); in hasNext()
65 if (offset > _text.length()) { in setStart()
70 _token = _text.substring(_start, _end); in setStart()
76 _text = text; in setText()
83 outer: while (idx < _text.length()) { in nextDelimiter()
84 char c = _text.charAt(idx); in nextDelimiter()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
DStringTokenIterator.java16 private String _text; field in StringTokenIterator
25 _text = text; in StringTokenIterator()
55 _token = _text.substring(_start, _end); in next()
65 return (_end < _text.length()); in hasNext()
69 if (offset > _text.length()) { in setStart()
74 _token = _text.substring(_start, _end); in setStart()
80 _text = text; in setText()
87 outer: while (idx < _text.length()) { in nextDelimiter()
88 char c = _text.charAt(idx); in nextDelimiter()
/third_party/skia/demos.skia.org/demos/textedit/
Dtextapi_utils.js243 _text: text, property
274 ASSERT(a >= 0 && a <= b && b <= this._text.length);
297 index = Math.max(Math.min(this._index.start + dx, this._text.length), 0);
310 index = this._text.length;
322 ASSERT(len === this._text.length);
326 ASSERT(len === this._text.length);
348 this._lines = CanvasKit.ParagraphBuilder.ShapeText(this._text, blocks, this._width);
365 ASSERT(start >= 0 && end <= this._text.length);
373 this._text = string_del(this._text, start, end);
385 if (start >= this._text.length) {
[all …]
/third_party/skia/modules/canvaskit/npm_build/
Dtextapi_utils.js254 _text: text, property
285 ASSERT(a >= 0 && a <= b && b <= this._text.length);
308 index = Math.max(Math.min(this._index.start + dx, this._text.length), 0);
321 index = this._text.length;
336 ASSERT(len === this._text.length);
343 ASSERT(len === this._text.length);
373 this._lines = CanvasKit.ParagraphBuilder.ShapeText(this._text, blocks, this._width);
390 ASSERT(start >= 0 && end <= this._text.length);
398 this._text = string_del(this._text, start, end);
425 this._text = this._text.slice(0, index) + charcode + this._text.slice(index);
[all …]
/third_party/python/Lib/email/mime/
Dtext.py17 def __init__(self, _text, _subtype='plain', _charset=None, *, policy=None): argument
34 _text.encode('us-ascii')
42 self.set_payload(_text, _charset)
/third_party/python/Tools/c-analyzer/cpython/
D_capi.py195 self._text = (prev + line).rstrip().splitlines()
197 self._text = [line.rstrip()]
207 return self._text
210 self._text = []
212 self._text = [
216 self._text = [
220 self._text = [
224 self._text = [
229 self._text = [
235 return self._text
/third_party/boost/boost/gil/extension/io/png/detail/
Dwriter_backend.hpp319 pt.compression = _info._text[i]._compression; in write_header()
320 pt.key = const_cast< png_charp >( this->_info._text[i]._key.c_str() ); in write_header()
321 pt.text = const_cast< png_charp >( this->_info._text[i]._text.c_str() ); in write_header()
322 pt.text_length = _info._text[i]._text.length(); in write_header()
Dreader_backend.hpp528 this->_info._text.resize( this->_info._num_text ); in read_header()
535 this->_info._text[i]._compression = text[i].compression; in read_header()
536 this->_info._text[i]._key.append( text[i].key in read_header()
540 this->_info._text[i]._text.append( text[i].text in read_header()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/text/
Dmeasurement.dart620 LinesCalculator(this._canvasContext, this._text, this._style, this._maxWidth);
623 final String _text;
641 /// Consumes the next line break opportunity in [_text].
650 _excludeTrailing(_text, _chunkStart, chunkEnd, _whitespacePredicate);
658 _text,
685 _text,
689 lines.add(_text.substring(_lineStart, breakingPoint) + _style.ellipsis);
692 _forceBreak(_maxWidth, _text, _lineStart, chunkEndWithoutSpace);
722 _text,
727 lines.add(_text.substring(_lineStart, indexWithoutNewlines));
[all …]
/third_party/flatbuffers/src/
Didl_gen_text.cpp353 const StructDef &struct_def, std::string *_text) { in GenerateTextImpl() argument
354 JsonPrinter printer(parser, *_text); in GenerateTextImpl()
362 const std::string &table_name, std::string *_text) { in GenerateTextFromTable() argument
366 return GenerateTextImpl(parser, root, *struct_def, _text); in GenerateTextFromTable()
371 std::string *_text) { in GenerateText() argument
375 return GenerateTextImpl(parser, root, *parser.root_struct_def_, _text); in GenerateText()
/third_party/flutter/engine/flutter/shell/platform/darwin/macos/framework/Source/
DFlutterTextInputModel.mm81 _text = [[NSMutableString alloc] init];
100 kTextKey : _text
121 [_text setString:text];
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/
Dversion.dart19 Version._(this.major, this.minor, this.patch, this._text) {
74 final String _text;
106 String toString() => _text;
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dtext_painter.dart151 _text = text,
174 InlineSpan get text => _text;
175 InlineSpan _text;
178 if (_text == value)
180 if (_text?.style != value?.style)
182 _text = value;
393 return _text.style?.getParagraphStyle(
541 _text.build(builder, textScaleFactor: textScaleFactor, dimensions: _placeholderDimensions);
591 final int nextCodeUnit = _text.codeUnitAt(offset);
601 final int prevCodeUnit = _text.codeUnitAt(offset - 1);
[all …]
/third_party/flatbuffers/tests/fuzzer/
Dflatbuffers_scalar_fuzzer.cc218 std::string *_text) { in Parse() argument
221 TEST_EQ(GenerateText(parser, parser.builder_.GetBufferPointer(), _text), in Parse()
224 *_text = parser.error_; in Parse()
/third_party/python/Lib/importlib/metadata/
D_adapters.py5 from ._text import FoldedCase
/third_party/boost/boost/gil/extension/io/png/
Dtags.hpp168 std::string _text; member
392 , _text ( ) in png_info_base()
548 png_text_::type _text; member
/third_party/flutter/flutter/dev/manual_tests/lib/
Dtext.dart536 String _text = 'i';
552 …child: Text(_text, style: style != null ? _style.copyWith(decoration: TextDecoration.underline, de…
586 _text += 'i';
595 _text += 'w';
602 onPressed: _text == '' ? null : () {
604 _text = _text.substring(0, _text.length - 1);
794 String _text;
817 _text = zalgo(
836 text: _text,
901 String _text;
[all …]
/third_party/flatbuffers/include/flatbuffers/
Dutil.h584 inline bool EscapeString(const char *s, size_t length, std::string *_text, in EscapeString() argument
586 std::string &text = *_text; in EscapeString()
/third_party/python/Doc/library/
Demail.mime.rst229 .. class:: MIMEText(_text, _subtype='plain', _charset=None, *, policy=compat32)
235 :mimetype:`text`. *_text* is the string for the payload. *_subtype* is the
/third_party/libffi/src/x86/
Dwin64_intel.S236 _text ends
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
DFlutterTextInputPlugin.mm183 _text = [[NSMutableString alloc] init];
202 [_text release];
/third_party/icu/icu4c/source/test/cintltst/
Dusrchtst.c2533 U_STRING_DECL(_text, "_0IS 0 OK?", TEXT_LEN); in TestSearchForNull()
2537 U_STRING_INIT(_text, "_0IS 0 OK?", TEXT_LEN); in TestSearchForNull()
2552 if (_text[pos] == zerodigit) { in TestSearchForNull()
2555 text[pos] = _text[pos]; in TestSearchForNull()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/nasm/
Djsimdext.inc68 %define SEG_TEXT _text align=32 public use32 class=CODE

12