Home
last modified time | relevance | path

Searched refs:NextIf (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp78 if (type.NextIf('"')) { in ReadStructElement()
105 if (!type.NextIf(opener)) in BuildAggregate()
115 if (!type.NextIf('=')) in BuildAggregate()
120 if (type.NextIf(closer)) { in BuildAggregate()
162 if (!type.NextIf(_C_ARY_B)) in BuildArray()
166 if (!type.NextIf(_C_ARY_E)) in BuildArray()
181 if (!type.NextIf(_C_ID)) in BuildObjCObjectPointerType()
188 if (type.NextIf('"')) { in BuildObjCObjectPointerType()
350 if (!for_expression && type.NextIf(_C_UNDEF)) { in BuildType()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStringLexer.cpp21 bool StringLexer::NextIf(Character c) { in NextIf() function in StringLexer
31 StringLexer::NextIf(std::initializer_list<Character> cs) { in NextIf() function in StringLexer
46 if (!NextIf(c)) { in AdvanceIf()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringLexer.h30 bool NextIf(Character c);
32 std::pair<bool, Character> NextIf(std::initializer_list<Character> cs);
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h70 while (type_lexer.NextIf({' ', '\t', '\v', '\f'}).first) in StripTypeName()