/frameworks/base/tools/stringslint/ |
D | stringslint.py | 41 codes = [] 42 if reset: codes.append("0") 44 if not fg is None: codes.append("3%d" % (fg)) 46 if not bright: codes.append("4%d" % (bg)) 47 else: codes.append("10%d" % (bg)) 48 if bold: codes.append("1") 49 elif dim: codes.append("2") 50 else: codes.append("22") 51 return "\033[%sm" % (";".join(codes))
|
/frameworks/base/tools/apilint/ |
D | deprecated_at_birth.py | 29 codes = [] 30 if reset: codes.append("0") 32 if not fg is None: codes.append("3%d" % (fg)) 34 if not bright: codes.append("4%d" % (bg)) 35 else: codes.append("10%d" % (bg)) 36 if bold: codes.append("1") 37 elif dim: codes.append("2") 38 else: codes.append("22") 39 return "\033[%sm" % (";".join(codes))
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
D | EditTextTypeActivity.java | 75 int codes[] = { KeyEvent.KEYCODE_H, KeyEvent.KEYCODE_E, KeyEvent.KEYCODE_L, in onCreate() 86 int code = codes[i % codes.length]; in onCreate()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PerPackageReadTimeouts.java | 91 static VersionCodes parse(String codes) { in parse() argument 92 if (TextUtils.isEmpty(codes)) { in parse() 95 String[] splits = codes.split("-", 2); in parse()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 722 if (label.length() > 1 && key.codes.length < 2) { in onBufferDraw() 794 && key.codes[0] > 32) { in getKeyIndices() 796 final int nCodes = key.codes.length; in getKeyIndices() 812 allKeys[j + c] = key.codes[c]; in getKeyIndices() 833 int code = key.codes[0]; in detectAndSendKey() 835 int[] codes = new int[MAX_NEARBY_KEYS]; in detectAndSendKey() local 836 Arrays.fill(codes, NOT_A_KEY); in detectAndSendKey() 837 getKeyIndices(x, y, codes); in detectAndSendKey() 845 code = key.codes[mTapCount]; in detectAndSendKey() 847 mKeyboardActionListener.onKey(code, codes); in detectAndSendKey() [all …]
|
D | Keyboard.java | 246 public int[] codes; field in Keyboard.Key 368 codes = new int[] { codesValue.data }; in Key() 370 codes = parseCSV(codesValue.string.toString()); in Key() 399 if (codes == null && !TextUtils.isEmpty(label)) { in Key() 400 codes = new int[] { label.charAt(0) }; in Key() 623 key.codes = new int[] { c }; in Keyboard() 834 if (key.codes[0] == KEYCODE_SHIFT) { in loadKeyboard() 844 } else if (key.codes[0] == KEYCODE_ALT) { in loadKeyboard()
|
/frameworks/proto_logging/stats/enums/stats/hdmi/ |
D | enums.proto | 81 // Represents all codes that are not represented by another value. 84 // Represents all number codes (codes 0x1E through 0x29).
|
/frameworks/hardware/interfaces/bufferhub/1.0/ |
D | IBufferClient.hal | 26 * error codes on failure. 45 * error codes on failure.
|
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/ |
D | Interaction.java | 157 private Interaction(int[] codes) { in Interaction() argument 158 mKeyCodes = codes; in Interaction()
|
/frameworks/proto_logging/stats/enums/bluetooth/smp/ |
D | enums.proto | 23 // SMP Pairing command codes
|
/frameworks/minikin/libs/minikin/ |
D | Hyphenator.cpp | 350 void Hyphenator::hyphenateFromCodes(const uint16_t* codes, size_t len, HyphenationType hyphenValue, in hyphenateFromCodes() argument 367 uint16_t c = codes[j]; in hyphenateFromCodes()
|
/frameworks/minikin/include/minikin/ |
D | Hyphenator.h | 230 void hyphenateFromCodes(const uint16_t* codes, size_t len, HyphenationType hyphenValue,
|
/frameworks/hardware/interfaces/cameraservice/common/2.0/ |
D | types.hal | 21 * status codes
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhone.java | 2258 String[] codes = wfcOperatorErrorCodes[i].split("\\|"); in processWfcDisconnectForNotification() local 2259 if (codes.length != 2) { in processWfcDisconnectForNotification() 2266 codes[0])) { in processWfcDisconnectForNotification() 2273 int codeStringLength = codes[0].length(); in processWfcDisconnectForNotification() 2274 char lastChar = codes[0].charAt(codeStringLength - 1); in processWfcDisconnectForNotification() 2287 int idx = Integer.parseInt(codes[1]); in processWfcDisconnectForNotification()
|
/frameworks/hardware/interfaces/cameraservice/device/2.0/ |
D | types.hal | 32 * Error codes for onDeviceError 36 * To indicate all invalid error codes.
|
/frameworks/proto_logging/stats/enums/bluetooth/hci/ |
D | enums.proto | 333 // HCI event codes from the Bluetooth 5.0 specification Vol 2, Part 7, Section 7 417 // Bluetooth low energy related meta event codes
|
/frameworks/proto_logging/stats/enums/telecomm/ |
D | enums.proto | 183 * Disconnected for reason not described by other disconnect codes.
|
/frameworks/base/apex/appsearch/service/java/com/android/server/appsearch/external/localstorage/ |
D | AppSearchImpl.java | 2152 private static void checkCodeOneOf(StatusProto statusProto, StatusProto.Code... codes) in checkCodeOneOf() argument 2154 for (int i = 0; i < codes.length; i++) { in checkCodeOneOf() 2155 if (codes[i] == statusProto.getCode()) { in checkCodeOneOf()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 1545 int32_t* codes = env->GetIntArrayElements(keyCodes, nullptr); in nativeHasKeys() local 1551 deviceId, uint32_t(sourceMask), numCodes, codes, flags)) { in nativeHasKeys() 1561 env->ReleaseIntArrayElements(keyCodes, codes, 0); in nativeHasKeys()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | GSMPhoneTest.java.broken | 1756 * to the "pending MMI codes" list before it returns. This seems
|
/frameworks/proto_logging/stats/ |
D | atoms.proto | 1110 // Wifi supplicant failure reason codes (IEEE Std 802.11-2016, 9.4.1.7, Table 9-45). 1174 // ClientModeImpl error codes 5734 // Represents UmountStat before the reboot for the current boot up. Error codes defined 5739 // Error codes defined as combination of FsStatFlags from system/core/fs_mgr/fs_mgr.cpp. 5783 // Status codes correspond to specific failure conditions in
|
/frameworks/base/core/api/ |
D | current.txt | 453 field @Deprecated public static final int codes = 16843330; // 0x1010242 19414 field @Deprecated public int[] codes;
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 404 field public static final int codes = 16843330; // 0x1010242 13595 field public int[] codes;
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 78931 Lcom/android/internal/R$attr;->codes:I
|