Lines Matching refs:argPtr
2245 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerType() local
2246 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2250 while (*argPtr) { in RewriteBlockPointerType()
2251 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2252 argPtr++; in RewriteBlockPointerType()
2261 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2263 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2264 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2266 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2270 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2279 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2282 argPtr++; in RewriteBlockPointerTypeVariable()
3910 const char *argPtr = startBuf; in RewriteCastExpr() local
3912 while (*argPtr++ && (argPtr < endBuf)) { in RewriteCastExpr()
3913 switch (*argPtr) { in RewriteCastExpr()
3916 LocStart = LocStart.getLocWithOffset(argPtr-startBuf); in RewriteCastExpr()
3938 const char *argPtr = startArgList; in RewriteBlockPointerFunctionArgs() local
3940 while (*argPtr++ && parenCount) { in RewriteBlockPointerFunctionArgs()
3941 switch (*argPtr) { in RewriteBlockPointerFunctionArgs()
3944 DeclLoc = DeclLoc.getLocWithOffset(argPtr-startArgList); in RewriteBlockPointerFunctionArgs()
4000 const char *argPtr = strchr(Name, '('); in GetExtentOfArgList() local
4001 assert((*argPtr == '(') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4003 LParen = argPtr; // output the start. in GetExtentOfArgList()
4004 argPtr++; // skip past the left paren. in GetExtentOfArgList()
4007 while (*argPtr && parenCount) { in GetExtentOfArgList()
4008 switch (*argPtr) { in GetExtentOfArgList()
4013 if (parenCount) argPtr++; in GetExtentOfArgList()
4015 assert((*argPtr == ')') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4016 RParen = argPtr; // output the end in GetExtentOfArgList()