|
Gaudi Framework, version v25r1 |
| Home | Generated: Mon Mar 24 2014 |


Public Member Functions | |
| def | __init__ |
| def | parseImpl |
| def | __str__ |
Public Member Functions inherited from pyparsing.Token | |
| def | __init__ |
| def | setName |
Public Member Functions inherited from pyparsing.ParserElement | |
| def | setDefaultWhitespaceChars |
| def | __init__ |
| def | copy |
| def | setName |
| def | setResultsName |
| def | setBreak |
| def | setParseAction |
| def | addParseAction |
| def | setFailAction |
| def | preParse |
| def | parseImpl |
| def | postParse |
| def | tryParse |
| def | resetCache |
| def | enablePackrat |
| def | parseString |
| def | scanString |
| def | transformString |
| def | searchString |
| def | __add__ |
| def | __radd__ |
| def | __sub__ |
| def | __rsub__ |
| def | __mul__ |
| def | __rmul__ |
| def | __or__ |
| def | __ror__ |
| def | __xor__ |
| def | __rxor__ |
| def | __and__ |
| def | __rand__ |
| def | __invert__ |
| def | __call__ |
| def | suppress |
| def | leaveWhitespace |
| def | setWhitespaceChars |
| def | parseWithTabs |
| def | ignore |
| def | setDebugActions |
| def | setDebug |
| def | __str__ |
| def | __repr__ |
| def | streamline |
| def | checkRecursion |
| def | validate |
| def | parseFile |
| def | getException |
| def | __getattr__ |
| def | __eq__ |
| def | __ne__ |
| def | __hash__ |
| def | __req__ |
| def | __rne__ |
Public Attributes | |
| quoteChar | |
| quoteCharLen | |
| firstQuoteChar | |
| endQuoteChar | |
| endQuoteCharLen | |
| escChar | |
| escQuote | |
| unquoteResults | |
| flags | |
| pattern | |
| escCharReplacePattern | |
| re | |
| reString | |
| name | |
| errmsg | |
| mayIndexError | |
| mayReturnEmpty | |
| strRepr | |
Public Attributes inherited from pyparsing.Token | |
| errmsg | |
Public Attributes inherited from pyparsing.ParserElement | |
| parseAction | |
| failAction | |
| strRepr | |
| resultsName | |
| saveAsList | |
| skipWhitespace | |
| whiteChars | |
| copyDefaultWhiteChars | |
| mayReturnEmpty | |
| keepTabs | |
| ignoreExprs | |
| debug | |
| streamlined | |
| mayIndexError | |
| errmsg | |
| modalResults | |
| debugActions | |
| re | |
| callPreparse | |
| callDuringTry | |
| name | |
| myException | |
Additional Inherited Members | |
Static Public Attributes inherited from pyparsing.ParserElement | |
| string | DEFAULT_WHITE_CHARS " \n\t\r" |
| tuple | setDefaultWhitespaceChars staticmethod(setDefaultWhitespaceChars) |
| tuple | resetCache staticmethod(resetCache) |
| tuple | enablePackrat staticmethod(enablePackrat) |
Token for matching strings that are delimited by quoting characters.
Definition at line 1799 of file pyparsing.py.
| def pyparsing.QuotedString.__init__ | ( | self, | |
| quoteChar, | |||
escChar = None, |
|||
escQuote = None, |
|||
multiline = False, |
|||
unquoteResults = True, |
|||
endQuoteChar = None |
|||
| ) |
Defined with the following parameters:
- quoteChar - string of one or more characters defining the quote delimiting string
- escChar - character to escape quotes, typically backslash (default=None)
- escQuote - special quote sequence to escape an embedded quote string (such as SQL's "" to escape an embedded ") (default=None)
- multiline - boolean indicating whether quotes can span multiple lines (default=False)
- unquoteResults - boolean indicating whether the matched text should be unquoted (default=True)
- endQuoteChar - string of one or more characters defining the end of the quote delimited string (default=None => same as quoteChar)
Definition at line 1802 of file pyparsing.py.
| def pyparsing.QuotedString.__str__ | ( | self | ) |
Definition at line 1903 of file pyparsing.py.
| def pyparsing.QuotedString.parseImpl | ( | self, | |
| instring, | |||
| loc, | |||
doActions = True |
|||
| ) |
Definition at line 1876 of file pyparsing.py.
| pyparsing.QuotedString.endQuoteChar |
Definition at line 1831 of file pyparsing.py.
| pyparsing.QuotedString.endQuoteCharLen |
Definition at line 1832 of file pyparsing.py.
| pyparsing.QuotedString.errmsg |
Definition at line 1871 of file pyparsing.py.
| pyparsing.QuotedString.escChar |
Definition at line 1833 of file pyparsing.py.
| pyparsing.QuotedString.escCharReplacePattern |
Definition at line 1859 of file pyparsing.py.
| pyparsing.QuotedString.escQuote |
Definition at line 1834 of file pyparsing.py.
| pyparsing.QuotedString.firstQuoteChar |
Definition at line 1830 of file pyparsing.py.
| pyparsing.QuotedString.flags |
Definition at line 1838 of file pyparsing.py.
| pyparsing.QuotedString.mayIndexError |
Definition at line 1873 of file pyparsing.py.
| pyparsing.QuotedString.mayReturnEmpty |
Definition at line 1874 of file pyparsing.py.
| pyparsing.QuotedString.name |
Definition at line 1870 of file pyparsing.py.
| pyparsing.QuotedString.pattern |
Definition at line 1839 of file pyparsing.py.
| pyparsing.QuotedString.quoteChar |
Definition at line 1828 of file pyparsing.py.
| pyparsing.QuotedString.quoteCharLen |
Definition at line 1829 of file pyparsing.py.
| pyparsing.QuotedString.re |
Definition at line 1863 of file pyparsing.py.
| pyparsing.QuotedString.reString |
Definition at line 1864 of file pyparsing.py.
| pyparsing.QuotedString.strRepr |
Definition at line 1910 of file pyparsing.py.
| pyparsing.QuotedString.unquoteResults |
Definition at line 1835 of file pyparsing.py.