Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTextTrieMap.java108 private CharSequence _text; field in TextTrieMap.CharIterator
115 _text = text; in CharIterator()
124 if (_nextIdx == _text.length() && _remainingChar == null) { in hasNext()
134 if (_nextIdx == _text.length() && _remainingChar == null) { in next()
143 int cp = UCharacter.foldCase(Character.codePointAt(_text, _nextIdx), true); in next()
152 next = _text.charAt(_nextIdx); in next()
218 private char[] _text; field in TextTrieMap.Node
226 _text = text; in Node()
256 if (ch < child._text[0]) { in findMatch()
259 if (ch == child._text[0]) { in findMatch()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DStringTokenIterator.java10 private String _text; field in StringTokenIterator
19 _text = text; in StringTokenIterator()
49 _token = _text.substring(_start, _end); in next()
59 return (_end < _text.length()); in hasNext()
63 if (offset > _text.length()) { in setStart()
68 _token = _text.substring(_start, _end); in setStart()
74 _text = text; in setText()
81 outer: while (idx < _text.length()) { in nextDelimiter()
82 char c = _text.charAt(idx); in nextDelimiter()
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/common/
Dhtmlutil.py39 self._text = ''
68 self._text += data
91 self._text += '\n'
99 return self._text.splitlines()
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java538 private final byte[] _text; field in DNSRecord.Text
542 this._text = (text != null && text.length > 0 ? text : EMPTY_TXT); in Text()
549 return this._text; in getText()
554 out.writeBytes(_text, 0, _text.length); in write()
563 if ((_text == null) && (txt._text != null)) { in sameValue()
566 if (txt._text.length != _text.length) { in sameValue()
569 for (int i = _text.length; i-- > 0;) { in sameValue()
570 if (txt._text[i] != _text[i]) { in sameValue()
610 return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, _text); in getServiceInfo()
631 …aLog.append(" text: '" + ((_text.length > 20) ? new String(_text, 0, 17) + "..." : new String(_tex… in toString()
DServiceInfoImpl.java54 private byte _text[]; field in ServiceInfoImpl
133 this._text = out.toByteArray(); in ServiceInfoImpl()
179 this._text = out.toByteArray(); in ServiceInfoImpl()
197 this._text = text; in ServiceInfoImpl()
222 this._text = info.getTextBytes(); in ServiceInfoImpl()
594 return (this._text != null && this._text.length > 0 ? this._text : DNSRecord.EMPTY_TXT); in getTextBytes()
907 _text = txt.getText(); in updateRecord()
1133 …o = new ServiceInfoImpl(this.getQualifiedNameMap(), _port, _weight, _priority, _persistent, _text); in clone()
1207 this._text = text; in setText()
1227 this._text = text; in _setText()
/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRToken+DebuggerSupport.m39 NSString *_text = self.text;
41 if (_text) {
42 escapedText = [_text copyWithZone:nil];
/external/v8/tools/push-to-trunk/
Dcommon_includes.py260 self._text = text
294 print ">>> Step %d: %s" % (self._number, self._text)
/external/icu/icu4c/source/test/cintltst/
Dusrchtst.c2529 U_STRING_DECL(_text, "_0IS 0 OK?", TEXT_LEN); in TestSearchForNull()
2533 U_STRING_INIT(_text, "_0IS 0 OK?", TEXT_LEN); in TestSearchForNull()
2548 if (_text[pos] == zerodigit) { in TestSearchForNull()
2551 text[pos] = _text[pos]; in TestSearchForNull()
/external/bison/data/m4sugar/
Dm4sugar.m4778 [m4_ifdef([$0_text],
779 [m4_define([$0_text], [$1]_m4_defn([$0_text])[$2])],
781 _m4_defn([$0_text])_m4_popdef([$0_text]))])m4_define([$0_text], [$1$2])])])
/external/chromium-trace/trace-viewer/tracing/third_party/mocha/
Dmocha.js679 this._text = str;
755 var text = this._text || (percent | 0) + '%'
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
DPython.stg174 self._state._text = None