OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FirstChar
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Lex/
TokenConcatenation.cpp
207
char
FirstChar
= 0;
211
FirstChar
= GetFirstChar(PP, Tok);
265
return isPreprocessingNumberBody(
FirstChar
) ||
266
FirstChar
== '+' ||
FirstChar
== '-';
268
return (
FirstChar
== '.' && PrevPrevTok.is(tok::period)) ||
269
isDigit(
FirstChar
) ||
270
(PP.getLangOpts().CPlusPlus &&
FirstChar
== '*');
272
return
FirstChar
== '&';
274
return
FirstChar
== '+'
[
all
...]
PPDirectives.cpp
511
char
FirstChar
= RI[0];
512
if (
FirstChar
>= 'a' &&
FirstChar
<= 'z' &&
513
FirstChar
!= 'i' &&
FirstChar
!= 'e') {
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_monitor.cc
56
char
FirstChar
= Buf.data()[0];
57
if (
FirstChar
>= 'a' &&
FirstChar
<= 'z')
58
Buf.data()[0] =
FirstChar
- 'a' + 'A';
/src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_monitor.cpp
56
char
FirstChar
= *Buf.data();
57
if (
FirstChar
>= 'a' &&
FirstChar
<= 'z')
/src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_monitor.cpp
55
char
FirstChar
= *Buf.data();
56
if (
FirstChar
>= 'a' &&
FirstChar
<= 'z')
/src/external/apache2/llvm/dist/llvm/lib/Support/
SuffixTree.cpp
111
unsigned
FirstChar
= Str[Active.Idx];
113
// Have we inserted anything starting with
FirstChar
at the current node?
114
if (Active.Node->Children.count(
FirstChar
) == 0) {
116
insertLeaf(*Active.Node, EndIdx,
FirstChar
);
125
// There's a match with
FirstChar
, so look for the point in the tree to
127
SuffixTreeNode *NextNode = Active.Node->Children[
FirstChar
];
176
NextNode->StartIdx + Active.Len - 1,
FirstChar
);
FileUtilities.cpp
56
static const char *BackupNumber(const char *Pos, const char *
FirstChar
) {
62
while (Pos >
FirstChar
&& isNumberChar(Pos[-1])) {
71
if (Pos >
FirstChar
&& isSignedChar(Pos[0]) && !isExponentChar(Pos[-1]))
/src/external/apache2/llvm/dist/clang/lib/Format/
Encoding.h
77
/// codepoint and starting with
FirstChar
in the specified Encoding.
78
inline unsigned getCodePointNumBytes(char
FirstChar
, Encoding Encoding) {
81
return llvm::getNumBytesForUTF8(
FirstChar
);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp
8032
unsigned char
FirstChar
= *csStart;
8033
CodePoint = (llvm::UTF32)
FirstChar
;
Completed in 86 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026