Lines Matching refs:pStart

1479 char * skipCharLiteral(char *pStart)
1481 char * skipCharLiteral(pStart)
1482 char *pStart;
1485 char *p = pStart;
1504 char * skipSpaces(char *pStart)
1506 char * skipSpaces(pStart)
1507 char * pStart;
1510 char *p = pStart;
1516 char * skipToSeparatorOrEqualSign(char *pStart, int *pNest)
1518 char * skipToSeparatorOrEqualSign(pStart, pNest)
1519 char *pStart;
1523 char *p = pStart;
1578 char * skipToSeparator(char *pStart, int *pNest)
1580 char * skipToSeparator(pStart, pNest)
1581 char *pStart;
1585 char * p = pStart;
1598 char * getInitializer(char *pStart)
1600 char * getInitializer(pStart)
1601 char * pStart;
1612 require(pStart!=NULL, "getInitializer: invalid string");
1614 p = endFormal(pStart,
1628 Examines the string from pStart to pEnd-1.
1634 int isWhiteString(const char *pStart, const char *pEnd)
1636 int isWhiteString(pStart, pEnd)
1637 const char *pStart;
1642 for (p = pStart; p < pEnd; p++) {
1660 int hasMultipleOperands(char *pStart)
1662 int hasMultipleOperands(pStart)
1663 char *pStart;
1666 char *p = pStart;
1683 strBetween(pStart, pNext, pStop)
1686 to a work area. The start of the string is pStart. The end of the string
1696 char *strBetween(char *pStart, char *pNext, char *pStop)
1698 char *strBetween(pStart, pNext, pStop)
1699 char *pStart;
1711 require (pEnd >= pStart, "pEnd < pStart");
1712 for (pEnd--; pEnd >= pStart; pEnd--) { /* MR31 */
1715 for (p = pStart;
1730 pStart Pointer to the starting position of the formal list
1761 char * endFormal(char *pStart,
1769 char * endFormal(pStart,
1776 char *pStart;
1786 char *p = pStart;