Lines Matching refs:id
29 static BOOL GetCompResult(const char* id, const char* comp, const char* value, BOOL* pvalid) in GetCompResult() argument
35 defval = SearchDefValCleaned(id); in GetCompResult()
48 debug_printf("id(%s)=[%s] comp=[%s] value=[%s] valid=%d\n", id, defval, comp, value, valid); in GetCompResult()
54 static BOOL CondIf(const char* id, const char* comp, const char* value) in CondIf() argument
69 if (!GetCompResult(id, comp, value, &cond_valid)) in CondIf()
115 static BOOL StoreToken( int id, const char *str ) in StoreToken() argument
125 tokenBuffer[tokenBufferEnd].id = id; in StoreToken()
131 static BOOL PushLoopStack( int id, const char* sectionName ) in PushLoopStack() argument
141 loop_stack[loop_stack_level].id = id; in PushLoopStack()
144 return StoreToken( id, sectionName ); in PushLoopStack()
147 static BOOL PopLoopStack( int id ) in PopLoopStack() argument
155 if ( loop_stack_level < 0 || id != loop_stack[loop_stack_level].id ) in PopLoopStack()