HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 501 - 525 of 878) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.h 9 * 1. Redistributions of source code must retain the above copyright
97 void* code; member in struct:JSC::JITStackFrame
112 // When JIT code makes a call, it pushes its return address just below the rest of the stack.
133 void* code; member in struct:JSC::JITStackFrame
140 // When JIT code makes a call, it pushes its return address just below the rest of the stack.
161 // These arguments passed in r1..r3 (r0 contained the entry code pointed, which is not preserved)
198 // When JIT code makes a call, it pushes its return address just below the rest of the stack.
213 void* preservedGP; // store GP when using PIC code
221 // These arguments passed in a1..a3 (a0 contained the entry code pointed, which is not preserved)
276 extern "C" EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, void* /*unused1*/, Profiler**, JSGlobalData*)
    [all...]
  /external/webkit/Source/WebCore/bridge/
testbindings.cpp 343 static char code[BufferSize]; variable
353 int num = fread(code, 1, BufferSize, f);
354 code[num] = '\0';
360 return code;
386 const char *code = readJavaScriptFromFile(argv[i]); local
388 if (code) {
390 Completion comp(interp.evaluate(code));
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 7 * 1. Redistributions of source code must retain the above copyright
474 // in to us might get changed as a side effect. Specifically, there are code
480 // To fix this, we need to either a) add code to all paintCarets to pass the responsibility off to
655 int code = 0; local
656 r->setStart(p.containerNode(), p.offsetInContainerNode(), code);
657 return code == 0;
665 int code = 0; local
666 r->setEnd(p.containerNode(), p.offsetInContainerNode(), code);
667 return code == 0;
  /external/webkit/Source/WebCore/html/shadow/
MediaControlElements.cpp 8 * 1. Redistributions of source code must retain the above copyright
849 ExceptionCode code = 0; local
850 mediaElement()->setVolume(0, code);
879 ExceptionCode code = 0; local
880 mediaElement()->setVolume(1, code);
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.cpp 79 static int ISkanji(int code)
81 if (code >= 0x100)
83 return sjisMap[code & 0xff] & 1;
85 static int ISkana(int code)
87 if (code >= 0x100)
89 return sjisMap[code & 0xff] & 2;
134 enum Type code; local
143 code = ASCII;
150 code = JIS;
154 code = JIS
    [all...]
  /external/webkit/Source/WebCore/page/
Geolocation.cpp 9 * 1. Redistributions of source code must retain the above copyright
72 PositionError::ErrorCode code = PositionError::POSITION_UNAVAILABLE; local
73 switch (error->code()) {
75 code = PositionError::PERMISSION_DENIED;
78 code = PositionError::POSITION_UNAVAILABLE;
82 return PositionError::create(code, error->message());
  /external/zlib/contrib/puff/
puff.c 9 * side benefit, this code might actually be useful when small code is more
18 * is less than 2K bytes. This code is compatible with 16-bit int's and
20 * assumed to be 16 bits, for arrays in order to to conserve memory. The code
25 * code is meant to supplement RFC 1951, which formally describes the deflate
56 * 1.4 31 Mar 2002 - Simplify construct() code set check
61 * 1.7 3 Mar 2003 - Added test code for distribution
67 * - Add option in TEST code for puff to write the data
68 * - Add option in TEST code to skip input bytes
69 * - Allow TEST code to read from piped stdi
228 int code; \/* len bits being decoded *\/ local
256 int code; \/* len bits being decoded *\/ local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
slice.cpp 692 uint code; local
724 code = currMB->ref_idx_L0[mbPartIdx];
725 status = te_v(stream, code, max_ref_idx);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.cpp 46 * ACTS-MoMuSys partners retain full right to use the code for his/her own
47 * purpose, assign or donate the code to a third party and to inhibit third
48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard
71 * Donated to the Momusys-project as background code by
106 uint32 code; local
109 BitstreamShowBits32(stream, 24, &code);
111 while (code != 1)
115 BitstreamShowBits32(stream, 24, &code);
128 * 3/29/00 : added return code check to some functions and
129 * optimize the code
455 uint code; local
505 uint code; local
538 uint code; local
559 uint code; local
593 uint code; local
631 uint code; local
841 uint code; local
1024 uint code; local
1203 uint code; local
1263 uint code; local
1318 uint code; local
1391 uint code; local
1473 uint code, mask; local
1556 uint code, mask; local
    [all...]
  /frameworks/base/obex/javax/obex/
ServerSession.java 9 * - Redistributions of source code must retain the above copyright notice,
153 * create a <code>HeaderSet</code> object to pass to the
154 * <code>ServerRequestHandler</code> object. After the handler processes the
160 int code = ResponseCodes.OBEX_HTTP_OK; local
167 code = ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE;
172 code = mListener.onAbort(request, reply);
173 Log.v(TAG, "onAbort request handler return value- " + code);
174 code = validateResponseCode(code)
293 int code = -1; local
414 int code = ResponseCodes.OBEX_HTTP_OK; local
525 int code = -1; local
    [all...]
  /frameworks/base/opengl/libagl/
dxt.cpp 130 * contains a transparent pixel (color0 < color1, code == 3). This
295 int code = bits & 0x3; local
298 blockRowPtr[x] = c[code];
404 int code = bits & 0x3; local
407 blockRowPtr[x] = c[code] | (a << 28) | (a << 24);
561 int code = bits & 0x3; local
564 blockRowPtr[x] = c[code] | (a[acode] << 24);
  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 144 int code = Integer.parseInt(tokens[0]); local
146 if (code >= ResponseCode.UnsolicitedInformational) {
148 mCallbackHandler.obtainMessage(code, event));
251 int code = -1; local
260 code = Integer.parseInt(tokens[0]);
266 if ((code >= 200) && (code < 600)) {
275 if (code >= ResponseCode.FailedRangeStart &&
276 code <= ResponseCode.FailedRangeEnd) {
282 code, cmd, response.get(response.size()-1).substring(4))
301 int code = Integer.parseInt(tok[0]); local
    [all...]
NotificationPlayer.java 49 int code; field in class:NotificationPlayer.Command
57 return "{ code=" + code + " looping=" + looping + " stream=" + stream
167 switch (cmd.code) {
267 cmd.code = PLAY;
289 cmd.code = STOP;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
filter.h 12 * Current version of the filter code architecture.
19 * the BPF code definitions which need to match so you can share filters
24 __u16 code; /* Actual filter code */ member in struct:sock_filter
41 #define BPF_CLASS(code) ((code) & 0x07)
52 #define BPF_SIZE(code) ((code) & 0x18)
56 #define BPF_MODE(code) ((code) & 0xe0
    [all...]
inet_diag.h 43 * All the commands identified by "code" are conditional jumps forward:
49 unsigned char code; member in struct:inet_diag_bc_op
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tic.h 172 chtype code; member in struct:tinfo_fkeys
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]

Completed in 2087 milliseconds

<<21222324252627282930>>