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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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/upstream-netbsd/libc/regex/
cname.h 7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
40 * This code is derived from software contributed to Berkeley by
46 * 1. Redistributions of source code must retain the above copyright
77 char code; member in struct:cname
  /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:__anon7195
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/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;
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
HelloWorldMaker.java 20 import com.google.dexmaker.Code;
45 // Execute our newly-generated code in-process.
68 // Declare that method on the dexMaker. Use the returned Code instance
70 Code code = dexMaker.declare(hello, Modifier.STATIC | Modifier.PUBLIC); local
73 Local<Integer> a = code.newLocal(TypeId.INT);
74 Local<Integer> b = code.newLocal(TypeId.INT);
75 Local<Integer> c = code.newLocal(TypeId.INT);
76 Local<String> s = code.newLocal(TypeId.STRING);
77 Local<PrintStream> localSystemOut = code.newLocal(printStreamType)
    [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/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:__anon7191
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:__anon7192
103 if (printable_table[x].code == c) {
115 return printable_table[x].code;
  /external/icu4c/common/
errorcode.cpp 25 UErrorCode code = errorCode; local
27 return 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...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
Local.java 19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) {
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type)
    [all...]

Completed in 1152 milliseconds

1 2 3 4 5 6 7 8 91011>>