Searched refs:ToText (Results 1 - 13 of 13) sorted by relevance

/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp37 ReplaceStmtWithText::ReplaceStmtWithText(StringRef FromId, StringRef ToText) argument
38 : FromId(FromId), ToText(ToText) {}
46 ToText));
/external/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h51 /// \c ToText.
54 ReplaceStmtWithText(StringRef FromId, StringRef ToText);
59 std::string ToText; member in class:clang::tooling::ReplaceStmtWithText
/external/spirv-llvm/lib/SPIRV/
H A DSPIRV.h78 std::string &ErrMsg, bool FromText, bool ToText);
84 std::string &ErrMsg, bool ToText);
/external/spirv-llvm/lib/SPIRV/llvm/Support/
H A DSPIRV.h78 std::string &ErrMsg, bool FromText, bool ToText);
84 std::string &ErrMsg, bool ToText);
/external/spirv-llvm/tools/llvm-spirv/
H A Dllvm-spirv.cpp102 ToText("to-text", cl::desc("Convert input SPIR-V binary to internal textual format"));
205 if (ToBinary == ToText) {
222 if (!SPIRV::ConvertSPIRV(IFS, OFS, Err, ToBinary, ToText)) {
297 if (ToText && (ToBinary || IsReverse || IsRegularization)) {
302 if (ToBinary && (ToText || IsReverse || IsRegularization)) {
307 if (ToBinary || ToText)
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h701 virtual const TiXmlText* ToText() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type. function in class:TiXmlNode
708 virtual TiXmlText* ToText() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type. function in class:TiXmlNode
1118 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are
1249 virtual const TiXmlText* ToText() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlText
1250 virtual TiXmlText* ToText() { return this; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlText
1691 TiXmlText* ToText() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); } function in class:TiXmlHandle
1704 /** @deprecated use ToText()
1707 TiXmlText* Text() const { return ToText(); }
[all...]
H A Dtinyxml.cpp826 else if ( firstChild == lastChild && firstChild->ToText() )
838 if ( !node->ToText() )
904 const TiXmlText* childText = child->ToText();
1786 if ( element.FirstChild()->ToText()
1788 && element.FirstChild()->ToText()->CDATA() == false )
/external/tinyxml2/
H A Dtinyxml2.h678 virtual XMLText* ToText() { function in class:tinyxml2::XMLNode
701 virtual const XMLText* ToText() const { function in class:tinyxml2::XMLNode
979 virtual XMLText* ToText() { function in class:tinyxml2::XMLText
982 virtual const XMLText* ToText() const { function in class:tinyxml2::XMLText
2013 XMLText* ToText() { function in class:tinyxml2::XMLHandle
2014 return ( _node ? _node->ToText() : 0 );
2081 const XMLText* ToText() const { function in class:tinyxml2::XMLConstHandle
2082 return ( _node ? _node->ToText() : 0 );
H A Dxmltest.cpp161 XMLText* textNode = titleElement->FirstChild()->ToText();
227 looking for XMLText, not an element, and ToText()
484 doc->FirstChildElement()->LastChildElement( "sub" )->FirstChild()->ToText()->Value() );
671 XMLText* text = doc.FirstChildElement( "document" )->FirstChildElement( (const char*) russianElementName )->FirstChild()->ToText();
1094 XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText();
/external/tinyxml/
H A Dtinyxml.h640 const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlNode
647 TiXmlText* ToText() { return ( this && type == TEXT ) ? (TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlNode
982 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are
1498 TiXmlText* Text() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }
H A Dxmltest.cpp267 XmlTest ( "First child exists.", true, ( node != 0 && node->ToText() ) );
569 text = latinDoc.FirstChildElement()->FirstChild()->ToText();
856 TiXmlText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText();
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVModule.h334 std::string &ErrMsg, bool FromText, bool ToText);
340 std::string &ErrMsg, bool ToText);
H A DSPIRVModule.cpp1540 std::string &ErrMsg, bool FromText, bool ToText) {
1549 SPIRVUseTextFormat = ToText;
1569 std::string &ErrMsg, bool ToText) {
1571 if (ToText == FromText) {
1581 if (!ConvertSPIRV(IS, OS, ErrMsg, FromText, ToText))
1539 ConvertSPIRV(std::istream &IS, spv_ostream &OS, std::string &ErrMsg, bool FromText, bool ToText) argument
1568 ConvertSPIRV(std::string &Input, std::string &Out, std::string &ErrMsg, bool ToText) argument

Completed in 1195 milliseconds