Lines Matching refs:substr
1821 Ret += Raw.substr(1); in getVerbatimTag()
1825 Ret += Raw.substr(2); in getVerbatimTag()
1828 StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1); in getVerbatimTag()
1839 Ret += Raw.substr(Raw.find_last_of('!') + 1); in getVerbatimTag()
1890 StringRef UnquotedValue = Value.substr(1, Value.size() - 2); in getValue()
1898 StringRef UnquotedValue = Value.substr(1, Value.size() - 2); in getValue()
1908 UnquotedValue = UnquotedValue.substr(i + 2); in getValue()
1931 UnquotedValue = UnquotedValue.substr(i); in unescapeDoubleQuoted()
1942 UnquotedValue = UnquotedValue.substr(1); in unescapeDoubleQuoted()
1943 UnquotedValue = UnquotedValue.substr(1); in unescapeDoubleQuoted()
1949 UnquotedValue = UnquotedValue.substr(1); in unescapeDoubleQuoted()
1962 UnquotedValue = UnquotedValue.substr(1); in unescapeDoubleQuoted()
2023 if (UnquotedValue.substr(1, 2).getAsInteger(16, UnicodeScalarValue)) in unescapeDoubleQuoted()
2027 UnquotedValue = UnquotedValue.substr(2); in unescapeDoubleQuoted()
2035 if (UnquotedValue.substr(1, 4).getAsInteger(16, UnicodeScalarValue)) in unescapeDoubleQuoted()
2039 UnquotedValue = UnquotedValue.substr(4); in unescapeDoubleQuoted()
2047 if (UnquotedValue.substr(1, 8).getAsInteger(16, UnicodeScalarValue)) in unescapeDoubleQuoted()
2051 UnquotedValue = UnquotedValue.substr(8); in unescapeDoubleQuoted()
2055 UnquotedValue = UnquotedValue.substr(1); in unescapeDoubleQuoted()
2315 return new (NodeAllocator) AliasNode(stream.CurrentDoc, T.Range.substr(1)); in parseBlockNode()
2342 , AnchorInfo.Range.substr(1) in parseBlockNode()
2349 , AnchorInfo.Range.substr(1) in parseBlockNode()
2356 , AnchorInfo.Range.substr(1) in parseBlockNode()
2363 , AnchorInfo.Range.substr(1) in parseBlockNode()
2370 , AnchorInfo.Range.substr(1) in parseBlockNode()
2377 , AnchorInfo.Range.substr(1) in parseBlockNode()
2385 BlockScalarNode(stream.CurrentDoc, AnchorInfo.Range.substr(1), in parseBlockNode()
2392 , AnchorInfo.Range.substr(1) in parseBlockNode()
2433 T = T.substr(T.find_first_of(" \t")).ltrim(" \t"); in parseTAGDirective()
2435 StringRef TagHandle = T.substr(0, HandleEnd); in parseTAGDirective()
2436 StringRef TagPrefix = T.substr(HandleEnd).ltrim(" \t"); in parseTAGDirective()