Searched refs:argIndex (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Analysis/
H A DFormatStringParsing.h30 unsigned &argIndex);
39 unsigned *argIndex);
H A DScanfFormatString.cpp70 unsigned &argIndex,
200 FS.setArgIndex(argIndex++);
500 unsigned argIndex = 0; local
504 const ScanfSpecifierResult &FSR = ParseScanfSpecifier(H, I, E, argIndex,
67 ParseScanfSpecifier(FormatStringHandler &H, const char *&Beg, const char *E, unsigned &argIndex, const LangOptions &LO, const TargetInfo &Target) argument
H A DFormatString.cpp65 unsigned &argIndex) {
68 return OptionalAmount(OptionalAmount::Arg, argIndex++, Beg, 0, false);
126 unsigned *argIndex) {
128 if (argIndex) {
129 CS.setFieldWidth(ParseNonPositionAmount(Beg, E, *argIndex));
63 ParseNonPositionAmount(const char *&Beg, const char *E, unsigned &argIndex) argument
122 ParseFieldWidth(FormatStringHandler &H, FormatSpecifier &CS, const char *Start, const char *&Beg, const char *E, unsigned *argIndex) argument
H A DPrintfFormatString.cpp39 unsigned *argIndex) {
40 if (argIndex) {
41 FS.setPrecision(ParseNonPositionAmount(Beg, E, *argIndex));
55 unsigned &argIndex,
127 FS.usesPositionalArg() ? 0 : &argIndex))
145 FS.usesPositionalArg() ? 0 : &argIndex))
233 FS.setArgIndex(argIndex++);
237 argIndex++;
252 unsigned argIndex = 0; local
256 const PrintfSpecifierResult &FSR = ParsePrintfSpecifier(H, I, E, argIndex,
37 ParsePrecision(FormatStringHandler &H, PrintfSpecifier &FS, const char *Start, const char *&Beg, const char *E, unsigned *argIndex) argument
52 ParsePrintfSpecifier(FormatStringHandler &H, const char *&Beg, const char *E, unsigned &argIndex, const LangOptions &LO, const TargetInfo &Target) argument
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DFormatString.h334 unsigned argIndex; member in class:clang::analyze_format_string::FormatSpecifier
337 : CS(isPrintf), UsesPositionalArg(false), argIndex(0) {}
346 argIndex = i;
350 return argIndex;
354 return argIndex + 1;
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Basic/
H A DIdentifierTable.cpp353 IdentifierInfo *Selector::getIdentifierInfoForSlot(unsigned argIndex) const {
355 assert(argIndex == 0 && "illegal keyword index");
360 return SI->getIdentifierInfoForSlot(argIndex);
363 StringRef Selector::getNameForSlot(unsigned int argIndex) const {
364 IdentifierInfo *II = getIdentifierInfoForSlot(argIndex);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp2368 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
2387 unsigned argIndex);
2580 CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex, argument
2588 if (argIndex < NumDataArgs) {
2591 CoveredArgs.set(argIndex);
2594 // If argIndex exceeds the number of data arguments we
2623 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
2625 if (argIndex >= NumDataArgs) {
2628 << (argIndex+1) << NumDataArgs)
2779 unsigned argIndex local
2620 CheckNumArgs( const analyze_format_string::FormatSpecifier &FS, const analyze_format_string::ConversionSpecifier &CS, const char *startSpecifier, unsigned specifierLen, unsigned argIndex) argument
2975 unsigned argIndex = FS.getArgIndex(); local
3470 unsigned argIndex = FS.getArgIndex(); local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DIdentifierTable.h680 /// \param argIndex The index for which we want to retrieve the identifier.
686 IdentifierInfo *getIdentifierInfoForSlot(unsigned argIndex) const;
690 /// \param argIndex The index for which we want to retrieve the name.
696 StringRef getNameForSlot(unsigned argIndex) const;

Completed in 68 milliseconds