OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Subclass
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/html/canvas/
TypedArrayBase.h
75
template <class
Subclass
>
76
static PassRefPtr<
Subclass
> create(unsigned length)
81
return create<
Subclass
>(buffer, 0, length);
84
template <class
Subclass
>
85
static PassRefPtr<
Subclass
> create(const T* array, unsigned length)
87
RefPtr<
Subclass
> a = create<
Subclass
>(length);
94
template <class
Subclass
>
95
static PassRefPtr<
Subclass
> create(PassRefPtr<ArrayBuffer> buffer,
103
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
/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}}
Completed in 783 milliseconds