HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 126 - 150 of 8676) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char __user *code; member in struct:sscape_microcode
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
sscape_ioctl.h 7 unsigned char code[256]; member in struct:sscape_bootblock
15 unsigned char __user *code; member in struct:sscape_microcode
  /external/android-clat/
icmp.h 34 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code);
37 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code);
40 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code);
43 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code);
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBDatabaseError.cpp 8 * * Redistributions of source code must retain the above copyright
46 void WebIDBDatabaseError::assign(unsigned short code)
48 m_private = DOMError::create(code);
51 void WebIDBDatabaseError::assign(unsigned short code, const WebString& message)
53 m_private = DOMError::create(code, message);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcexport.h 8 * 1. Redistributions of source code must retain the above copyright notice,
53 #define NON_EXPORTED_BASE(code) MSVC_SUPPRESS_WARNING(4275) \
54 code
57 #define NON_EXPORTED_BASE(code) code
  /external/chromium_org/tools/idl_parser/test_parser/
inline_ppapi.idl 2 Use of this source code is governed by a BSD-style license that can be
37 This is my block of C code
44 This is my block of CC code
  /libcore/luni/src/main/java/java/net/
HttpRetryException.java 34 * Creates a new {@code HttpRetryException} instance with the specified
35 * response code and the given detail message.
39 * @param code
40 * the HTTP response code from target host.
42 public HttpRetryException(String detail, int code) {
44 responseCode = code;
48 * Creates a new {@code HttpRetryException} instance with the specified
49 * response code, the given detail message and the value of the location
54 * @param code
55 * the HTTP response code from target host
    [all...]
  /external/elfutils/libdw/
dwarf_hasattr.c 20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
24 distribute linked combinations of the two. Non-GPL Code permitted under
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
28 of Non-GPL Code may instantiate templates or use macros or inline
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
68 unsigned int code; local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardStateTestsBase.java 84 private void pressKeyWithoutTimerExpire(final int code, final boolean isSinglePointer,
86 mSwitcher.onPressKey(code, isSinglePointer);
93 * @param code the key code to press.
96 public void pressKey(final int code, final int afterPress) {
98 pressKeyWithoutTimerExpire(code, true, afterPress);
104 * @param code the key code to release and register
107 public void releaseKey(final int code, final int afterRelease) {
108 mSwitcher.onCodeInput(code);
    [all...]
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 37 Bytecode code = makeBody(declaring, declaring.getClassFile2(), local
40 cons.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); local
59 code.setMaxLocals(false, parameters, 0);
60 code.addAload(0);
63 code.addInvokespecial(superclazz, "<init>", "()V");
66 stacksize = code.addLoadParameters(parameters, 1) + 1;
67 code.addInvokespecial(superclazz, "<init>",
71 stacksize = compileParameterList(code, parameters, 1);
78 stacksize2 = cparam.compile(code) + 2
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 105 abstract void consume (int code);
107 boolean isAccepted (int code)
109 return Character.isLetterOrDigit(code);
115 void consume (int code) {
116 System.out.print(code);
127 boolean isAccepted (int code)
129 return Character.isLetterOrDigit(code) || Character.isWhitespace(code);
135 void consume (int code) {
136 // System.out.print(code);
175 int code = 0; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileError.h 8 * * Redistributions of source code must retain the above copyright
72 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); }
74 ErrorCode code() const { return m_code; } function in class:WebCore::FileError
79 FileError(ErrorCode code)
80 : m_code(code)
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyError.h 7 * 1. Redistributions of source code must retain the above copyright
45 typedef unsigned short Code;
47 static PassRefPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0) { return adoptRef(new MediaKeyError(code, systemCode)); }
49 Code code() const { return m_code; } function in class:WebCore::MediaKeyError
53 explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCode
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionError.h 7 * 1. Redistributions of source code must retain the above copyright
44 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); }
46 ErrorCode code() const { return m_code; } function in class:WebCore::PositionError
52 PositionError(ErrorCode code, const String& message)
53 : m_code(code)
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
dec_pred_intra_dc.cpp 34 uint code; local
52 code = (int) BitstreamReadBits16_INLINE(stream, DC_size);
54 first_bit = code >> (DC_size - 1);
59 *INTRADC_delta = code ^((1 << DC_size) - 1);
64 *INTRADC_delta = code;
  /libcore/luni/src/main/java/libcore/io/
EventLogger.java 47 public void report (int code, Object... list);
55 public void report (int code, Object... list) {
57 sb.append(code);
66 public static void writeEvent(int code, Object... list) {
67 getReporter().report(code, list);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
close_wsh.py 8 # * Redistributions of source code must retain the above copyright
45 code, reason = line.split(' ', 1)
46 if code is None or reason is None:
48 request.ws_stream.close_connection(int(code), reason)
49 # close_connection() initiates closing handshake. It validates code
51 # following code will be useful.
52 # > data = struct.pack('!H', int(code)) + reason.encode('UTF-8')
59 # Simply echo a close status code
60 code, reason = request.ws_close_code, request.ws_close_reason
62 # pywebsocket sets pseudo code for receiving an empty body close frame
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StopRequestException.java 50 public static StopRequestException throwUnhandledHttpError(int code, String message)
52 final String error = "Unhandled HTTP response: " + code + " " + message;
53 if (code >= 400 && code < 600) {
54 throw new StopRequestException(code, error);
55 } else if (code >= 300 && code < 400) {
  /external/chromium_org/sandbox/linux/seccomp-bpf/
verifier.cc 2 // Use of this source code is governed by a BSD-style license that can be
38 uint32_t EvaluateErrorCode(Sandbox *sandbox, const ErrorCode& code,
40 if (code.error_type() == ErrorCode::ET_SIMPLE ||
41 code.error_type() == ErrorCode::ET_TRAP) {
42 return code.err();
43 } else if (code.error_type() == ErrorCode::ET_COND) {
44 if (code.width() == ErrorCode::TP_32BIT &&
45 (data.args[code.argno()] >> 32) &&
46 (data.args[code.argno()] & 0xFFFFFFFF80000000ull) !=
50 switch (code.op())
394 ErrorCode code = evaluate_syscall(sandbox, sysnum, aux); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_emit_nv50.cpp 132 code[pos / 32] |= SDATA(src).id << (pos % 32);
138 code[pos / 32] |= SDATA(*src).id << (pos % 32);
156 code[pos / 32] |= offset << (pos % 32);
167 code[pos / 32] |= (offset >> 2) << (pos % 32);
174 code[pos / 32] |= DDATA(def).id << (pos % 32);
181 case ROUND_M: code[1] |= 1 << 22; break;
182 case ROUND_P: code[1] |= 2 << 22; break;
183 case ROUND_Z: code[1] |= 3 << 22; break;
193 code[1] |= i->src(0).mod.neg() << 26;
194 code[1] |= i->src(1).mod.neg() << 27
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_emit_nv50.cpp 132 code[pos / 32] |= SDATA(src).id << (pos % 32);
138 code[pos / 32] |= SDATA(*src).id << (pos % 32);
156 code[pos / 32] |= offset << (pos % 32);
167 code[pos / 32] |= (offset >> 2) << (pos % 32);
174 code[pos / 32] |= DDATA(def).id << (pos % 32);
181 case ROUND_M: code[1] |= 1 << 22; break;
182 case ROUND_P: code[1] |= 2 << 22; break;
183 case ROUND_Z: code[1] |= 3 << 22; break;
193 code[1] |= i->src(0).mod.neg() << 26;
194 code[1] |= i->src(1).mod.neg() << 27
    [all...]
  /external/icu4c/common/
uscript.c 33 UScriptCode code = USCRIPT_INVALID_CODE; local
47 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
50 if(code==(UScriptCode)UCHAR_INVALID_CODE){
63 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, cName);
64 /* got the script code now fill in the buffer */
66 *(fillIn)++=code;
80 code = USCRIPT_INVALID_CODE;
82 if(code==(UScriptCode)UCHAR_INVALID_CODE){
84 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
86 if(code!=(UScriptCode)UCHAR_INVALID_CODE)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
KeyboardShortcut.js 9 * 1. Redistributions of source code must retain the above copyright
54 /** @typedef {{code: number, name: (string|Object.<string, string>)}} */
59 Backspace: { code: 8, name: "\u21a4" },
60 Tab: { code: 9, name: { mac: "\u21e5", other: "Tab" } },
61 Enter: { code: 13, name: { mac: "\u21a9", other: "Enter" } },
62 Esc: { code: 27, name: { mac: "\u238b", other: "Esc" } },
63 Space: { code: 32, name: "Space" },
64 PageUp: { code: 33, name: { mac: "\u21de", other: "PageUp" } }, // also NUM_NORTH_EAST
65 PageDown: { code: 34, name: { mac: "\u21df", other: "PageDown" } }, // also NUM_SOUTH_EAST
66 End: { code: 35, name: { mac: "\u2197", other: "End" } }, // also NUM_SOUTH_WES
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
TBCPadding.java 53 byte code;
57 code = (byte)((in[inOff - 1] & 0x01) == 0 ? 0xff : 0x00);
61 code = (byte)((in[in.length - 1] & 0x01) == 0 ? 0xff : 0x00);
66 in[inOff] = code;
79 byte code = in[in.length - 1];
82 while (index > 0 && in[index - 1] == code)
  /external/qemu/
user-events-qemu.c 32 user_event_key(unsigned code, unsigned down)
34 if(code == 0) {
38 printf(">> KEY [0x%03x,%s]\n", (code & 0x1ff), down ? "down" : " up " );
40 user_event_keycode((code & 0x1ff) | (down ? 0x200 : 0));
60 user_event_generic(int type, int code, int value)
63 generic_event_callback(generic_event_opaque, type, code, value);

Completed in 1787 milliseconds

1 2 3 4 56 7 8 91011>>