Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp71 if (type.NextIf('"')) in ReadStructElement()
73 if (!type.NextIf('"')) in ReadStructElement()
96 if (!type.NextIf(opener)) in BuildAggregate()
106 if (!type.NextIf('=')) in BuildAggregate()
111 if (type.NextIf(closer)) { in BuildAggregate()
153 if (!type.NextIf(_C_ARY_B)) in BuildArray()
157 if (!type.NextIf(_C_ARY_E)) in BuildArray()
172 if (!type.NextIf(_C_ID)) in BuildObjCObjectPointerType()
179 if (type.NextIf('"')) { in BuildObjCObjectPointerType()
335 if (!for_expression && type.NextIf(_C_UNDEF)) { in BuildType()
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h70 while (type_lexer.NextIf({' ', '\t', '\v', '\f'}).first) in StripTypeName()