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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
ms2.s 2 code: label
  /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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
pcrel-coff.s 4 code: label
14 .long code - .
pcrel.s 4 code: label
16 .long code - .
pcrel2.s 4 code: label
  /bionic/libc/upstream-netbsd/lib/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/tpm2/
PolicyCommandCode_fp.h 2 // Use of this source code is governed by a BSD-style license that can be
5 // THIS CODE IS GENERATED - DO NOT MODIFY!
14 TPM_CC code; member in struct:__anon23286
  /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/curl/tests/libtest/
lib512.c 26 /* Test case code based on source in a bug report filed by James Bursa on
31 CURLcode code; local
36 code = curl_global_init(CURL_GLOBAL_ALL);
37 if(code == CURLE_OK) {
48 code = curl_easy_setopt(curl2, CURLOPT_URL, URL);
49 if(code == CURLE_OK) {
51 code = curl_easy_perform(curl2);
52 if(code == CURLE_OK)
  /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
44 char code; member in struct:cname
  /external/v8/test/cctest/
test-eh-frame-hdr.cc 2 // Use of this source code is governed by a BSD-style license that can be
29 Handle<Code> code = CcTest::i_isolate()->factory()->NewCode( local
32 EhFrameHdr eh_frame_hdr(*code);
90 Handle<Code> code = CcTest::i_isolate()->factory()->NewCode( local
93 EhFrameHdr eh_frame_hdr(*code);
  /external/v8/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)
  /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;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_pps.c 14 uint32_t code=0, i = 0; local
18 code = h264_GetVLCElement(parent, pInfo, false);
19 if(code > MAX_PIC_PARAMS) {
22 PictureParameterSet->pic_parameter_set_id = (uint8_t)code;
25 code = h264_GetVLCElement(parent, pInfo, false);
26 if(code > MAX_NUM_SPS-1) {
29 PictureParameterSet->seq_parameter_set_id = (uint8_t)code;
32 viddec_pm_get_bits(parent, &code, 1);
33 PictureParameterSet->entropy_coding_mode_flag = (uint8_t)code;
35 viddec_pm_get_bits(parent, &code, 1)
    [all...]
  /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/clang/test/CodeGen/
2004-03-15-SimpleIndirectGoto.c 3 int code[]={0,0,0,0,1}; variable
21 bar(code);
  /external/icu/icu4c/source/common/
errorcode.cpp 25 UErrorCode code = errorCode; local
27 return code;
  /external/icu/icu4c/source/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/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
SimpleFilter.java 13 int code(byte[] buf, int off, int len); method in interface:SimpleFilter
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
Child1.java 19 private Integer code; field in class:Child1
21 public Child1(Integer code) {
22 this.code = code;
26 return code;

Completed in 1088 milliseconds

1 2 3 4 5 6 7 8 91011>>