Home | History | Annotate | Download | only in Lex

Lines Matching full:pth

300 // PTH file lookup: map from strings to file data.
305 /// the PTH file.
436 // Memory map the PTH file.
451 if ((BufEnd - BufBeg) < (signed)(sizeof("cfe-pth") + 4 + 4) ||
452 memcmp(BufBeg, "cfe-pth", sizeof("cfe-pth")) != 0) {
457 // Read the PTH version.
458 const unsigned char *p = BufBeg + (sizeof("cfe-pth"));
464 ? "PTH file uses an older PTH format that is no longer supported"
465 : "PTH file uses a newer PTH format that cannot be read");
469 // Compute the address of the index table at the end of the PTH file.
489 // Warn if the PTH file is empty. We still want to create a PTHManager
490 // as the PTH could be used with -include-pth.
492 InvalidPTH(Diags, "PTH
535 InvalidPTH(Diags, "Could not allocate memory for processing PTH file");
552 // Look in the PTH file for the string data for the IdentifierInfo object.
593 // the PTH file that contains cached tokens.
688 // Do the lookup for the file's data in the PTH file.
691 // If we don't get a hit in the PTH file just forward to 'stat'.