Searched refs:clause (Results 1 - 4 of 4) sorted by relevance

/haiku/src/apps/terminal/
H A DInlineInput.cpp13 struct clause struct
104 void *newData = realloc(fClauses, (fNumClauses + 1) * sizeof(clause));
108 fClauses = (clause *)newData;
122 clause *clause = &fClauses[index]; local
124 *start = clause->start;
126 *end = clause->end;
H A DInlineInput.h15 struct clause;
52 clause *fClauses;
/haiku/src/kits/interface/textview_support/
H A DInlineInput.cpp19 struct clause struct
152 /*! \brief Adds a clause (see "The Input Server" sez. for details).
153 \param start The offset into the string where the clause starts.
154 \param end The offset into the string where the clause finishes.
159 void *newData = realloc(fClauses, (fNumClauses + 1) * sizeof(clause));
163 fClauses = (clause *)newData;
171 /*! \brief Gets the clause at the given index.
172 \param index The index of the clause to get.
173 \param start A pointer to an integer which will contain the clause's start offset.
174 \param end A pointer to an integer which will contain the clause'
183 clause *clause = &fClauses[index]; local
[all...]
H A DInlineInput.h15 struct clause;
57 clause *fClauses;

Completed in 158 milliseconds