| /frameworks/base/core/java/com/android/internal/widget/ |
| PasswordEntryKeyboard.java | 90 final int code = key.codes[0]; local 91 if (code >=0 && code != '\n' && (code < 32 || code > 127)) { 92 // Log.w(TAG, "Key code for " + key.label + " is not latin-1"); 256 final int code = codes[0]; local 257 if (code == KEYCODE_SHIFT || code == KEYCODE_DELETE) { 259 if (code == KEYCODE_SHIFT) x += width / 6 [all...] |
| /frameworks/base/core/jni/ |
| android_util_XmlBlock.cpp | 103 ResXMLParser::event_code_t code = st->next(); local 104 switch (code) {
|
| /frameworks/base/services/core/jni/ |
| com_android_server_tv_TvUinputBridge.cpp | 106 void sendEvent(int32_t type, int32_t code, int32_t value); 177 void NativeConnection::sendEvent(int32_t type, int32_t code, int32_t value) { 181 iev.code = code; 211 int32_t code = getLinuxKeyCode(keyCode); local 213 if (code != KEY_UNKNOWN) { 214 connection->sendEvent(EV_KEY, code, down ? 1 : 0);
|
| /frameworks/base/telecomm/java/android/telecom/ |
| DisconnectCause.java | 27 * Describes the cause of a disconnected call. This always includes a code describing the generic 87 * @param code The code for the disconnect cause. 89 public DisconnectCause(int code) { 90 this(code, null, null, null, ToneGenerator.TONE_UNKNOWN); 96 * @param code The code for the disconnect cause. 99 public DisconnectCause(int code, String reason) { 100 this(code, null, null, reason, ToneGenerator.TONE_UNKNOWN); 106 * @param code The code for the disconnect cause 243 String code = ""; local [all...] |
| /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/ |
| MethodCallExpr.java | 65 KCode code = new KCode() local 75 code.app(", "); 77 code.app("", arg.toCode(expand)); 79 code.app(")"); 80 return code;
|
| /frameworks/native/cmds/service/ |
| service.cpp | 131 int32_t code = atoi(argv[optind++]); local 275 service->transact(code, data, &reply); 286 aerr << "service: No code specified for call" << endl; 302 " service call SERVICE CODE [i32 N | i64 N | f N | d N | s16 STR ] ...\n"
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
| SuppServiceNotification.java | 30 public int code; field in class:SuppServiceNotification 68 + " code: " + code
|
| /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/ |
| h264parse.c | 221 uint32_t code; local 223 viddec_pm_get_bits(void * parent,uint32_t * data,uint32_t num_bits)(parent, &code, 24); 224 viddec_pm_get_bits(parent, &code, 1); //forbidden_zero_bit 226 viddec_pm_get_bits(parent, &code, 2); 227 SliceHeader->nal_ref_idc = (uint8_t)code; 229 viddec_pm_get_bits(parent, &code, 5); 230 pInfo->nal_unit_type = (uint8_t)code; 233 if( viddec_pm_get_bits(parent, &code, 8) != -1) 236 if( viddec_pm_get_bits(parent, &code, 32) != -1) 239 *nal_ref_idc = (uint8_t)((code>>5)&0x3) [all...] |
| /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
| viddec_mp4_videoobjectlayer.c | 51 uint32_t i,code=0; local 58 getbits = viddec_pm_get_bits(parent, &code, 8); 60 if (code == 0) break; 61 pQM[mp4_ClassicalZigzag[i]] = (uint8_t)(code & 0xFF); 103 uint32_t code=0; local 107 getbits = viddec_pm_get_bits(parent, &(code), 4); 109 cxt->chroma_format = (code >> 2) & 0x3; 110 cxt->low_delay = ((code & 0x2) > 0); 111 cxt->vbv_parameters = code & 0x1; 123 getbits = viddec_pm_get_bits(parent, &(code), 32) 182 uint32_t code; local 233 uint32_t code; local 269 uint32_t code; local 411 uint32_t code; local [all...] |
| /hardware/libhardware/modules/input/evdev/ |
| InputHub.h | 37 int32_t code; member in struct:android::InputEvent
|
| /hardware/qcom/audio/legacy/libalsa-intf/ |
| alsaucm_test.c | 2 * Copyright (c) 2012, Code Aurora Forum. All rights reserved. 7 * * Redistributions of source code must retain the above copyright 13 * * Neither the name of Code Aurora Forum, Inc. nor the names of its 66 enum ucm_cmd_id code; member in struct:cmd 187 if ((identifier == NULL) && ((cmd->code != UCM_HELP) && 188 (cmd->code != UCM_LISTCARDS) && (cmd->code != UCM_RESET) && 189 (cmd->code != UCM_RELOAD))) 195 switch (cmd->code) {
|
| /hardware/qcom/wlan/qcwcn/wifi_hal/ |
| ifaceeventhandler.cpp | 6 * * Redistributions of source code must retain the above copyright 114 char code[2]; local 115 memset(&code[0], 0, 2); 118 memcpy(&code[0], (char *) nla_data(tb[NL80211_ATTR_REG_ALPHA2]), 2); 122 ALOGV("Country : %c%c", code[0], code[1]); 125 mHandler.on_country_code_changed(code);
|
| /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
| proximity_info.cpp | 156 const int code = mKeyCodePoints[i]; local 157 const int lowerCode = CharUtils::toLowerCase(code); 168 mKeyIndexToOriginalCodePoint[i] = code;
|
| /packages/services/Car/service/src/com/android/car/hal/ |
| InputHalService.java | 108 int code = v.getInt32Values(1); local 111 Log.i(CarLog.TAG_INPUT, "hal event code:" + code + ",action:" + action + 114 KeyEvent event = new KeyEvent(action, code);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
| v4l2-subdev.h | 44 * @format: media bus format (format code and frame size) 70 * @code: format code (from enum v4l2_mbus_pixelcode) 75 __u32 code; member in struct:v4l2_subdev_mbus_code_enum 83 * @code: format code (from enum v4l2_mbus_pixelcode) 88 __u32 code; member in struct:v4l2_subdev_frame_size_enum 111 * @code: format code (from enum v4l2_mbus_pixelcode) 119 __u32 code; member in struct:v4l2_subdev_frame_interval_enum [all...] |
| /prebuilts/gdb/darwin-x86/include/python2.7/ |
| pyerrors.h | 48 PyObject *code; member in struct:__anon44292 218 /* Mask the old API with a call to the new API for code compiled under
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
| MiniAEFrame.py | 72 msg = "High Level Event: %r %r" % (code(message), code(h | (v<<16))) 170 def code(x): function 171 "Convert a long int to the 4-character code it really is"
|
| /prebuilts/gdb/linux-x86/include/python2.7/ |
| pyerrors.h | 48 PyObject *code; member in struct:__anon44414 218 /* Mask the old API with a call to the new API for code compiled under
|
| /prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
| pyerrors.h | 48 PyObject *code; member in struct:__anon72530 218 /* Mask the old API with a call to the new API for code compiled under
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
| MiniAEFrame.py | 72 msg = "High Level Event: %r %r" % (code(message), code(h | (v<<16))) 170 def code(x): function 171 "Convert a long int to the 4-character code it really is"
|
| /prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
| pyerrors.h | 48 PyObject *code; member in struct:__anon72653 218 /* Mask the old API with a call to the new API for code compiled under
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
| LayoutReloadMonitor.java | 65 public boolean code = false; field in class:LayoutReloadMonitor.ChangeFlags 73 return code && resources && rClass && localeList && manifest; 91 * @param libraryModified <code>true</code> if the changeFlags are not for the project 168 * This is only to detect code and manifest change. Resource changes (located in res/) 224 // here we only care about code change (so change for .class files). 236 // this is a code change! 242 changeFlags.code = true;
|
| /system/update_engine/payload_consumer/ |
| filesystem_verifier_action_unittest.cc | 85 void ProcessingDone(const ActionProcessor* processor, ErrorCode code) { 93 ErrorCode code) { 96 code_ = code; 100 ErrorCode code() const { return code_; } function in class:chromeos_update_engine::FilesystemVerifierActionTestDelegate 221 EXPECT_EQ(ErrorCode::kError, delegate.code()); 222 return (ErrorCode::kError == delegate.code()); 226 EXPECT_EQ(expected_exit_code, delegate.code()); 227 return (expected_exit_code == delegate.code()); 229 EXPECT_EQ(ErrorCode::kSuccess, delegate.code()); 252 ErrorCode code) { [all...] |
| /system/update_engine/ |
| update_engine_client.cc | 89 // flags. Returns the exit code of the program of kContinueRunning if it 521 ErrorCode code = static_cast<ErrorCode>(last_attempt_error); local 522 string error_msg = chromeos_update_engine::utils::ErrorCodeToString(code);
|
| /toolchain/binutils/binutils-2.25/opcodes/ |
| pdp11-dis.c | 83 print_operand (bfd_vma *memaddr, int code, disassemble_info *info) 85 int mode = (code >> 3) & 7; 86 int reg = code & 7; 155 if (!(code & JUMP)) 175 print_foperand (bfd_vma *memaddr, int code, disassemble_info *info) 177 int mode = (code >> 3) & 7; 178 int reg = code & 7; 183 return print_operand (memaddr, code, info); 334 int code = opcode & 0xff; local 337 FPRINTF (F, "%o", code); 342 int code = opcode & 0x3f; local 350 int code = opcode & 7; local [all...] |