HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 426 - 450 of 637) sorted by null

<<11121314151617181920>>

  /external/v8/test/cctest/
test-heap.cc 79 Object* code = Heap::CreateCode(desc, local
81 Code::ComputeFlags(Code::STUB),
83 CHECK(code->IsCode());
85 HeapObject* obj = HeapObject::cast(code);
90 CHECK_EQ(code, found);
95 Code::ComputeFlags(Code::STUB),
101 CHECK(not_right != code);
  /external/webkit/WebCore/bindings/v8/
V8Proxy.cpp 8 * * Redistributions of source code must retain the above copyright
242 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, int baseLine)
246 v8::Handle<v8::Script> script = compileScriptInternal(code, fileName, baseLine);
251 v8::Handle<v8::Script> V8Proxy::compileScriptInternal(v8::Handle<v8::String> code, const String& fileName, int baseLine)
258 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin);
371 // the code. These exceptions should not interfere with
372 // javascript code we might evaluate from C++ when returning
378 v8::Local<v8::String> code = v8ExternalString(source.source()); local
385 v8::Handle<v8::Script> script = compileScript(code, source.url(), source.startLine() - 1);
426 v8::Local<v8::String> code = v8ExternalString("throw RangeError('Recursion too deep')") local
487 v8::Local<v8::String> code = v8::String::New("throw new RangeError('Maximum call stack size exceeded.')"); local
    [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::__anon8781
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/cmds/keystore/
keystore.c 93 * code [length_1 message_1 ... length_n message_n] end-of-file
94 * where code is one byte long and lengths are unsigned 16-bit integers in
99 static int recv_code(int8_t *code)
101 return recv(the_socket, code, 1, 0) == 1;
134 static void send_code(int8_t code)
136 send(the_socket, &code, 1, 0);
240 * it will be treated as a response code and transmitted to the client. Note
469 int8_t code; member in struct:action
499 static int8_t process(int8_t code) {
507 while (action->code && action->code != code)
    [all...]
  /frameworks/base/libs/binder/
IPCThreadState.cpp 158 << "code=" << TypeCode(btd->code) << ", flags=" << (void*)btd->flags << endl
171 int32_t code = *cmd++; local
172 if (code == BR_ERROR) {
175 } else if (code < 0 || code >= N) {
176 out << "Unknown reply: " << code << endl;
180 out << kReturnStrings[code];
181 switch (code) {
227 int32_t code = *cmd++ local
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 193 public boolean onEvent(int code, String raw, String[] cooked) {
194 if (code == NetdResponseCode.InterfaceChange) {
277 int code = Integer.parseInt(st.nextToken(" ")); local
278 if (code != NetdResponseCode.InterfaceGetCfgResult) {
280 String.format("Expected code %d, but got %d",
281 NetdResponseCode.InterfaceGetCfgResult, code));
353 int code = Integer.parseInt(tok[0]); local
354 if (code == NetdResponseCode.IpFwdStatusResult) {
358 throw new IllegalStateException(String.format("Unexpected response code %d", code));
415 int code = Integer.parseInt(tok[0]); local
589 int code = Integer.parseInt(tok[0]); local
701 int code; local
760 int code; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 30 * There is difference between what java and native code can handle.
53 char code; field in class:ExpandableDictionary.Node
155 if (childNode.code == c) {
162 childNode.code = c;
259 final char c = node.code;
377 if (childNode.code == c) {
384 childNode.code = c;
453 sb.insert(0, node.code);
475 if (node.code == currentChar) {
  /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/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
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv6/
ip6_tables.h 116 u_int8_t code[2]; member in struct:ip6t_icmp

Completed in 1667 milliseconds

<<11121314151617181920>>