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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/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/chromium_org/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...]
  /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...]
  /art/runtime/entrypoints/portable/
portable_invoke_entrypoints.cc 45 const void* code = method->GetEntryPointFromCompiledCode(); local
48 if (UNLIKELY(code == NULL)) {
50 LOG(FATAL) << "Code was NULL in method: " << PrettyMethod(method)
  /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/chromium_org/third_party/icu/source/common/
errorcode.cpp 23 UErrorCode code = errorCode; local
25 return code;
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/
gas-llabel.asm 7 jmp code
10 code: label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/
segment.asm 6 code segment label
8 code ends
  /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 " );
  /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/chromium_org/sandbox/win/src/
handle_interception.cc 2 // Use of this source code is governed by a BSD-style license that can be
29 ResultCode code = CrossCall(ipc, IPC_DUPLICATEHANDLEPROXY_TAG, local
32 if (SBOX_ALL_OK != code)
33 return code;
named_pipe_interception.cc 2 // Use of this source code is governed by a BSD-style license that can be
53 ResultCode code = CrossCall(ipc, IPC_CREATENAMEDPIPEW_TAG, pipe_name, local
57 if (SBOX_ALL_OK != code)
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
gypsh.py 2 # Use of this source code is governed by a BSD-style license that can be
17 import code namespace
51 # code.interact uses by default, but tack on something to indicate what
56 code.interact(banner, local=locals)
  /external/dropbear/libtommath/
bn_error.c 19 int code; member in struct:__anon20125
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...]
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 17 package com.android.dx.cf.code;
  /external/chromium_org/third_party/WebKit/public/web/
WebScriptSource.h 8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:blink::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...]
  /external/chromium_org/ui/events/keycodes/dom4/
keycode_converter.h 2 // Use of this source code is governed by a BSD-style license that can be
31 // The UIEvents (aka: DOM4Events) |code| value as defined in:
33 const char* code; member in struct:ui::__anon17556
37 // and platform-neutral |code| values (as defined in the W3C UI Events
46 // Return the string that indentifies an invalid UI Event |code|.
50 // Convert a native (Mac/Win/Linux) keycode into the |code| string.
54 // Convert a UI Events |code| string value into a native keycode.
55 uint16_t CodeToNativeKeycode(const char* code);
59 // Please don't use USB keycodes in new code.
70 // Convert a USB keycode into the string with the DOM3 |code| value
    [all...]

Completed in 1074 milliseconds

1 2 3 4 5 6 7 8 91011>>