Lines Matching refs:argPtr

2341   const char *argPtr = TypeString.c_str();  in RewriteBlockPointerType()  local
2342 if (!strchr(argPtr, '^')) { in RewriteBlockPointerType()
2346 while (*argPtr) { in RewriteBlockPointerType()
2347 Str += (*argPtr == '^' ? '*' : *argPtr); in RewriteBlockPointerType()
2348 argPtr++; in RewriteBlockPointerType()
2357 const char *argPtr = TypeString.c_str(); in RewriteBlockPointerTypeVariable() local
2359 while (*argPtr) { in RewriteBlockPointerTypeVariable()
2360 switch (*argPtr) { in RewriteBlockPointerTypeVariable()
2362 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2366 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2375 Str += *argPtr; in RewriteBlockPointerTypeVariable()
2378 argPtr++; in RewriteBlockPointerTypeVariable()
4739 const char *argPtr = startBuf; in RewriteCastExpr() local
4741 while (*argPtr++ && (argPtr < endBuf)) { in RewriteCastExpr()
4742 switch (*argPtr) { in RewriteCastExpr()
4745 LocStart = LocStart.getLocWithOffset(argPtr-startBuf); in RewriteCastExpr()
4782 const char *argPtr = startArgList; in RewriteBlockPointerFunctionArgs() local
4784 while (*argPtr++ && parenCount) { in RewriteBlockPointerFunctionArgs()
4785 switch (*argPtr) { in RewriteBlockPointerFunctionArgs()
4788 DeclLoc = DeclLoc.getLocWithOffset(argPtr-startArgList); in RewriteBlockPointerFunctionArgs()
4844 const char *argPtr = strchr(Name, '('); in GetExtentOfArgList() local
4845 assert((*argPtr == '(') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4847 LParen = argPtr; // output the start. in GetExtentOfArgList()
4848 argPtr++; // skip past the left paren. in GetExtentOfArgList()
4851 while (*argPtr && parenCount) { in GetExtentOfArgList()
4852 switch (*argPtr) { in GetExtentOfArgList()
4857 if (parenCount) argPtr++; in GetExtentOfArgList()
4859 assert((*argPtr == ')') && "Rewriter fuzzy parser confused"); in GetExtentOfArgList()
4860 RParen = argPtr; // output the end in GetExtentOfArgList()