• Home
  • Raw
  • Download

Lines Matching refs:common

116 …picoos_emRaiseException(this->common->em,status,NULL,(picoos_char*)"problem (re-)initializing the …  in ctrlInitialize()
274 picodata_disposeProcessingUnit(this->common->mm,&ctrl->procUnit[i]); in ctrlSubObjDeallocate()
275 picodata_disposeCharBuffer(this->common->mm, &ctrl->procCbOut[i]); in ctrlSubObjDeallocate()
278 picoos_deallocate(this->common->mm, (void *) &this->subObj); in ctrlSubObjDeallocate()
325 ctrl->procCbOut[newPU] = picodata_newCharBuffer(this->common->mm, in ctrlAddPU()
326 this->common,bufSize); in ctrlAddPU()
339 ctrl->procUnit[newPU] = picotok_newTokenizeUnit(this->common->mm, in ctrlAddPU()
340 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
344 ctrl->procUnit[newPU] = picopr_newPreprocUnit(this->common->mm, in ctrlAddPU()
345 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
349 ctrl->procUnit[newPU] = picowa_newWordAnaUnit(this->common->mm, in ctrlAddPU()
350 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
354 ctrl->procUnit[newPU] = picosa_newSentAnaUnit(this->common->mm, in ctrlAddPU()
355 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
359 ctrl->procUnit[newPU] = picoacph_newAccPhrUnit(this->common->mm, in ctrlAddPU()
360 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
364 ctrl->procUnit[newPU] = picospho_newSentPhoUnit(this->common->mm, in ctrlAddPU()
365 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
369 ctrl->procUnit[newPU] = picopam_newPamUnit(this->common->mm, in ctrlAddPU()
370 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
374 ctrl->procUnit[newPU] = picocep_newCepUnit(this->common->mm, in ctrlAddPU()
375 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
380 ctrl->procUnit[newPU] = picosink_newSinkUnit(this->common->mm, in ctrlAddPU()
381 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
386 ctrl->procUnit[newPU] = picosig_newSigUnit(this->common->mm, in ctrlAddPU()
387 this->common, cbIn, ctrl->procCbOut[newPU], this->voice); in ctrlAddPU()
391 this->common->mm, this->common, cbIn, in ctrlAddPU()
396 picodata_disposeCharBuffer(this->common->mm,&ctrl->procCbOut[newPU]); in ctrlAddPU()
421 picoos_Common common, picodata_CharBuffer cbIn, in picoctrl_newControl() argument
425 picodata_ProcessingUnit this = picodata_newProcessingUnit(mm, common, cbIn, in picoctrl_newControl()
469 picoctrl_disposeControl(this->common->mm,&this); in picoctrl_newControl()
501 picoos_Common common; member
531 picoos_emReset(this->common->em); in picoctrl_engReset()
544 … picoos_emRaiseException(this->common->em,status,NULL,(picoos_char*) "problem resetting engine"); in picoctrl_engReset()
591 this->common = NULL; in picoctrl_newEngine()
609 this->common = picoos_newCommon(engMM); in picoctrl_newEngine()
611 done = (NULL != this->common) && (NULL != engEM); in picoctrl_newEngine()
614 this->common->mm = engMM; in picoctrl_newEngine()
615 this->common->em = engEM; in picoctrl_newEngine()
622 this->cbIn = picodata_newCharBuffer(this->common->mm, in picoctrl_newEngine()
623 this->common, bSize); in picoctrl_newEngine()
626 this->cbOut = picodata_newCharBuffer(this->common->mm, in picoctrl_newEngine()
627 this->common, bSize); in picoctrl_newEngine()
632 this->control = picoctrl_newControl(this->common->mm, this->common, in picoctrl_newEngine()
671 picoctrl_disposeControl((*this)->common->mm,&((*this)->control)); in picoctrl_disposeEngine()
692 picoos_emReset(this->common->em); in picoctrl_engResetExceptionManager()
708 return this->common; in picoctrl_engGetCommon()