Lines Matching refs:argPtr
2254 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2255 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2259 while (*argPtr) { in RewriteBlockPointerType()
2260 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2261 argPtr++; in RewriteBlockPointerType()
2270 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2272 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2273 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2275 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2279 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2288 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2291 argPtr++; in RewriteBlockPointerTypeVariable()
3907 const char *argPtr = startBuf; in RewriteCastExpr() local
3909 while (*argPtr++ && (argPtr < endBuf)) { in RewriteCastExpr()
3910 switch (*argPtr) { in RewriteCastExpr()
3913 LocStart = LocStart.getLocWithOffset(argPtr-startBuf); in RewriteCastExpr()
3935 const char *argPtr = startArgList; in RewriteBlockPointerFunctionArgs() local
3937 while (*argPtr++ && parenCount) { in RewriteBlockPointerFunctionArgs()
3938 switch (*argPtr) { in RewriteBlockPointerFunctionArgs()
3941 DeclLoc = DeclLoc.getLocWithOffset(argPtr-startArgList); in RewriteBlockPointerFunctionArgs()
3997 const char *argPtr = strchr(Name, '('); in GetExtentOfArgList() local
3998 assert((*argPtr == '(') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4000 LParen = argPtr; // output the start. in GetExtentOfArgList()
4001 argPtr++; // skip past the left paren. in GetExtentOfArgList()
4004 while (*argPtr && parenCount) { in GetExtentOfArgList()
4005 switch (*argPtr) { in GetExtentOfArgList()
4010 if (parenCount) argPtr++; in GetExtentOfArgList()
4012 assert((*argPtr == ')') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4013 RParen = argPtr; // output the end in GetExtentOfArgList()