Searched defs:proto (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1217.js30 var proto = RegExp.prototype; variable
31 assertEquals("[object RegExp]", Object.prototype.toString.call(proto));
33 assertEquals("(?:)", proto.source);
34 assertEquals(false, proto.global);
35 assertEquals(false, proto.multiline);
36 assertEquals(false, proto.ignoreCase);
37 assertEquals(0, proto.lastIndex);
39 assertEquals("/(?:)/", proto.toString());
41 var execResult = proto.exec("argle");
47 assertTrue(proto
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1217.js30 var proto = RegExp.prototype; variable
31 assertEquals("[object RegExp]", Object.prototype.toString.call(proto));
33 assertEquals("", proto.source);
34 assertEquals(false, proto.global);
35 assertEquals(false, proto.multiline);
36 assertEquals(false, proto.ignoreCase);
37 assertEquals(0, proto.lastIndex);
39 assertEquals("/(?:)/", proto.toString());
41 var execResult = proto.exec("argle");
47 assertTrue(proto
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Darray-functions-prototype.js35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
37 constructor.prototype = proto;
/external/v8/test/mjsunit/
H A Darray-functions-prototype.js35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' }
37 constructor.prototype = proto;
/external/chromium_org/v8/test/webkit/
H A Ddictionary-prototype-caching.js30 var proto = {protoProp: "PASS", propToRemove: "foo"};
31 var o = { __proto__: proto };
33 delete proto.propToRemove;
35 // Prototype lookup caching will attempt to convert proto back to an ordinary structure
40 delete proto.protoProp;
41 proto.fakeProtoProp = "FAIL";
48 var proto = {a:1, b:"meh", c:2};
49 var o = { __proto__: proto };
51 delete proto.b;
52 proto
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-global-object.cc42 v8::Handle<v8::Object> proto = v8::Object::New(); local
45 proto->Set(var_name, v8_num(100));
46 global->SetPrototype(proto);
/external/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-1344252.js53 var proto = new Object(); class
54 proto.__defineSetter__('y', function (value) { result_y = value; });
57 f.__proto__ = proto;
/external/iproute2/lib/
H A Dinet_proto.c25 char *inet_proto_n2a(int proto, char *buf, int len) argument
31 if (proto == icache)
34 pe = getprotobynumber(proto);
36 icache = proto;
41 snprintf(buf, len, "ipproto-%d", proto);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml19 (* 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/
H A Dast.ml19 (* 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/
H A Dast.ml19 (* 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/
H A Dbug-1344252.js53 var proto = new Object(); class
54 proto.__defineSetter__('y', function (value) { result_y = value; });
57 f.__proto__ = proto;
/external/clang/test/PCH/
H A Dtypes.h36 typedef float proto(float, float, ...); typedef
/external/clang/test/Sema/
H A Dknr-def-call.c32 void proto(int);
33 void proto(x) function
39 proto(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
40 (&proto)(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_ECN.h28 } proto; member in struct:ipt_ECN_info
H A Dipt_ecn.h30 } proto; member in struct:ipt_ecn_info
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_ECN.h28 } proto; member in struct:ipt_ECN_info
/external/libppp/src/
H A Dacf.c41 #include "proto.h"
53 acf_WrapperOctets(struct lcp *lcp, u_short proto) argument
55 return (proto == PROTO_LCP || lcp->his_acfcomp == 0) ? 2 : 0;
60 int pri __unused, u_short *proto)
64 if (*proto == PROTO_LCP || l->lcp.his_acfcomp == 0) {
74 u_short *proto __unused)
59 acf_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp, int pri __unused, u_short *proto) argument
H A Dproto.c26 * $FreeBSD: src/usr.sbin/ppp/proto.c,v 1.7.26.1 2010/12/21 17:10:29 kensmith Exp $
41 #include "proto.h"
50 proto_WrapperOctets(struct lcp *lcp, u_short proto) argument
52 return (lcp->his_protocomp && !(proto & 0xff00)) ? 1 : 2;
56 proto_Prepend(struct mbuf *bp, u_short proto, unsigned comp, int extra) argument
60 cp[0] = proto >> 8;
61 cp[1] = proto & 0xff;
73 int pri __unused, u_short *proto)
75 log_Printf(LogDEBUG, "proto_LayerPush: Using 0x%04x\n", *proto);
76 bp = proto_Prepend(bp, *proto,
72 proto_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp, int pri __unused, u_short *proto) argument
85 proto_LayerPull(struct bundle *b __unused, struct link *l, struct mbuf *bp, u_short *proto) argument
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml25 (* 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/
H A Dast.ml28 (* 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/
H A Dast.ml31 (* proto - This type represents the "prototype" for a function, which captures
34 type proto = type
39 type func = Function of proto * expr
/external/tcpdump/
H A Dprint-mobile.c59 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/iproute2/include/linux/
H A Dip6_tunnel.h25 __u8 proto; /* tunnel protocol */ member in struct:ip6_tnl_parm
/external/iproute2/ip/
H A Dtunnel.c41 const char *tnl_strproto(__u8 proto) argument
45 switch (proto) {

Completed in 520 milliseconds

1234567891011>>