HomeSort by relevance Sort by last modified time
    Searched refs:_text (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
pr19175.s 4 movl _text@GOT(%ecx), %eax
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
pr19175.s 4 movq _text@GOTPCREL(%rip), %rax
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
AToken.h 180 ANTLRChar *_text; // MR9 RJV member in class:ANTLRCommonNoRefCountToken
184 { setType(t); _line = 0; _text = NULL; setText(s); }
186 { setType((ANTLRTokenType)0); _line = 0; _text = NULL; setText(""); }
188 ~ANTLRCommonNoRefCountToken() { if (_text) delete [] _text; } // MR9 RJV: Added Destructor to remove string
194 ANTLRChar *getText() const { return _text; }
200 { if (s != _text) {
201 if (_text) delete [] _text;
203 _text = new ANTLRChar[strlen(s)+1];
253 ANTLRChar *_text; \/\/ MR9 RJV:Added member in class:ANTLRCommonToken
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AToken.h 160 ANTLRChar *_text; // MR9 RJV member in class:ANTLRCommonNoRefCountToken
164 { setType(t); _line = 0; _text = NULL; setText(s); }
166 { setType((ANTLRTokenType)0); _line = 0; _text = NULL; setText(""); }
168 ~ANTLRCommonNoRefCountToken() { if (_text) delete [] _text; } // MR9 RJV: Added Destructor to remove string
174 ANTLRChar *getText() const { return _text; }
180 { if (s != _text) {
181 if (_text) delete [] _text;
183 _text = new ANTLRChar[strlen(s)+1];
233 ANTLRChar *_text; \/\/ MR9 RJV:Added member in class:ANTLRCommonToken
    [all...]
AToken_traditional.h 157 ANTLRChar _text[ANTLRCommonTokenTEXTSIZE+1]; member in class:ANTLRCommonNoRefCountToken
169 ANTLRChar *getText() { return _text; }
171 { strncpy((char *)_text, (char *)s, ANTLRCommonTokenTEXTSIZE); }
186 ANTLRChar _text[ANTLRCommonTokenTEXTSIZE+1]; member in class:ANTLRCommonToken
199 ANTLRChar *getText() { return _text; }
201 { strncpy((char *)_text, (char *)s, ANTLRCommonTokenTEXTSIZE); }
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
StringTokenIterator.java 16 private String _text; field in class:StringTokenIterator
25 _text = text;
55 _token = _text.substring(_start, _end);
65 return (_end < _text.length());
69 if (offset > _text.length()) {
74 _token = _text.substring(_start, _end);
80 _text = text;
87 outer: while (idx < _text.length()) {
88 char c = _text.charAt(idx);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
StringTokenIterator.java 12 private String _text; field in class:StringTokenIterator
21 _text = text;
51 _token = _text.substring(_start, _end);
61 return (_end < _text.length());
65 if (offset > _text.length()) {
70 _token = _text.substring(_start, _end);
76 _text = text;
83 outer: while (idx < _text.length()) {
84 char c = _text.charAt(idx);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
StringTokenIterator.java 12 private String _text; field in class:StringTokenIterator
21 _text = text;
51 _token = _text.substring(_start, _end);
61 return (_end < _text.length());
65 if (offset > _text.length()) {
70 _token = _text.substring(_start, _end);
76 _text = text;
83 outer: while (idx < _text.length()) {
84 char c = _text.charAt(idx);
  /external/lzma/CPP/Common/
Lang.h 10 wchar_t *_text; member in class:CLang
16 CLang(): _text(0) {}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
pr13839.d 5 [0-9a-f]+ T _text
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/xml/
rss2html.py 45 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
    [all...]
  /external/python/cpython2/Demo/xml/
rss2html.py 45 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 + conten
    [all...]
  /external/python/cpython3/Lib/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset=None, *, policy=None):
21 _text is the string for this message object.
35 _text.encode('us-ascii')
43 self.set_payload(_text, _charset)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
21 _text is the string for this message object.
31 self.set_payload(_text, _charset)
  /external/python/cpython2/Lib/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
21 _text is the string for this message object.
31 self.set_payload(_text, _charset)
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
21 _text is the string for this message object.
31 self.set_payload(_text, _charset)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
21 _text is the string for this message object.
31 self.set_payload(_text, _charset)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
21 _text is the string for this message object.
31 self.set_payload(_text, _charset)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
21 _text is the string for this message object.
31 self.set_payload(_text, _charset)
  /external/flatbuffers/src/
idl_gen_text.cpp 28 std::string *_text);
42 std::string *_text) {
43 std::string &text = *_text;
55 std::string *_text) {
56 std::string &text = *_text;
60 OutputIdentifier(enum_val->name, opts, _text);
77 std::string *_text) {
78 std::string &text = *_text;
89 indent + Indent(opts), nullptr, opts, _text)) {
94 opts, _text)) {
    [all...]
  /external/autotest/client/site_tests/desktopui_SetFieldsWithChromeDriver/
desktopui_SetFieldsWithChromeDriver.py 27 self._text = 'Hello World'
52 element.send_keys(self._text)
54 if entered_text != self._text:
56 (self._text, entered_text))
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TextTrieMap.java 192 private CharSequence _text; field in class:TextTrieMap.CharIterator
199 _text = text;
209 if (_nextIdx == _text.length() && _remainingChar == null) {
220 if (_nextIdx == _text.length() && _remainingChar == null) {
229 int cp = UCharacter.foldCase(Character.codePointAt(_text, _nextIdx), true);
238 next = _text.charAt(_nextIdx);
306 private char[] _text; field in class:TextTrieMap.Node
314 _text = text;
320 return _text == null ? 0 : _text.length
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TextTrieMap.java 190 private CharSequence _text; field in class:TextTrieMap.CharIterator
197 _text = text;
207 if (_nextIdx == _text.length() && _remainingChar == null) {
218 if (_nextIdx == _text.length() && _remainingChar == null) {
227 int cp = UCharacter.foldCase(Character.codePointAt(_text, _nextIdx), true);
236 next = _text.charAt(_nextIdx);
304 private char[] _text; field in class:TextTrieMap.Node
312 _text = text;
318 return _text == null ? 0 : _text.length
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonToken.as 43 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/syslinux/gpxe/src/arch/x86/scripts/
efi.lds 30 _text = .;

Completed in 745 milliseconds

1 2 3 4