/external/v8/test/mjsunit/regress/ |
H A D | regress-1217.js | 30 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/ |
H A D | array-functions-prototype.js | 35 var proto = { length:3, 0:'zero', 1:'one', 2:'two' } 37 constructor.prototype = proto;
|
/external/v8/test/webkit/ |
H A D | dictionary-prototype-caching.js | 30 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/v8/test/cctest/ |
H A D | test-global-object.cc | 42 v8::Handle<v8::Object> proto = v8::Object::New(CcTest::isolate()); local 45 proto->Set(var_name, v8_num(100)); 46 global->SetPrototype(proto);
|
/external/iproute2/lib/ |
H A D | inet_proto.c | 25 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 D | 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/ |
H A D | 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/ |
H A D | 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/ |
H A D | bug-1344252.js | 53 var proto = new Object(); class 54 proto.__defineSetter__('y', function (value) { result_y = value; }); 57 f.__proto__ = proto;
|
/external/clang/test/PCH/ |
H A D | types.h | 36 typedef float proto(float, float, ...); typedef
|
/external/clang/test/Sema/ |
H A D | knr-def-call.c | 32 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/ |
H A D | xt_ecn.h | 30 } proto; member in struct:xt_ecn_info
|
/external/iptables/include/linux/netfilter_ipv4/ |
H A D | ipt_ECN.h | 30 } proto; member in struct:ipt_ECN_info
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_ecn.h | 32 } proto; member in struct:xt_ecn_info
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/ |
H A D | ipt_ECN.h | 30 } proto; member in struct:ipt_ECN_info
|
/external/libnl/src/ |
H A D | nl-list-sockets.c | 32 int ret, proto, pid, rmem, wmem, refcnt; local 36 &sk, &proto, &pid, &groups, &rmem, &wmem, 42 sk, nl_nlfamily2str(proto, p, sizeof(p)), pid,
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
H A D | 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/ |
H A D | 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/ |
H A D | 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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
H A D | BuilderMethodReference.java | 42 @Nonnull final BuilderProtoReference proto; field in class:BuilderMethodReference 47 @Nonnull BuilderProtoReference proto) { 50 this.proto = proto; 62 return proto.parameterTypes; 66 return proto.returnType.getType(); 45 BuilderMethodReference(@onnull BuilderTypeReference definingClass, @Nonnull BuilderStringReference name, @Nonnull BuilderProtoReference proto) argument
|
/external/tcpdump/ |
H A D | print-mobile.c | 59 u_int16_t proto; member in struct:mobile_ip 76 u_short proto,crc; local 87 proto = EXTRACT_16BITS(&mob->proto); 89 if (proto & OSRC_PRES) { 103 (void)printf("(oproto=%d)",proto>>8);
|
/external/iproute2/include/linux/ |
H A D | ip6_tunnel.h | 25 __u8 proto; /* tunnel protocol */ member in struct:ip6_tnl_parm
|
/external/iproute2/ip/ |
H A D | tunnel.c | 41 const char *tnl_strproto(__u8 proto) argument 45 switch (proto) {
|
/external/libnl/src/cls/ |
H A D | utils.c | 66 int proto = nl_str2ether_proto(arg); local 67 if (proto < 0) 68 fatal(proto, "Unable to parse protocol \"%s\": %s", 69 arg, nl_geterror(proto)); 70 rtnl_cls_set_protocol(cls, proto);
|
/external/selinux/libsemanage/src/ |
H A D | node_record.c | 56 int proto, semanage_node_key_t ** key_ptr) 59 return sepol_node_key_create(handle->sepolh, addr, mask, proto, 102 semanage_node_t * node, int proto, const char *addr) 105 return sepol_node_set_addr(handle->sepolh, node, proto, addr); 141 semanage_node_t * node, int proto, const char *mask) 144 return sepol_node_set_mask(handle->sepolh, node, proto, mask); 168 void semanage_node_set_proto(semanage_node_t * node, int proto) 171 sepol_node_set_proto(node, proto); 176 const char *semanage_node_get_proto_str(int proto) 179 return sepol_node_get_proto_str(proto); 53 semanage_node_key_create(semanage_handle_t * handle, const char *addr, const char *mask, int proto, semanage_node_key_t ** key_ptr) argument [all...] |