Searched defs:code (Results 1 - 25 of 635) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_hasattr.c32 unsigned int code; local
33 (void) __libdw_find_attr (die, search_name, &code, NULL);
35 return code == search_name;
H A Ddwarf_getabbrev.c46 representing the abbreviation code itself. [...] The
47 abbreviation code is followed by another unsigned LEB128
60 unsigned int code; local
61 get_uleb128 (code, abbrevp);
63 /* Check whether this code is already in the hash table. */
67 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL)
88 abb->code = code;
111 (void) Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb);
H A Ddwarf_tag.c24 __libdw_findabbrev (struct Dwarf_CU *cu, unsigned int code) argument
29 abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL);
49 /* Is this the code we are looking for? */
50 if (abb->code == code)
65 /* Get the abbreviation code. */
/external/v8/test/mjsunit/
H A Dchar-escape.js6 // * Redistributions of source code must retain the above copyright
36 function code(str) { function
41 assertEquals(0x08, code("\b"));
42 assertEquals(0x09, code("\t"));
43 assertEquals(0x0A, code("\n"));
44 assertEquals(0x0B, code("\v"));
45 assertEquals(0x0C, code("\f"));
46 assertEquals(0x0D, code("\r"));
47 assertEquals(0x22, code("\""));
48 assertEquals(0x27, code("\'"));
[all...]
H A Dnewline-in-string.js6 // * Redistributions of source code must retain the above copyright
39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'"; variable
40 assertEquals('asdfasdf', eval(code));
43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'";
44 assertEquals('asdfasdf', eval(code));
/external/v8/test/mjsunit/compiler/
H A Dliterals-assignment.js6 // * Redistributions of source code must retain the above copyright
34 var code = "(function() {\ variable
39 assertEquals(8, eval(code));
41 code = "(function() {\
46 assertEquals("abc", eval(code));
50 code = "(function() {\
55 assertEquals(8, eval(code));
58 code = "(function() {\
63 assertEquals(8, eval(code));
66 code
[all...]
/external/llvm/lib/Support/
H A Dregcname.h2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
41 char code; member in struct:cname
/external/qemu/android/
H A Dkeycode.c15 android_keycode_rotate( AndroidKeyCode code, int rotation ) argument
25 if (code == wheel[index]) {
27 code = wheel[index];
31 return code;
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/webkit/LayoutTests/http/tests/resources/
H A Dredirect.php11 $code = $_GET['code']; variable
12 if (!isset($code))
13 $code = 302; variable
14 header("HTTP/1.1 $code");
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
H A Deap_wsc_common.c23 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) argument
27 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_wsc_common.c23 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) argument
27 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_wsc_common.c23 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) argument
27 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_wsc_common.c23 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) argument
27 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
/external/dropbear/libtommath/
H A Dbn_error.c19 int code; member in struct:__anon4090
27 /* return a char * string for a given code */
28 char *mp_error_to_string(int code) argument
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
/external/icu4c/common/
H A Derrorcode.cpp23 UErrorCode code = errorCode; local
25 return code;
/external/bluetooth/glib/glib/
H A Dgerror.h37 gint code; member in struct:_GError
42 gint code,
47 gint code,
55 gint code);
57 /* if (err) *err = g_error_new(domain, code, format, ...), also has
62 gint code,
68 gint code,
/external/icu4c/extra/scrptrun/
H A Dsrtest.cpp34 UScriptCode code = scriptRun.getScriptCode(); local
36 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
/external/proguard/src/proguard/classfile/instruction/
H A DInstructionFactory.java34 public static Instruction create(byte[] code, int offset) argument
39 byte opcode = code[index++];
44 opcode = code[index++];
295 instruction.readInfo(code, index);
/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...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebScriptSource.h8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:WebKit::WebScriptSource
44 WebScriptSource(const WebString& code) argument
45 : code(code), startLine(1) { }
46 WebScriptSource(const WebString& code, const WebURL& url) argument
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine) argument
49 : code(cod
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMDOMException.java36 * @param code
39 public DTMDOMException(short code, String message) argument
41 super(code, message);
48 * @param code
50 public DTMDOMException(short code) argument
52 super(code, "");
/external/clang/test/CodeGen/
H A D2004-03-15-SimpleIndirectGoto.c3 int code[]={0,0,0,0,1}; variable
21 bar(code);
/external/clang/test/PCH/
H A Dfunctions.c22 void __attribute__((noreturn)) test_abort(int code) { argument
23 do_abort(code);
/external/harfbuzz/src/
H A Dharfbuzz-impl.c81 _hb_err (HB_Error code) argument
83 return code;

Completed in 585 milliseconds

1234567891011>>