HomeSort by relevance Sort by last modified time
    Searched defs:Text (Results 226 - 250 of 486) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlDocument.java 35 * text, toXHTML for printing out XHTML text and toString() which prints out in
168 public static Text createText(String text) {
169 return createText(text, null);
173 * Creates a Text node.
176 public static Text createText(String text, String original) {
177 return new UnescapedText(text, original);
181 * Creates a Text node where the content hasn't been unescaped yet (this wil
356 String text = getText(); local
446 protected final String text; field in class:HtmlDocument.UnescapedText
465 private String text; field in class:HtmlDocument.EscapedText
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minidom.py 11 * convenience methods for getting elements and text.
182 # empty text node; discard
189 # collapse text node
354 self.childNodes.append(Text())
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minidom.py 10 * convenience methods for getting elements and text.
181 # empty text node; discard
188 # collapse text node
353 self.childNodes.append(Text())
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/
EfiInternalFormRepresentation.h 6 which accompanies this distribution. The full text of the license may be found at
157 STRING_REF Text;
361 STRING_REF Text;
362 STRING_REF TextTwo; // optional text
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Setup.h 7 which accompanies this distribution. The full text of the license may be found at
277 EFI_STRING_ID Text;
    [all...]
  /external/clang/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 106 static bool isReservedId(StringRef Text, const LangOptions &Lang) {
110 if (Text.size() >= 2 && Text[0] == '_' &&
111 (isUppercase(Text[1]) || Text[1] == '_'))
117 if (Text.find("__") != StringRef::npos)
125 StringRef Text = II->getName();
126 if (isReservedId(Text, Lang))
130 if (Lang.CPlusPlus11 && (Text.equals("override") || Text.equals("final"))
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
NanoWSD.java 228 } else if (frame.getOpCode() == OpCode.Text || frame.getOpCode() == OpCode.Binary) {
267 sendFrame(new WebSocketFrame(OpCode.Text, true, payload));
386 Text(1),
566 if (getOpCode() == OpCode.Text) {
567 String text = getTextPayload(); local
568 if (text.length() > 100) {
569 sb.append(text.substring(0, 100)).append("...");
571 sb.append(text);
600 if (getOpCode() == OpCode.Text) {
802 String text = key + NanoWSD.WEBSOCKET_KEY_MAGIC local
    [all...]
  /external/python/cpython2/Lib/xml/dom/
minidom.py 11 * convenience methods for getting elements and text.
182 # empty text node; discard
189 # collapse text node
354 self.childNodes.append(Text())
    [all...]
  /external/python/cpython3/Lib/test/
test_xml_etree.py 39 <tag class='a'>text</tag>
59 <tag>text</tag>
152 properties = operator.attrgetter('tag', 'tail', 'text', 'attrib')
188 for attr in 'tag', 'attrib', 'text', 'tail':
196 if element.text is not None:
197 check_string(element.text)
260 self.assertIsNone(element.text)
261 element.text = 'Text'
262 self.assertEqual(element.text, 'Text'
    [all...]
  /external/python/cpython3/Lib/
typing.py 89 'Text',
    [all...]
  /external/python/cpython3/Lib/xml/dom/
minidom.py 11 * convenience methods for getting elements and text.
183 # empty text node; discard
190 # collapse text node
363 self.childNodes.append(Text())
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 145 /// Visit a text node
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; }
186 Text (leaf)
312 /* Reads text. Returns a pointer past the given end tag.
316 TIXML_STRING* text, // the string read
318 const char* endTag, // what ends this text
358 // Not valid text.
446 the text needs to define an element or junk will result. This is
480 Comment: the comment text
482 Text: the text strin
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Host.cpp 1274 } text; local
    [all...]
  /external/tinyxml/
tinyxml.h 144 Text (leaf)
265 /* Reads text. Returns a pointer past the given end tag.
269 TIXML_STRING* text, // the string read
271 const char* endTag, // what ends this text
311 // Not valid text.
405 the text needs to define an element or junk will result. This is
430 TEXT,
442 Comment: the comment text
444 Text: the text strin
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
Comment.h 266 /// Plain text.
268 StringRef Text;
273 StringRef Text) :
275 Text(Text) {
287 StringRef getText() const LLVM_READONLY { return Text; }
307 StringRef Text;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
    [all...]

Completed in 1512 milliseconds

1 2 3 4 5 6 7 8 91011>>