Home | History | Annotate | Download | only in json

Lines Matching refs:mode

69      * The current mode. Values:
76 protected char mode;
98 this.mode = 'i';
114 if (this.mode == 'o' || this.mode == 'a') {
116 if (this.comma && this.mode == 'a') {
123 if (this.mode == 'o') {
124 this.mode = 'k';
142 if (this.mode == 'i' || this.mode == 'o' || this.mode == 'a') {
153 * @param m Mode
159 if (this.mode != m) {
205 if (this.mode == 'k') {
214 this.mode = 'o';
234 if (this.mode == 'i') {
235 this.mode = 'o';
237 if (this.mode == 'o' || this.mode == 'a') {
262 this.mode = this.top == 0 ? 'd' : this.stack[this.top - 1] == null ? 'a' : 'k';
275 this.mode = jo == null ? 'a' : 'k';