Searched refs:code (Results 26 - 50 of 2271) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DWarning.java48 * Comment for <code>serialVersionUID</code>
52 /** warn code field, the warn code consists of three digits.
54 protected int code; field in class:Warning
77 ? Integer.toString(code)
84 : Integer.toString(code) + SP + agent;
88 * Gets code of WarningHeader
89 * @return code of WarningHeader
92 return code;
116 setCode(int code) argument
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBDatabaseError.h8 * 1. Redistributions of source code must retain the above copyright
40 static PassRefPtr<IDBDatabaseError> create(unsigned short code, const String& message) argument
42 ASSERT(code >= IDBDatabaseException::IDBDatabaseExceptionOffset);
43 ASSERT(code < IDBDatabaseException::IDBDatabaseExceptionMax);
44 return adoptRef(new IDBDatabaseError(code - IDBDatabaseException::IDBDatabaseExceptionOffset, message));
47 static PassRefPtr<IDBDatabaseError> createWithoutOffset(unsigned short code, const String& message)
49 ASSERT(code < IDBDatabaseException::IDBDatabaseExceptionOffset);
50 return adoptRef(new IDBDatabaseError(code, message));
55 unsigned short code() const { return m_code; }
61 IDBDatabaseError(unsigned short code, cons
[all...]
H A DSQLError.h8 * 1. Redistributions of source code must retain the above copyright
41 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); } argument
43 unsigned code() const { return m_code; } function in class:WebCore::SQLError
58 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy()) { } argument
/external/webkit/Source/WebCore/inspector/front-end/
H A DKeyboardShortcut.js9 * 1. Redistributions of source code must retain the above copyright
52 Backspace: { code: 8, name: "\u21a4" },
53 Tab: { code: 9, name: { mac: "\u21e5", other: "<Tab>" } },
54 Enter: { code: 13, name: { mac: "\u21a9", other: "<Enter>" } },
55 Esc: { code: 27, name: { mac: "\u238b", other: "<Esc>" } },
56 Space: { code: 32, name: "<Space>" },
57 PageUp: { code: 33, name: { mac: "\u21de", other: "<PageUp>" } }, // also NUM_NORTH_EAST
58 PageDown: { code: 34, name: { mac: "\u21df", other: "<PageDown>" } }, // also NUM_SOUTH_EAST
59 End: { code: 35, name: { mac: "\u2197", other: "<End>" } }, // also NUM_SOUTH_WEST
60 Home: { code
[all...]
/external/qemu/android/
H A Dkeycode-array.c20 unsigned code,
23 if (code != 0 && keycodes->keycode_count < MAX_KEYCODES) {
25 ( (code & 0x1ff) | (down ? 0x200 : 0) );
37 int code = keycodes->keycodes[nn]; local
38 printf(" [0x%03x,%s]", (code & 0x1ff), (code & 0x200) ? "down" : " up " );
19 android_keycodes_add_key_event( AKeycodeBuffer* keycodes, unsigned code, unsigned down ) argument
/external/clang/test/Driver/
H A Doutput-file-cleanup.c24 invalid C code
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLocal.java19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) { argument
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) { argument
36 return new Local<T>(code, type);
59 code.initializeLocals();
/external/icu4c/common/
H A Derrorcode.cpp23 UErrorCode code = errorCode; local
25 return code;
/external/junit/src/org/junit/internal/
H A DRealSystem.java7 public void exit(int code) { argument
8 System.exit(code);
/external/valgrind/main/none/tests/x86/
H A Dsmc1.c2 /* Test Valgrind's ability to spot writes to code which has been
18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is
47 static UChar code[10]; variable
49 /* Make `code' be PUSHL $dest ; ret */
53 code[0] = 0x68; /* PUSH imm32 */
54 code[1] = (dest & 0xFF);
55 code[2] = ((dest >> 8) & 0xFF);
56 code[3] = ((dest >> 16) & 0xFF);
57 code[
[all...]
/external/elfutils/libdw/
H A Ddwarf_hasattr.c20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
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
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
69 (void) __libdw_find_attr (die, search_name, &code, NULL);
71 return code
[all...]
H A Ddwarf_whatattr.c1 /* Return attribute code of given attribute.
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
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
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
63 return attr == NULL ? 0 : attr->code;
/external/webkit/Source/WebCore/page/
H A DNavigatorUserMediaError.h7 * 1. Redistributions of source code must retain the above copyright
41 NavigatorUserMediaError(ErrorCode code) : m_code(code) { } argument
44 ErrorCode code() const { return m_code; } function in class:WebCore::NavigatorUserMediaError
H A DGeolocationError.h7 * 1. Redistributions of source code must retain the above copyright
45 static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); } argument
47 ErrorCode code() const { return m_code; } function in class:WebCore::GeolocationError
51 GeolocationError(ErrorCode code, const String& message) argument
52 : m_code(code)
/external/javassist/src/main/javassist/
H A DCtNewWrappedConstructor.java37 Bytecode code = makeBody(declaring, declaring.getClassFile2(),
40 cons.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0);
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)
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileError.h8 * * Redistributions of source code must retain the above copyright
59 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); } argument
61 ErrorCode code() const { return m_code; } function in class:WebCore::FileError
64 FileError(ErrorCode code) argument
65 : m_code(code)
/external/webkit/Source/WebCore/html/
H A DMediaError.h7 * 1. Redistributions of source code must retain the above copyright
40 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); } argument
42 Code code() const { return m_code; } function in class:WebCore::MediaError
45 MediaError(Code code) : m_code(code) { } argument
/external/kernel-headers/original/linux/
H A Dfilter.h16 * Current version of the filter code architecture.
23 * the BPF code definitions which need to match so you can share filters
28 __u16 code; /* Actual filter code */ member in struct:sock_filter
58 #define BPF_CLASS(code) ((code) & 0x07)
69 #define BPF_SIZE(code) ((code) & 0x18)
73 #define BPF_MODE(code) ((code)
[all...]
/external/webkit/Source/WebCore/dom/
H A DExceptionCode.cpp7 * 1. Redistributions of source code must retain the above copyright
252 int code = ec; local
259 if (code >= RangeException::RangeExceptionOffset && code <= RangeException::RangeExceptionMax) {
262 code -= RangeException::RangeExceptionOffset;
267 } else if (code >= EventException::EventExceptionOffset && code <= EventException::EventExceptionMax) {
270 code -= EventException::EventExceptionOffset;
275 } else if (code >= XMLHttpRequestException::XMLHttpRequestExceptionOffset && code <
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
H A DTBCPadding.java53 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/
H A Duser-events-qemu.c32 user_event_key(unsigned code, unsigned down) argument
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) argument
63 generic_event_callback(generic_event_opaque, type, code, value);
/external/apache-http/src/org/apache/http/
H A DHttpResponse.java55 * @return the status line, or <code>null</code> if not yet set
72 * @param code the status code
74 void setStatusLine(ProtocolVersion ver, int code); argument
80 * @param code the status code
81 * @param reason the reason phrase, or <code>null</code> to omit
83 void setStatusLine(ProtocolVersion ver, int code, Strin argument
103 setStatusCode(int code) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCodeAddress.java17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
23 * Pseudo-instruction which is used to track an address within a code
25 * exception handler ranges. Its code size is zero, and so instances
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
55 return "code-address";
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DFileBlockHeader.java9 * * Redistributions of source code must retain the above copyright
62 private int code; field in class:FileBlockHeader
88 code = inputStream.readByte() << 24 | inputStream.readByte() << 16
95 if (FileBlockHeader.BLOCK_DNA1 == code) {
118 * This method returns the code of this data block.
119 * @return the code of this data block
122 return code;
170 return FileBlockHeader.BLOCK_ENDB == code;
178 return FileBlockHeader.BLOCK_DNA1 == code;
183 return "FILE BLOCK HEADER [" + this.codeToString(code)
192 codeToString(int code) argument
[all...]
/external/strace/
H A Dioctlsort.c9 * 1. Redistributions of source code must retain the above copyright
41 unsigned long code; member in struct:ioctlent
53 unsigned long code1 = ((struct ioctlent *) a)->code;
54 unsigned long code2 = ((struct ioctlent *) b)->code;
66 ioctlent[i].doth, ioctlent[i].symbol, ioctlent[i].code);

Completed in 605 milliseconds

1234567891011>>