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

1 2 3 4 5 6 7 8 91011

  /external/v8/test/mjsunit/
array-functions-prototype.js 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
37 constructor.prototype = proto;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array type
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array type
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array type
25 type func = Function of proto * expr
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 53 var proto = new Object(); class
54 proto.__defineSetter__('y', function (value) { result_y = value; });
57 f.__proto__ = proto;
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /dalvik/libdex/
DexProto.h 121 * Return the utf-8 encoded descriptor string from the proto of a MethodId.
126 DexProto proto; local
128 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
129 return dexProtoGetMethodDescriptor(&proto, pCache);
134 * proto of a MethodId. The returned pointer must be free()ed by the
140 DexProto proto; local
142 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
143 return dexProtoCopyMethodDescriptor(&proto);
188 int dexProtoCompareToDescriptor(const DexProto* proto, const char* descriptor);
195 int dexProtoCompareToParameterDescriptors(const DexProto* proto,
203 const DexProto* proto; member in struct:DexParameterIterator
    [all...]
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /external/clang/test/PCH/
types.h 35 typedef float proto(float, float, ...); typedef
  /external/clang/test/Sema/
knr-def-call.c 32 void proto(int);
33 void proto(x) function
39 proto(42.0); // expected-warning{{implicit conversion turns literal floating-point number into integer}} \
41 (&proto)(42.0); // expected-warning{{implicit conversion turns literal floating-point number into integer}} \
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ECN.h 28 } proto; member in struct:ipt_ECN_info
ipt_ecn.h 30 } proto; member in struct:ipt_ecn_info
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_ECN.h 28 } proto; member in struct:ipt_ECN_info
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 25 (* proto - This type represents the "prototype" for a function, which captures
28 type proto = Prototype of string * string array type
31 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 28 (* proto - This type represents the "prototype" for a function, which captures
31 type proto = type
36 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 31 (* proto - This type represents the "prototype" for a function, which captures
34 type proto = type
39 type func = Function of proto * expr
  /external/qemu/
net-checksum.c 45 uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto,
52 sum += proto + length; // protocol & length
58 int hlen, plen, proto, csum_offset; local
65 proto = data[23];
67 switch (proto) {
83 csum = net_checksum_tcpudp(plen, proto, data+14+12, data+14+hlen);
  /external/tcpdump/
print-mobile.c 59 u_int16_t proto; member in struct:mobile_ip
75 u_short proto,crc; local
86 proto = EXTRACT_16BITS(&mob->proto);
88 if (proto & OSRC_PRES) {
102 (void)printf("(oproto=%d)",proto>>8);
  /external/webkit/Source/WebKit/chromium/src/
BoundObject.cpp 58 v8::Local<v8::ObjectTemplate> proto = m_hostTemplate->PrototypeTemplate(); local
60 proto->Set(
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 28 } proto; member in struct:ipt_ECN_info
ipt_ecn.h 30 } proto; member in struct:ipt_ecn_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info

Completed in 1503 milliseconds

1 2 3 4 5 6 7 8 91011