HomeSort by relevance Sort by last modified time
    Searched defs:Cons (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/v8/test/webkit/fast/js/
object-slow-put.js 28 function Cons() {
32 Cons.prototype.__defineSetter__("3", function() { ouches++; });
35 var result = new Cons();
object-bad-time.js 28 function Cons() {
34 var result = new Cons();
39 Cons.prototype.__defineSetter__("3", function() { ouches++; });
  /external/chromium_org/sandbox/linux/bpf_dsl/
cons.h 13 // Cons provides an immutable linked list abstraction as commonly
16 class Cons : public base::RefCounted<Cons<T> > {
19 // more Cons nodes.
20 typedef scoped_refptr<const Cons<T> > List;
30 return make_scoped_refptr(new const Cons<T>(head, tail));
34 Cons(const T& head, List tail) : head_(head), tail_(tail) {}
35 virtual ~Cons() {}
40 friend class base::RefCounted<Cons<T> >;
41 DISALLOW_COPY_AND_ASSIGN(Cons);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRecordPattern.h 99 // Cons builds a list of Matchers.
100 // It first matches Matcher (something from above), then Pattern (another Cons or Nil).
106 // These Cons build lists analogously to Lisp's "cons". See Pattern# for the "list" equivalent.
108 class Cons {
163 // All Cons are friends with each other. This lets first, second, and third work.
164 template <typename, typename> friend class Cons;
167 // Nil is the end of every pattern Cons chain.
173 // These Pattern# types are syntax sugar over Cons and Nil, just to help eliminate some of the
177 struct Pattern1 : Cons<A, Nil> {}
    [all...]
  /external/chromium_org/v8/test/mjsunit/
string-charcodeat.js 34 function Cons() {
145 TestStringType(Cons, false);
160 var str = Cons();

Completed in 1516 milliseconds