OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BufEnd
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/Format/
Encoding.h
36
const UTF8 *
BufEnd
= reinterpret_cast<const UTF8 *>(Text.end());
37
if (::isLegalUTF8String(&Ptr,
BufEnd
))
/external/llvm/lib/Support/
SourceMgr.cpp
170
const char *
BufEnd
= CurMB->getBufferEnd();
171
while (LineEnd !=
BufEnd
&& LineEnd[0] != '\n' && LineEnd[0] != '\r')
/external/clang/lib/Lex/
PTHLexer.cpp
460
const unsigned char *
BufEnd
= (const unsigned char*)File->getBufferEnd();
463
if ((
BufEnd
- BufBeg) < (signed)(sizeof("cfe-pth") + 4 + 4) ||
484
if (PrologueOffset >=
BufEnd
) {
495
if (!(FileTable > BufBeg && FileTable <
BufEnd
)) {
513
if (!(IData >= BufBeg && IData <
BufEnd
)) {
523
if (!(StringIdTable >= BufBeg && StringIdTable <
BufEnd
)) {
535
if (!(spellingBase >= BufBeg && spellingBase <
BufEnd
)) {
Lexer.cpp
56
const char *
BufEnd
) {
59
BufferEnd =
BufEnd
;
61
assert(
BufEnd
[0] == 0 &&
132
const char *BufStart, const char *BufPtr, const char *
BufEnd
)
135
InitLexer(BufStart, BufPtr,
BufEnd
);
242
const char *
BufEnd
= BufPtr + Tok.getLength();
246
while (BufPtr <
BufEnd
) {
262
const char *RawEnd =
BufEnd
;
275
while (BufPtr <
BufEnd
) {
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp
383
SVal
BufEnd
= svalBuilder.evalBinOpLN(state, BO_Add, *BufLoc,
385
state = CheckLocation(C, state, warningExpr,
BufEnd
, firstMessage);
403
SVal
BufEnd
= svalBuilder.evalBinOpLN(state, BO_Add, *BufLoc,
405
state = CheckLocation(C, state, warningExpr,
BufEnd
, secondMessage);
[
all
...]
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
[
all
...]
Completed in 718 milliseconds