Lines Matching refs:argPtr

2340   const char *argPtr = TypeString.c_str();  in RewriteBlockPointerType()  local
2341 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2345 while (*argPtr) { in RewriteBlockPointerType()
2346 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2347 argPtr++; in RewriteBlockPointerType()
2356 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2358 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2359 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2361 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2365 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2374 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2377 argPtr++; in RewriteBlockPointerTypeVariable()
4736 const char *argPtr = startBuf; in RewriteCastExpr() local
4738 while (*argPtr++ && (argPtr < endBuf)) { in RewriteCastExpr()
4739 switch (*argPtr) { in RewriteCastExpr()
4742 LocStart = LocStart.getLocWithOffset(argPtr-startBuf); in RewriteCastExpr()
4779 const char *argPtr = startArgList; in RewriteBlockPointerFunctionArgs() local
4781 while (*argPtr++ && parenCount) { in RewriteBlockPointerFunctionArgs()
4782 switch (*argPtr) { in RewriteBlockPointerFunctionArgs()
4785 DeclLoc = DeclLoc.getLocWithOffset(argPtr-startArgList); in RewriteBlockPointerFunctionArgs()
4841 const char *argPtr = strchr(Name, '('); in GetExtentOfArgList() local
4842 assert((*argPtr == '(') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4844 LParen = argPtr; // output the start. in GetExtentOfArgList()
4845 argPtr++; // skip past the left paren. in GetExtentOfArgList()
4848 while (*argPtr && parenCount) { in GetExtentOfArgList()
4849 switch (*argPtr) { in GetExtentOfArgList()
4854 if (parenCount) argPtr++; in GetExtentOfArgList()
4856 assert((*argPtr == ')') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4857 RParen = argPtr; // output the end in GetExtentOfArgList()