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

<<21222324252627282930>>

  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 8 * * Redistributions of source code must retain the above copyright
211 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData)
215 v8::Handle<v8::Script> script = compileScriptInternal(code, fileName, scriptStartPosition, scriptData);
220 v8::Handle<v8::Script> V8Proxy::compileScriptInternal(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData)
228 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin, scriptData);
327 PassOwnPtr<v8::ScriptData> V8Proxy::precompileScript(v8::Handle<v8::String> code, CachedScript* cachedScript)
336 if (!cachedScript || code->Length() < minPreparseLength)
343 OwnPtr<v8::ScriptData> scriptData(v8::ScriptData::PreCompile(code));
365 // the code. These exceptions should not interfere with
366 // javascript code we might evaluate from C++ when returnin
372 v8::Local<v8::String> code = v8ExternalString(source.source()); local
418 v8::Local<v8::String> code = v8ExternalString("throw RangeError('Recursion too deep')"); local
482 v8::Local<v8::String> code = v8::String::New("throw new RangeError('Maximum call stack size exceeded.')"); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 8 * * Redistributions of source code must retain the above copyright
166 // If we want to change this behavior on Linux, this piece of code must be
167 // kept in sync with the related code in above file.
174 // See the related code in: WebKit/chromium/src/mac/WebInputEventFactory.cpp
175 // It must be kept in sync with the related code in above file.
238 // Key event location code introduced in DOM Level 3.
503 int code = 0; local
508 text = code = webkit_support::VKEY_RETURN;
510 code = webkit_support::VKEY_RIGHT;
512 code = webkit_support::VKEY_DOWN
    [all...]
  /external/zlib/
deflate.h 20 the crc code when it is not needed. For shared libraries, gzip encoding
31 /* number of length codes, not counting the special END_BLOCK code */
37 /* number of Literal or Length codes, including the END_BLOCK code */
61 /* Data structure describing a single value and its code string. */
65 ush code; /* bit string */ member in union:ct_data_s::__anon14271
74 #define Code fc.code
82 int max_code; /* largest code with non zero frequency */
229 * example a binary file with poorly compressible code followed by
239 /* Buffer for distances. To simplify the code, d_buf and l_buf hav
    [all...]
trees.c 13 * Each code tree is stored in a compressed form which is itself
14 * a Huffman encoding of the lengths of all the code strings (in
15 * ascending order by source values). The actual code strings are
51 /* end of block literal code */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
110 /* length code for each normalized match length (0 == MIN_MATCH) */
113 /* First normalized length for each code (0 = MIN_MATCH) */
116 /* First normalized distance for each code (0 = distance of 1) *
246 int code; \/* code value *\/ local
587 ush code = 0; \/* running code value *\/ local
1084 unsigned code; \/* the code to send *\/ local
    [all...]
  /frameworks/base/libs/binder/
IPCThreadState.cpp 148 << "code=" << TypeCode(btd->code) << ", flags=" << (void*)btd->flags << endl
160 int32_t code = *cmd++; local
161 size_t cmdIndex = code & 0xff;
162 if (code == (int32_t) BR_ERROR) {
166 out << "Unknown reply: " << code << endl;
171 switch (code) {
221 int32_t code = *cmd++; local
222 size_t cmdIndex = code & 0xff;
225 out << "Unknown command: " << code << endl
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 316 int code = mRequireEncryption ? 1 : 0; local
317 code += (mRequireEncryptionExternal ? 1 : 0) << 1;
318 code += (mRequireRemoteWipe ? 1 : 0) << 2;
319 code += (mMaxScreenLockTime << 3);
320 code += (mPasswordComplexChars << 6);
321 code += (mPasswordExpirationDays << 12);
322 code += (mPasswordHistory << 15);
323 code += (mPasswordMaxFails << 18);
324 code += (mPasswordMinLength << 22);
325 code += (mPasswordMode << 26)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
EasOutboxService.java 377 int code = resp.getStatus(); local
378 if (code == HttpStatus.SC_OK) {
414 } else if (code == EasSyncService.INTERNAL_SERVER_ERROR_CODE && smartSend) {
420 userLog("Message sending failed, code: " + code);
421 if (EasResponse.isAuthError(code)) {
423 } else if (EasResponse.isProvisionError(code)) {
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_events.h 206 int code; /* User defined event code */ member in struct:SDL_UserEvent
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_events.h 206 int code; /* User defined event code */ member in struct:SDL_UserEvent
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ip_tables.h 133 u_int8_t code[2]; /* range of code */ member in struct:ipt_icmp
138 #define IPT_ICMP_INV 0x01 /* Invert the sense of type/code test */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv6/
ip6_tables.h 193 u_int8_t code[2]; /* range of code */ member in struct:ip6t_icmp
198 #define IP6T_ICMP_INV 0x01 /* Invert the sense of type/code test */
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
binder.h 84 unsigned int code; member in struct:binder_transaction_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ip_tables.h 110 u_int8_t code[2]; member in struct:ipt_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv6/
ip6_tables.h 116 u_int8_t code[2]; member in struct:ip6t_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
binder.h 84 unsigned int code; member in struct:binder_transaction_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/
ip_tables.h 110 u_int8_t code[2]; member in struct:ipt_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv6/
ip6_tables.h 116 u_int8_t code[2]; member in struct:ip6t_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
binder.h 84 unsigned int code; member in struct:binder_transaction_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ip_tables.h 110 u_int8_t code[2]; member in struct:ipt_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv6/
ip6_tables.h 116 u_int8_t code[2]; member in struct:ip6t_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
binder.h 84 unsigned int code; member in struct:binder_transaction_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv4/
ip_tables.h 110 u_int8_t code[2]; member in struct:ipt_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv6/
ip6_tables.h 116 u_int8_t code[2]; member in struct:ip6t_icmp
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
binder.h 84 unsigned int code; member in struct:binder_transaction_data
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/
ip_tables.h 110 u_int8_t code[2]; member in struct:ipt_icmp

Completed in 1838 milliseconds

<<21222324252627282930>>