OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:searchState
(Results
1 - 3
of
3
) sorted by null
/external/svox/pico/lib/
picokfst.h
118
such pairs exist at all; '*
searchState
' returns a search state to be used in
122
picoos_bool * inSymFound, picoos_int32 *
searchState
);
125
'*
searchState
' maintains the search state, 'pairFound' returns whether any more pair was found,
128
void picokfst_kfstGetNextPair (picokfst_FST this, picoos_int32 *
searchState
,
142
if so, '*
searchState
' returns a search state to be used in subsequent calls
145
picoos_bool * inEpsTransFound, picoos_int32 *
searchState
);
149
'*
searchState
' maintains the search state, '*inEpsTransFound' returns
153
void picokfst_kfstGetNextInEpsTrans (picokfst_FST this, picoos_int32 *
searchState
,
picokfst.c
273
picoos_bool * inSymFound, picoos_int32 *
searchState
)
283
(*
searchState
) = -1;
301
(*
searchState
) = pos;
309
extern void picokfst_kfstGetNextPair (picokfst_FST this, picoos_int32 *
searchState
,
317
if ((*
searchState
) < 0) {
322
pos = (*
searchState
);
329
(*
searchState
) = pos;
334
(*
searchState
) = -1;
364
picoos_bool * inEpsTransFound, picoos_int32 *
searchState
)
371
(*
searchState
) = -1
[
all
...]
picotrns.c
155
picoos_int32
searchState
; /**< pair search state or inEps trans search state */
324
picokfst_kfstStartPairSearch(fst,inSeq[altDesc->inPos].sym,& inSymFound,& altDesc->
searchState
);
341
picokfst_kfstGetNextPair(fst,& altDesc->
searchState
,& pairFound,& (*outSym),& pairClass);
355
picokfst_kfstStartInEpsTransSearch(fst,altDesc->startFSTState,& inEpsTransFound,& altDesc->
searchState
);
363
picokfst_kfstGetNextInEpsTrans(fst,& altDesc->
searchState
,& inEpsTransFound,& (*outSym),& (*endFSTState));
Completed in 312 milliseconds