OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:checkParse
(Results
1 - 8
of
8
) sorted by null
/external/srec/srec/Semproc/include/
SR_SemanticProcessor.h
47
ESR_ReturnCode(*
checkParse
)(struct SR_SemanticProcessor_t* self, SR_SemanticGraph* semgraph, const LCHAR* transcription, SR_SemanticResult** result, size_t* resultCount);
/external/srec/srec/Grammar/include/
SR_Grammar.h
115
ESR_ReturnCode(*
checkParse
)(struct SR_Grammar_t* self, const LCHAR* transcription, SR_SemanticResult** result, size_t* resultCount);
/external/srec/srec/Grammar/src/
SR_Grammar.c
181
return self->
checkParse
(self, transcription, result, resultCount);
SR_GrammarImpl.c
50
impl->Interface.
checkParse
= &SR_Grammar_CheckParse;
73
* Create the Semantic Graph and Processor to support
CheckParse
function
658
/* NULL for special implementation when
CheckParse
is called by application that does not know
668
rc = impl->semproc->
checkParse
(impl->semproc, impl->semgraph, transcription, result, resultCount);
676
rc = impl->semproc->
checkParse
(impl->semproc, impl->semgraph, copy_of_trans, result, resultCount);
/external/srec/srec/Semproc/src/
SemanticProcessorImpl.c
139
impl->Interface.
checkParse
= &SR_SemanticProcessor_CheckParse;
[
all
...]
/external/srec/tools/parseStringTest/
parseStringTest.c
138
rc = grammar->
checkParse
(grammar, trans, semanticResults, (size_t*) & result_count);
228
rc = grammar->
checkParse
(grammar, trans, semanticResults, (size_t*) & result_count);
584
rc = grammar->
checkParse
(grammar, trans, semanticResults, (size_t*) & result_count);
/external/srec/tools/test_g2g/
test_g2g.c
451
rc = grammar->
checkParse
(grammar, trans, semanticResults, (size_t*) &result_count);
/external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c
[
all
...]
Completed in 127 milliseconds