Searched defs:proto (Results 1 - 25 of 287) 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/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/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/chrome/renderer/resources/extensions/
H A Dapp_view_deny.js15 var proto = Object.create(HTMLElement.prototype);
17 proto.createdCallback = function() {
22 DocumentNatives.RegisterElement('appview', {prototype: proto});
26 delete proto.createdCallback;
27 delete proto.attachedCallback;
28 delete proto.detachedCallback;
29 delete proto.attributeChangedCallback;
H A Dapp_view.js84 var proto = Object.create(HTMLObjectElement.prototype);
86 proto.createdCallback = function() {
92 proto.attachedCallback = function() {
99 prototype: proto});
101 delete proto.createdCallback;
102 delete proto.attachedCallback;
103 delete proto.detachedCallback;
104 delete proto.attributeChangedCallback;
108 var proto = Object.create(HTMLElement.prototype);
110 proto
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view_deny.js14 var proto = Object.create(HTMLElement.prototype);
16 proto.createdCallback = function() {
21 DocumentNatives.RegisterElement('webview', {prototype: proto});
25 delete proto.createdCallback;
26 delete proto.attachedCallback;
27 delete proto.detachedCallback;
28 delete proto.attributeChangedCallback;
H A Dweb_view_experimental.js27 WebViewInternal.maybeRegisterExperimentalAPIs = function(proto) {
28 proto.captureVisibleRegion = function(spec, callback) {
/external/chromium_org/v8/test/cctest/
H A Dtest-global-object.cc42 v8::Handle<v8::Object> proto = v8::Object::New(CcTest::isolate()); local
45 proto->Set(var_name, v8_num(100));
46 global->SetPrototype(proto);
/external/chromium_org/chrome/browser/ui/webui/
H A Dsync_internals_browsertest.js220 'proto': {},
227 'proto': {},
/external/chromium_org/sync/internal_api/public/base/
H A Dattachment_id_proto.cc14 sync_pb::AttachmentIdProto proto; local
19 proto.set_unique_id(guid);
20 return 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/chromium_org/sync/test/fake_server/
H A Dtombstone_entity.cc35 void TombstoneEntity::SerializeAsProto(sync_pb::SyncEntity* proto) { argument
36 FakeServerEntity::SerializeBaseProtoFields(proto);
38 sync_pb::EntitySpecifics* specifics = proto->mutable_specifics();
/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/
H A Dxt_ecn.h30 } proto; member in struct:xt_ecn_info
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_ECN.h30 } proto; member in struct:ipt_ECN_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_ecn.h32 } proto; member in struct:xt_ecn_info
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/
H A Dipt_ECN.h30 } proto; member in struct:ipt_ECN_info
/external/libnl/src/
H A Dnl-list-sockets.c32 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 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

Completed in 518 milliseconds

1234567891011>>