HomeSort by relevance Sort by last modified time
    Searched refs:Subclass (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
TypedArrayBase.h 91 template <class Subclass>
92 static PassRefPtr<Subclass> create(unsigned length)
97 return create<Subclass>(buffer, 0, length);
100 template <class Subclass>
101 static PassRefPtr<Subclass> create(const T* array, unsigned length)
103 RefPtr<Subclass> a = create<Subclass>(length);
110 template <class Subclass>
111 static PassRefPtr<Subclass> create(PassRefPtr<ArrayBuffer> buffer,
119 return adoptRef(new Subclass(buf, byteOffset, length))
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p3-cxx0x.cpp 31 struct Subclass : Base {
44 using Subclass::foo; // expected-error {{not a base class}}
p4.cpp 195 struct Subclass : Base {
208 using Subclass::foo; // legal in C++03
  /frameworks/compile/libbcc/include/bcc/ExecutionEngine/
SymbolResolvers.h 55 template<typename Subclass>
85 ::bsearch(&key, Subclass::SymbolArray,
86 Subclass::NumSymbols,
91 for (size_t i = 0; i < Subclass::NumSymbols; i++) {
92 if (::strcmp(Subclass::SymbolArray[i].mName, pName) == 0) {
93 result = &Subclass::SymbolArray[i];
  /external/clang/test/Analysis/
dtor.cpp 55 class Subclass : public SmartPointer {
57 Subclass(void *x) : SmartPointer(x) {}
63 Subclass Deleter(mem);
72 class MultipleInheritance : public Subclass, public SmartPointer {
74 MultipleInheritance(void *a, void *b) : Subclass(a), SmartPointer(b) {}
293 class Subclass : public VirtualDtor {
295 virtual ~Subclass() {
300 void destroy(Subclass *obj) {
  /external/chromium_org/skia/ext/
refptr_unittest.cc 110 class Subclass : public SkRefCnt {};
113 RefPtr<Subclass> child = AdoptRef(new Subclass());
  /external/llvm/include/llvm/CodeGen/
PseudoSourceValue.h 35 explicit PseudoSourceValue(enum ValueTy Subclass = PseudoSourceValueVal);
  /external/llvm/lib/CodeGen/
PseudoSourceValue.cpp 65 PseudoSourceValue::PseudoSourceValue(enum ValueTy Subclass) :
67 Subclass) {}
  /external/clang/test/CXX/class.access/class.access.dcl/
p1.cpp 180 struct Subclass : Base {
193 Subclass::foo; // legal in C++03 // expected-warning {{access declarations are deprecated}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_random.py 593 class Subclass(random.Random):
596 Subclass(newarg=1)
test_itertools.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_random.py 593 class Subclass(random.Random):
596 Subclass(newarg=1)
test_itertools.py     [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestGyp.py 338 The subclass should implement this by calling build()
348 Subclass for testing the GYP 'gypd' generator (spit out the
356 Subclass for testing the GYP with custom generator
366 Subclass for testing the GYP Android makefile generator. Note that
522 Subclass for testing the GYP Make generator.
677 Common subclass for testing generators that target the Microsoft Visual
707 Subclass for testing the GYP Ninja generator.
770 Subclass for testing the GYP Visual Studio generator.
871 Subclass for testing the GYP Xcode generator.
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 593 /// matching lexer rule(s). If you subclass to allow multiple token
    [all...]

Completed in 583 milliseconds