Home
last modified time | relevance | path

Searched refs:sub_c (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
Dfunction-prototype-hasinstance.js41 function sub_c (value) { function
45 sub_c.prototype = Object.create (base.prototype) class
46 sub_c.prototype.constructor = sub_c
48 var obj_sub_c = new sub_c (5);
52 assert (sub_c[Symbol.hasInstance] (obj_base) === false);
53 assert (sub_c[Symbol.hasInstance] (obj_sub_c) === true);
55 assert (Function.prototype[Symbol.hasInstance].call (sub_c, obj_sub_c) === true);
Dfunction-prototype-hasinstance-class.js41 class sub_c extends base { class
48 var obj_sub_c = new sub_c (5);
52 assert (sub_c[Symbol.hasInstance](obj_base) === false);
53 assert (sub_c[Symbol.hasInstance](obj_sub_c) === true);
/third_party/rust/crates/clap/tests/derive/
Dhelp.rs156 let sub_c = cmd.find_subcommand("sub-c").unwrap(); in app_help_heading_flattened() localVariable
157 let sub_c_one = sub_c.find_subcommand("sub-c-one").unwrap(); in app_help_heading_flattened()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.h5532 upb_sink sub_c;
5533 bool ret = upb_sink_startstr(sink_, s, size_hint, &sub_c);
5534 *sub = sub_c;
5553 upb_sink sub_c;
5554 bool ret = upb_sink_startsubmsg(sink_, s, &sub_c);
5555 *sub = sub_c;
5570 upb_sink sub_c;
5571 bool ret = upb_sink_startseq(sink_, s, &sub_c);
5572 *sub = sub_c;