Home
last modified time | relevance | path

Searched refs:FirstChar (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp207 char FirstChar = 0; in AvoidConcat() local
266 FirstChar == '+' || FirstChar == '-'; in AvoidConcat()
272 return FirstChar == '&'; in AvoidConcat()
274 return FirstChar == '+'; in AvoidConcat()
276 return FirstChar == '-' || FirstChar == '>'; in AvoidConcat()
278 return FirstChar == '*' || FirstChar == '/'; in AvoidConcat()
280 return FirstChar == '<' || FirstChar == ':' || FirstChar == '%'; in AvoidConcat()
282 return FirstChar == '>'; in AvoidConcat()
284 return FirstChar == '|'; in AvoidConcat()
286 return FirstChar == '>' || FirstChar == ':'; in AvoidConcat()
[all …]
H A DPPDirectives.cpp620 char FirstChar = RI[0]; in SkipExcludedConditionalBlock() local
621 if (FirstChar >= 'a' && FirstChar <= 'z' && in SkipExcludedConditionalBlock()
622 FirstChar != 'i' && FirstChar != 'e') { in SkipExcludedConditionalBlock()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_monitor.cpp56 char FirstChar = *Buf.data(); in __ubsan_get_current_report_data() local
57 if (FirstChar >= 'a' && FirstChar <= 'z') in __ubsan_get_current_report_data()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DSuffixTree.cpp122 unsigned FirstChar = Str[Active.Idx]; in extend() local
125 if (Active.Node->Children.count(FirstChar) == 0) { in extend()
127 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend()
138 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend()
189 NextNode->getStartIdx() + Active.Len - 1, FirstChar); in extend()
H A DFileUtilities.cpp54 static const char *BackupNumber(const char *Pos, const char *FirstChar) { in BackupNumber() argument
60 while (Pos > FirstChar && isNumberChar(Pos[-1])) { in BackupNumber()
69 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1])) in BackupNumber()
H A DYAMLParser.cpp1904 StringRef FirstChar(Current, 1); in fetchMoreTokens() local
1906 FirstChar.find_first_of("-?:,[]{}#&*!|>'\"%@`") == StringRef::npos) || in fetchMoreTokens()
1907 (FirstChar.find_first_of("?:-") != StringRef::npos && in fetchMoreTokens()
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DEncoding.h78 inline unsigned getCodePointNumBytes(char FirstChar, Encoding Encoding) { in getCodePointNumBytes() argument
81 return llvm::getNumBytesForUTF8(FirstChar); in getCodePointNumBytes()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp11287 unsigned char FirstChar = *csStart; in HandleInvalidConversionSpecifier() local
11288 CodePoint = (llvm::UTF32)FirstChar; in HandleInvalidConversionSpecifier()