Lines Matching refs:input_
22 this.input_ = input;
84 if (this.input_[this.cur_pos_ + i] !== str[i])
149 if (this.input_[end] === "-")
152 while (end < this.len_ && this.isNum(this.input_[end]))
156 if (end >= this.len_ || this.input_[end] !== ".")
160 while (end < this.len_ && this.isNum(this.input_[end]))
163 let substr = this.input_.substr(start, end - start);
183 if (end + 2 >= this.len_ || this.input_[end] !== "0" ||
184 this.input_[end + 1] !== "x") {
190 while (end < this.len_ && this.isHex(this.input_[end]))
195 let val = parseInt(this.input_.substr(start, end - start), 16);
210 if (this.input_[end] === "-")
213 if (end >= this.len_ || !this.isNum(this.input_[end]))
216 while (end < this.len_ && this.isNum(this.input_[end]))
221 let val = parseInt(this.input_.substr(start, end - start), 10);
240 (this.isAlphaNum(this.input_[this.cur_pos_]) || this.is("_"))) {
244 let ident = this.input_.substr(start, this.cur_pos_ - start);
266 (this.isAlphaNum(this.input_[this.cur_pos_]) || this.is("_"))) {
270 let ident = this.input_.substr(start, this.cur_pos_ - start);
284 if (this.input_[this.cur_pos_] !== "O" ||
285 this.input_[this.cur_pos_ + 1] !== "p") {
295 name: this.input_.substr(start, this.cur_pos_ - start)
348 str += this.input_[this.cur_pos_];
351 str += this.input_[this.cur_pos_];