Searched defs:argListBegin (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Rewrite/
H A DRewriteObjC.cpp4167 const char *argListBegin, *argListEnd; local
4168 GetExtentOfArgList(startBuf, argListBegin, argListEnd);
4169 while (argListBegin < argListEnd) {
4170 if (*argListBegin == '^')
4172 else if (*argListBegin == '<') {
4174 buf += *argListBegin++;
4176 while (*argListBegin != '>') {
4177 buf += *argListBegin++;
4180 buf += *argListBegin;
4184 buf += *argListBegin;
[all...]
H A DRewriteModernObjC.cpp4640 const char *argListBegin, *argListEnd; local
4641 GetExtentOfArgList(startBuf, argListBegin, argListEnd);
4642 while (argListBegin < argListEnd) {
4643 if (*argListBegin == '^')
4645 else if (*argListBegin == '<') {
4647 buf += *argListBegin++;
4649 while (*argListBegin != '>') {
4650 buf += *argListBegin++;
4653 buf += *argListBegin;
4657 buf += *argListBegin;
[all...]

Completed in 66 milliseconds