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()
3921 const char *argPtr = startBuf; in RewriteCastExpr() local
3923 while (*argPtr++ && (argPtr < endBuf)) { in RewriteCastExpr()
3924 switch (*argPtr) { in RewriteCastExpr()
3927 LocStart = LocStart.getLocWithOffset(argPtr-startBuf); in RewriteCastExpr()
3949 const char *argPtr = startArgList; in RewriteBlockPointerFunctionArgs() local
3951 while (*argPtr++ && parenCount) { in RewriteBlockPointerFunctionArgs()
3952 switch (*argPtr) { in RewriteBlockPointerFunctionArgs()
3955 DeclLoc = DeclLoc.getLocWithOffset(argPtr-startArgList); in RewriteBlockPointerFunctionArgs()
4011 const char *argPtr = strchr(Name, '('); in GetExtentOfArgList() local
4012 assert((*argPtr == '(') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4014 LParen = argPtr; // output the start. in GetExtentOfArgList()
4015 argPtr++; // skip past the left paren. in GetExtentOfArgList()
4018 while (*argPtr && parenCount) { in GetExtentOfArgList()
4019 switch (*argPtr) { in GetExtentOfArgList()
4024 if (parenCount) argPtr++; in GetExtentOfArgList()
4026 assert((*argPtr == ')') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4027 RParen = argPtr; // output the end in GetExtentOfArgList()