Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp73 if (type.NextIf('"')) in ReadStructElement()
75 if (!type.NextIf('"')) in ReadStructElement()
98 if (!type.NextIf(opener)) in BuildAggregate()
108 if (!type.NextIf('=')) in BuildAggregate()
113 if (type.NextIf(closer)) { in BuildAggregate()
155 if (!type.NextIf(_C_ARY_B)) in BuildArray()
159 if (!type.NextIf(_C_ARY_E)) in BuildArray()
174 if (!type.NextIf(_C_ID)) in BuildObjCObjectPointerType()
181 if (type.NextIf('"')) { in BuildObjCObjectPointerType()
340 if (!for_expression && type.NextIf(_C_UNDEF)) { in BuildType()
/src/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()
/src/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);
/src/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h70 while (type_lexer.NextIf({' ', '\t', '\v', '\f'}).first) in StripTypeName()