Home
last modified time | relevance | path

Searched refs:wrappedStr (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgPlugins/osg/
H A DAsciiStreamOperator.h108 std::string wrappedStr; in writeWrappedString() local
113 if ( ch=='\"' ) wrappedStr += '\\'; in writeWrappedString()
114 else if ( ch=='\\' ) wrappedStr += '\\'; in writeWrappedString()
115 wrappedStr += ch; in writeWrappedString()
118 wrappedStr.insert( std::string::size_type(0), 1, '\"' ); in writeWrappedString()
119 wrappedStr += '\"'; in writeWrappedString()
122 writeString( wrappedStr ); in writeWrappedString()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgPlugins/osg/
H A DAsciiStreamOperator.h102 std::string wrappedStr;
107 if ( ch=='\"' ) wrappedStr += '\\';
108 else if ( ch=='\\' ) wrappedStr += '\\';
109 wrappedStr += ch;
112 wrappedStr.insert( std::string::size_type(0), 1, '\"' );
113 wrappedStr += '\"';
116 writeString( wrappedStr );
/dports/games/NBlood/NBlood-a1689a4/source/build/src/
H A Dscreentext.cpp592 auto wrappedStr = LocaleCharWrapper_t{str}; in localeLookup()
593 auto iter = currentLocale->find(wrappedStr); in localeLookup()