HomeSort by relevance Sort by last modified time
    Searched full:nextchar (Results 51 - 75 of 137) sorted by null

1 23 4 5 6

  /frameworks/base/telecomm/java/android/telecom/
ConnectionServiceAdapter.java 256 void onPostDialChar(String callId, char nextChar) {
259 adapter.onPostDialChar(callId, nextChar);
ConnectionServiceAdapterServant.java 339 public void onPostDialChar(String connectionId, char nextChar) {
342 args.argi1 = nextChar;
RemoteConnectionService.java 239 public void onPostDialChar(String callId, char nextChar) {
241 .onPostDialChar(nextChar);
RemoteConnection.java 108 * @param nextChar The character being processed.
110 public void onPostDialChar(RemoteConnection connection, char nextChar) {}
    [all...]
ConnectionService.java 511 public void onPostDialChar(Connection c, char nextChar) {
513 Log.d(this, "Adapter onPostDialChar %s, %s", c, nextChar);
514 mAdapter.onPostDialChar(id, nextChar);
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
ConnectionServiceFixture.java 286 public void sendOnPostDialChar(String id, char nextChar) throws Exception {
288 a.onPostDialChar(id, nextChar);
  /external/icu/icu4c/source/common/
rbbiscan.h 64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
rbbiscan.cpp 828 // nextChar for rules scanning. At this level, we handle stripping
833 void RBBIRuleScanner::nextChar(RBBIRuleChar &c) {
835 // Unicode Character constants needed for the processing done by nextChar(),
848 c.fChar = nextCharLL(); // get nextChar officially so character counts
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 47 char nextChar = 0;
49 nextChar = sql.charAt(i + 1);
51 if (nextChar == '\'') {
53 sb.append(nextChar);
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 150 mTokenizer->nextChar();
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
StringUtils.java 410 final String nextChar = text.substring(i, text.offsetByCodePoints(i, 1));
412 builder.append(nextChar.toUpperCase(locale));
414 builder.append(nextChar.toLowerCase(locale));
417 needsCapsNext = (Arrays.binarySearch(sortedSeparators, nextChar.codePointAt(0)) >= 0);
  /system/core/libutils/
PropertyMap.cpp 181 if (mTokenizer->nextChar() != '=') {
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java 291 public void onPostDialChar(final Call call, char nextChar) {
292 if (PhoneNumberUtils.is12Key(nextChar)) {
299 mDtmfLocalTonePlayer.playTone(call, nextChar);
314 } else if (nextChar == 0 || nextChar == TelecomManager.DTMF_CHARACTER_WAIT ||
315 nextChar == TelecomManager.DTMF_CHARACTER_PAUSE) {
323 Log.w(this, "onPostDialChar: invalid value %d", nextChar);
    [all...]
ConnectionServiceWrapper.java 402 public void onPostDialChar(String callId, char nextChar) throws RemoteException {
406 logIncoming("onPostDialChar %s %s", callId, nextChar);
410 call.onPostDialChar(nextChar);
    [all...]
Call.java 79 void onPostDialChar(Call call, char nextChar);
117 public void onPostDialChar(Call call, char nextChar) {}
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 189 char ch = 0, nextChar = 0;
280 nextChar = catedStr.charAt(itemEnd + 1);
281 nextKind = classifyCharacter(nextChar);
286 nextChar = 0x3B;
289 if (ch == nextChar)
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 145 NextChar = BitStream->getBitcodeBytes().getExtent();
220 NextChar = BitStream->getBitcodeBytes().getExtent();
  /external/icu/icu4c/source/i18n/
regexcmp.cpp 161 nextChar(fC); // Fetch the first char from the pattern string.
252 // NextChar. This is where characters are actually fetched from the pattern.
256 nextChar(fC);
    [all...]
regexcmp.h 63 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RBBIRuleScanner.java 725 // nextChar for rules scanning. At this level, we handle stripping
730 void nextChar(RBBIRuleChar c) {
732 // Unicode Character constants needed for the processing done by nextChar(),
745 c.fChar = nextCharLL(); // get nextChar officially so character counts
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
RemoteConnectionTest.java 285 public void onPostDialChar(RemoteConnection connection, char nextChar) {
286 super.onPostDialChar(connection, nextChar);
287 callbackInvoker.invoke(connection, nextChar);
    [all...]
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberMatcher.java 408 char nextChar = text.charAt(lastCharIndex);
409 if (isInvalidPunctuationSymbol(nextChar) || isLatinLetter(nextChar)) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 295 # define NEXTCHAR ((pANTLR3_UINT8)(INPUT->nextChar))
300 # define NEXTCHAR ((pANTLR3_UINT16)(INPUT->nextChar))
305 # define LA(n) ((NEXTCHAR + n) > (DATAP + INPUT->sizeBuf) ? ANTLR3_CHARSTREAM_EOF : (ANTLR3_UCHAR)(*(NEXTCHAR + n - 1)))
308 if (NEXTCHAR \< (DATAP + INPUT->sizeBuf)) \\
311 if ((ANTLR3_UCHAR)(*NEXTCHAR) == INPUT->newlineChar) \\
315 INPUT->currentLine = (void *)(NEXTCHAR + 1); \\
317 INPUT->nextChar = (void *)(NEXTCHAR + 1); \
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.h 257 char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
288 void NextChar();
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 515 char nextChar = sCharacterClasses[charClass].charAt(r.nextInt(classLength));
516 sb.append(nextChar);

Completed in 1579 milliseconds

1 23 4 5 6