Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:TiXmlText
(Results
1 - 7
of
7
) sorted by relevance
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
H
A
D
tinyxml.h
88
class
TiXmlText
;
146
virtual bool Visit( const
TiXmlText
& /*text*/ ) { return true; }
in Visit()
701
virtual const
TiXmlText
* ToText() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
in ToText()
708
virtual
TiXmlText
* ToText() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
in ToText()
1090
and concise, GetText() is limited compared to getting the
TiXmlText
child
1093
If the first child of 'this' is a
TiXmlText
, the GetText()
1212
class
TiXmlText
: public TiXmlNode
class
1220
TiXmlText
(const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT)
in TiXmlText()
function in TiXmlText
1225
virtual ~
TiXmlText
() {}
in ~TiXmlText()
1229
TiXmlText
( cons
function in TiXmlText
1236
TiXmlText
( const
TiXmlText
& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { copy.CopyTo( this ); }
TiXmlText()
function in TiXmlText
[all...]
H
A
D
tinyxml.cpp
904
const
TiXmlText
* childText = child->ToText();
in GetText()
1332
void
TiXmlText
::Print( FILE* cfile, int depth ) const
1353
void
TiXmlText
::CopyTo(
TiXmlText
* target ) const
1360
bool
TiXmlText
::Accept( TiXmlVisitor* visitor ) const
1366
TiXmlNode*
TiXmlText
::Clone() const
1368
TiXmlText
* clone = 0;
1369
clone = new
TiXmlText
( "" );
1829
bool TiXmlPrinter::Visit( const
TiXmlText
& text )
H
A
D
tinyxmlparser.cpp
866
TiXmlText
* text = new
TiXmlText
( "" );
in Identify()
949
TiXmlText
text( "" );
in StreamIn()
1192
TiXmlText
* textNode = new
TiXmlText
( "" );
in ReadValue()
1219
// a
TiXmlText
in the "CDATA" style.
in ReadValue()
1466
void
TiXmlText
::StreamIn( std::istream * in, TIXML_STRING * tag )
in StreamIn()
1497
const char*
TiXmlText
::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding )
in Parse()
1631
bool
TiXmlText
::Blank() const
in Blank()
/third_party/lame/ACM/tinyxml/
H
A
D
tinyxml.h
40
class
TiXmlText
;
390
TiXmlText
* ToText() const { return ( this && type == TEXT ) ? (
TiXmlText
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
in ToText()
617
class
TiXmlText
: public TiXmlNode
class
620
TiXmlText
( const std::string& initValue ) : TiXmlNode( TiXmlNode::TEXT ) { SetValue( initValue ); }
in TiXmlText()
function in TiXmlText
621
virtual ~
TiXmlText
() {}
in ~TiXmlText()
H
A
D
tinyxml.cpp
833
void
TiXmlText
::Print( FILE* cfile, int depth ) const
in Print()
842
void
TiXmlText
::StreamOut( std::ostream* stream ) const
in StreamOut()
848
TiXmlNode*
TiXmlText
::Clone() const
in Clone()
850
TiXmlText
* clone = 0;
in Clone()
851
clone = new
TiXmlText
( "" );
in Clone()
H
A
D
tinyxmlparser.cpp
453
TiXmlText
text( "" );
in StreamIn()
626
TiXmlText
* textNode = new
TiXmlText
( "" );
in ReadValue()
811
void
TiXmlText
::StreamIn( std::istream* in, std::string* tag )
in StreamIn()
826
const char*
TiXmlText
::Parse( const char* p )
in Parse()
917
bool
TiXmlText
::Blank() const
in Blank()
H
A
D
xmltest.cpp
156
TiXmlText
text( "Talk to:" );
in main()
Completed in 17 milliseconds