Home
last modified time | relevance | path

Searched refs:LISSPACE (Results 1 – 10 of 10) sorted by relevance

/external/srec/portable/src/
DLCHAR.c33 for (beginning = 0; beginning < len && LISSPACE(text[beginning]); ++beginning); in lstrtrim()
35 for (ending = len - 1; ending > beginning && LISSPACE(text[ending]); --ending); in lstrtrim()
88 if (endPtr == text || (!LISSPACE(*endPtr) && *endPtr != L('\0'))) in lstrtoi()
100 if (endPtr == text || (!LISSPACE(*endPtr) && *endPtr != L('\0'))) in lstrtoui()
112 if (endPtr == text || (!LISSPACE(*endPtr) && *endPtr != L('\0'))) in lstrtof()
165 for (beg = text; *beg != L('\0') && LISSPACE(*beg); ++beg); in LCHARGetInt()
169 for (end = beg; *end != L('\0') && !LISSPACE(*end); ++end); in LCHARGetInt()
DPFile.c222 for (i = 0; i < count && LISSPACE(number[i]); ++i); in PFileReadInt()
242 for (i = 0; i < bufferSize && !LISSPACE(number[i]); ++i); in PFileReadInt()
296 for (i = 0; i < count && LISSPACE(value[i]); ++i); in PFileReadLCHAR()
316 for (i = 0; i < bufferSize && !LISSPACE(value[i]); ++i); in PFileReadLCHAR()
/external/srec/srec/Vocabulary/src/
DVocabularyImpl.c595 if (num_out > 0 && !LISSPACE(output_sentence[num_out-1]) ) { in run_ttt()
599 while( LISSPACE(*input_sentence) ) input_sentence++; in run_ttt()
606 if (bDigit == True && !LISSPACE(output_sentence[num_out-1])) { in run_ttt()
610 while( LISSPACE(*input_sentence)) input_sentence++; in run_ttt()
617 if( LISSPACE(output_sentence[num_out-1])) in run_ttt()
618 while(LISSPACE(*input_sentence )) input_sentence++; // remove repeated spaces in run_ttt()
/external/srec/portable/include/
Dptypes.h307 #define LISSPACE(c) isspace((unsigned char) c) macro
427 #define LISSPACE iswspace macro
/external/srec/srec/Semproc/src/
DLexicalAnalyzer.c79 while (LISSPACE(*lex->nextToken)) in LA_nextToken()
/external/srec/srec/Nametag/src/
DNametagsImpl.c141 for (value = id + 1; *value != L('\0') && !LISSPACE(*value); ++value); in SR_NametagsLoadImpl()
152 for (++value; *value != L('\0') && LISSPACE(*value); ++value); in SR_NametagsLoadImpl()
/external/srec/srec/AcousticModels/src/
DAcousticModelsImpl.c333 while (LISSPACE(*filename)) filename++; in SR_AcousticModelsLoad()
336 for (i = 0; *filename != L('\0') && !LISSPACE(*filename); i++) in SR_AcousticModelsLoad()
/external/srec/shared/src/
DSessionTypeImpl.c1025 for (; pos < size && LISSPACE(text[pos]); ++pos); in parseIntList()
1035 for (; pos < size && !LISSPACE(text[pos]); ++pos); in parseIntList()
/external/srec/srec/test/SRecTestAudio/src/
DSRecTestAudio.c478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning); in getFirstToken()
482 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending); in getFirstToken()
/external/srec/srec/test/SRecTest/src/
DSRecTest.c478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning); in getFirstToken()
488 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending); in getFirstToken()