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

/external/clang/lib/Format/
H A DContinuationIndenter.h31 struct ParenState;
144 struct ParenState { struct in namespace:clang::format
145 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace, function in struct:clang::format::ParenState
225 /// \brief \c true if this \c ParenState already contains a line-break.
227 /// The first line break in a certain \c ParenState causes extra penalty so
232 /// \brief \c true if this \c ParenState contains multiple segments of a
260 bool operator<(const ParenState &Other) const {
324 std::vector<ParenState> Stack;
334 /// ParenState stack (in an otherwise identical state) and these different
/external/openfst/src/include/fst/extensions/pdt/
H A Dparen.h43 // ParenState: Pair of an open (close) parenthesis and
48 class ParenState { class in namespace:fst
54 size_t operator()(const ParenState<A> &p) const {
62 ParenState() : paren_id(kNoLabel), state_id(kNoStateId) {} function in class:fst::ParenState
64 ParenState(Label p, StateId s) : paren_id(p), state_id(s) {} function in class:fst::ParenState
66 bool operator==(const ParenState<A> &p) const {
72 bool operator!=(const ParenState<A> &p) const { return !(p == *this); }
74 bool operator<(const ParenState<A> &p) const {
84 const size_t ParenState<A>::kPrime = 7853;
127 typedef unordered_map<ParenState<
[all...]

Completed in 811 milliseconds