Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 3 of 3) sorted by relevance

/development/tools/idegen/src/com/android/idegen/
DMakeFileParser.java204 char ch = value.charAt(i);
205 if (ch == ')') {
210 } else if (ch == '(') {
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DPduParser.java1120 protected static boolean isTokenCharacter(int ch) { in isTokenCharacter() argument
1133 if((ch < 33) || (ch > 126)) { in isTokenCharacter()
1137 switch(ch) { in isTokenCharacter()
1166 protected static boolean isText(int ch) { in isText() argument
1177 if(((ch >= 32) && (ch <= 126)) || ((ch >= 128) && (ch <= 255))) { in isText()
1181 switch(ch) { in isText()
/development/vndk/tools/sourcedr/ninja/
Dninja.py450 ch = self._line_buf[start + 1]
451 if ch in ' \t:$':
452 builder.append_raw(ch)