HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 1 - 25 of 879) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_hasattr.c 32 unsigned int code; local
33 (void) __libdw_find_attr (die, search_name, &code, NULL);
35 return code == search_name;
  /external/v8/test/mjsunit/
char-escape.js 6 // * 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...]
newline-in-string.js 6 // * 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/
literals-assignment.js 6 // * 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 = "(function() {
    [all...]
  /bionic/libc/regex/
cname.h 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/icu4c/common/
errorcode.cpp 23 UErrorCode code = errorCode; local
25 return code;
  /external/llvm/lib/Support/
regcname.h 2 * 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/
keycode-array.c 20 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 " );
  /external/webkit/LayoutTests/http/tests/resources/
redirect.php 11 $code = $_GET['code']; variable
12 if (!isset($code))
13 $code = 302; variable
14 header("HTTP/1.1 $code");
  /ndk/sources/host-tools/ndk-stack/regex/
cname.h 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/dropbear/libtommath/
bn_error.c 19 int code; member in struct:__anon5568
27 /* return a char * string for a given code */
28 char *mp_error_to_string(int code)
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
  /frameworks/base/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;
  /dalvik/dx/junit-tests/
HelloWorldMaker.java 18 import com.android.dx.gen.Code;
24 import com.android.dx.rop.code.AccessFlags;
39 * This code generates Dalvik bytecode equivalent to the following
61 Code code = generator.declare(hello, AccessFlags.ACC_STATIC | AccessFlags.ACC_PUBLIC); local
62 Local<Integer> a = code.newLocal(Type.INT);
63 Local<Integer> b = code.newLocal(Type.INT);
64 Local<Integer> c = code.newLocal(Type.INT);
65 Local<String> s = code.newLocal(Type.STRING);
66 Local<PrintStream> localSystemOut = code.newLocal(PRINT_STREAM)
    [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...]
CtNewMethod.java 24 * A collection of static methods for creating a <code>CtMethod</code>.
32 * Compiles the given source code and creates a method.
33 * The source code must include not only the method body
48 * Compiles the given source code and creates a method.
49 * The source code must include not only the method body
54 * <p>If the source code includes <code>$proceed()</code>, then
60 * that is called on by <code>$proceed()</code>
231 Bytecode code = new Bytecode(cp, 2, 1); local
272 Bytecode code = new Bytecode(cp, 3, 3); local
342 Bytecode code = new Bytecode(cp, 0, 0); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 17 package com.android.dx.cf.code;
  /external/bluetooth/glib/glib/
gerror.h 37 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/clang/test/CodeGen/
2004-03-15-SimpleIndirectGoto.c 3 int code[]={0,0,0,0,1}; variable
21 bar(code);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/
der_length_ia5_string.c 21 int code, value; member in struct:__anon5564
131 if (ia5_table[x].code == c) {
143 return ia5_table[x].code;
  /external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/
der_length_printable_string.c 21 int code, value; member in struct:__anon5565
103 if (printable_table[x].code == c) {
115 return printable_table[x].code;
  /external/icu4c/extra/scrptrun/
srtest.cpp 34 UScriptCode code = scriptRun.getScriptCode(); local
36 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 61 Bytecode code = new Bytecode(cp); local
62 code.addAload(0);
65 regno += code.addLoad(regno, params[i]);
66 code.setMaxLocals(regno + 1); // the last parameter is added.
67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc);
69 code.addReturn(null);
70 minfo.setCodeAttribute(code.toCodeAttribute());
90 * parameter type is <code>clazz</code>.
92 * <code>accDesc<code> must be identical to <code>desc</code>.
121 Bytecode code = new Bytecode(cp); local
173 Bytecode code = new Bytecode(cp); local
224 Bytecode code = new Bytecode(cp); local
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebScriptSource.h 8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:WebKit::WebScriptSource
44 WebScriptSource(const WebString& code)
45 : code(code), startLine(1) { }
46 WebScriptSource(const WebString& code, const WebURL& url)
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
49 : code(code), url(url), startLine(startLine) {
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageVerificationResponse.java 20 public final int code; field in class:PackageVerificationResponse
24 public PackageVerificationResponse(int code, int callerUid) {
25 this.code = code;
  /packages/apps/Mms/src/org/w3c/dom/events/
EventException.java 16 * Event operations may throw an <code>EventException</code> as specified in
22 public EventException(short code, String message) {
24 this.code = code;
26 public short code; field in class:EventException
29 * If the <code>Event</code>'s type was not specified by initializing the
31 * as <code>null</code> or an empty string will also trigger this
    [all...]

Completed in 376 milliseconds

1 2 3 4 5 6 7 8 91011>>