Home
last modified time | relevance | path

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

123

/external/flatbuffers/src/
Didl_gen_text.cpp27 int indent, const IDLOptions &opts, std::string *_text);
39 std::string *_text) { in OutputIdentifier() argument
40 std::string &text = *_text; in OutputIdentifier()
51 const IDLOptions &opts, std::string *_text) { in Print() argument
52 std::string &text = *_text; in Print()
75 const IDLOptions &opts, std::string *_text) { in PrintVector() argument
76 std::string &text = *_text; in PrintVector()
87 indent + Indent(opts), nullptr, opts, _text)) { in PrintVector()
91 if (!Print(v[i], type, indent + Indent(opts), nullptr, opts, _text)) { in PrintVector()
106 std::string *_text) { in Print() argument
[all …]
/external/icu/android_icu4j/src/main/java/android/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 …]
/external/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 …]
/external/python/cpython2/Demo/xml/
Drss2html.py45 self._text = ""
58 self._text = ""
63 self._out.write(top % (self._text, self._text))
65 self._out.write("<p>%s</p>\n" % self._text)
69 self._title = self._text
71 self._link = self._text
73 self._descr = self._text
90 self._text = self._text + content
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/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()
/external/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()
/external/icu/android_icu4j/src/main/java/android/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()
/external/antlr/runtime/Python3/antlr3/
Dtokens.py61 self._text = text
70 return self._text
74 self._text = value
194 self._text = text
207 if self._text is not None:
208 return self._text
226 self._text = value
/external/adhd/scripts/audio_thread_log_viewer/
Dviewer_c3.py159 self._text = None
169 if self._text:
171 time=self.time, text=self._text, position=self._position,
203 self._text = 'Removed Device %s' % self.device
217 self._text = 'Added Device %s' % self.device
261 self._text = 'Fetch %s' % self.stream
277 self._text = 'Add stream %s' % self.stream
292 self._text = 'Remove stream %s' % self.stream
310 self._text = 'num_fds %s' % num_fds
/external/autotest/client/site_tests/desktopui_SetFieldsWithChromeDriver/
Ddesktopui_SetFieldsWithChromeDriver.py27 self._text = 'Hello World'
52 element.send_keys(self._text)
54 if entered_text != self._text:
56 (self._text, entered_text))
/external/python/cpython3/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)
/external/antlr/runtime/Python/antlr3/
Dtokens.py187 self._text = oldToken._text
206 self._text = text
217 if self._text is not None:
218 return self._text
236 self._text = text
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DCommonToken.as43 protected var _text:String;
56 this._text = text;
90 if ( _text!=null ) {
91 return _text;
96 _text = _input.substring(_start, _stop);
97 return _text;
106 _text = text;
/external/python/cpython2/Lib/email/mime/
Dtext.py17 def __init__(self, _text, _subtype='plain', _charset='us-ascii'): argument
30 self.set_payload(_text, _charset)
/external/lzma/CPP/Common/
DLang.h10 wchar_t *_text; variable
16 CLang(): _text(0) {} in CLang()
/external/antlr/runtime/ObjC/Framework/
DToken+DebuggerSupport.m39 NSString *_text = self.text;
41 if (_text) {
42 escapedText = [_text copyWithZone:nil];
/external/u-boot/arch/arm/lib/
Delf_arm_efi.lds14 _text = .; symbol
24 _text_size = . - _text;
Delf_aarch64_efi.lds14 _text = .; symbol
24 _text_size = . - _text;
/external/u-boot/arch/riscv/lib/
Delf_riscv64_efi.lds16 _text = .; symbol
26 _text_size = . - _text;
Delf_riscv32_efi.lds16 _text = .; symbol
26 _text_size = . - _text;
/external/flatbuffers/tests/fuzzer/
Dflatbuffers_scalar_fuzzer.cc198 std::string *_text) { in Parse() argument
201 TEST_EQ(GenerateText(parser, parser.builder_.GetBufferPointer(), _text), in Parse()
204 *_text = parser.error_; in Parse()
/external/u-boot/include/asm-generic/
Dsections.h13 extern char _text[], _stext[], _etext[];
/external/perf_data_converter/src/testdata/
Dperf-overlapping-kernel-mapping.pb_proto58 filename: "[kernel.kallsyms]_text"
/external/tensorflow/tensorflow/lite/experimental/micro/tools/make/targets/ecm3531/
Decm3531.lds40 _text = .;
Decm3531_flash.lds42 _text = .;

123