Home | History | Annotate | Download | only in intltest

Lines Matching refs:START

50     byte * start;
54 inline int content_size(){return current - start;} // size unit is byte
61 start = (byte *) realloc(start, new_size); // may change the value of start
62 current = start + cs_snap;
77 Buffer_byte():start(NULL),current(start),buffer_size(0){
81 free(start);
85 start != NULL ? memset(start, 0, buffer_size) : 0;
86 current = start;
97 return start;
792 enum StateType {START, IN_NUM, IN_VAR_FIRST, IN_VAR, IN_QUOTE, IN_QUOTE_BSLASH, IN_BSLASH, IN_STRING, DONE};
818 state = START;
822 if (c == 0 && state != START){//avoid buffer overflow. for IN_QUOE, IN_ESCAPE
827 case START:
850 break; // START
857 if (isWhiteSpace(c)){ // state = START; //do nothing
862 break;//START