Searched refs:Base (Results 76 - 100 of 380) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObjectFunctions.h45 template <class Base>
46 inline JSCallbackObject<Base>* JSCallbackObject<Base>::asCallbackObject(JSValue value)
52 template <class Base>
53 JSCallbackObject<Base>::JSCallbackObject(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, JSClassRef jsClass, void* data)
54 : Base(globalObject, structure)
57 ASSERT(Base::inherits(&s_info));
63 template <class Base>
64 JSCallbackObject<Base>::JSCallbackObject(JSGlobalData& globalData, JSClassRef jsClass, Structure* structure)
65 : Base(globalDat
[all...]
/external/clang/test/SemaCXX/
H A Dvararg-non-pod.cpp86 struct Base { virtual ~Base(); }; struct
87 Base &get_base(...);
90 void test_typeid(Base &base) {
91 (void)typeid(get_base(base)); // expected-warning{{cannot pass object of non-POD type 'Base' through variadic function; call will abort at runtime}}
H A Daggregate-initialization.cpp13 struct Base { }; struct
14 struct NonAggr2 : public Base { // expected-note 3 {{candidate constructor}}
H A Dconversion-delete-expr.cpp80 struct Base { struct
84 struct Derived : Base {
85 // not the same function as Base's non-const operator int()
H A Denum-unscoped-nonexistent.cpp3 struct Base { struct
6 template<typename T> struct S : Base {
17 // The unqualified-id here names a member of the non-dependent base class Base
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.h26 unsigned Base, Width, Offset; member in struct:llvm::EncodingField
28 : Base(B), Width(W), Offset(O) { }
38 void addField(unsigned Base, unsigned Width, unsigned Offset) { argument
39 Fields.push_back(EncodingField(Base, Width, Offset));
/external/webkit/Source/WebCore/bindings/js/
H A DJSCSSImportRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSCSSMediaRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSCSSRuleListCustom.cpp37 Base::markChildren(markStack);
H A DJSWebKitAnimationListCustom.cpp37 Base::markChildren(markStack);
H A DJSXMLHttpRequestUploadCustom.cpp46 Base::markChildren(markStack);
/external/clang/test/CXX/class.access/
H A Dp4.cpp126 template <unsigned N> class Base { ~Base(); }; // expected-note 14 {{declared private here}} class in namespace:test3
127 class Base2 : virtual Base<2> { ~Base2(); }; // expected-note 3 {{declared private here}} \
128 // expected-error {{base class 'Base<2>' has private destructor}}
129 class Base3 : virtual Base<3> { public: ~Base3(); }; // expected-error {{base class 'Base<3>' has private destructor}}
132 class Derived0 : Base<0> { ~Derived0(); };
133 class Derived1 : Base<1> { };
135 class Derived2 : // expected-error {{inherited virtual base class 'Base<2>' has private destructor}} \
136 // expected-error {{inherited virtual base class 'Base<
159 class Base { class in namespace:test4
[all...]
/external/clang/test/CodeGenCXX/
H A Dpredefined-expr.cpp21 // CHECK: private unnamed_addr constant [77 x i8] c"void NS::ClassTemplate<NS::Base *>::classTemplateFunction() [T = NS::Base *]\00"
25 // CHECK: private unnamed_addr constant [53 x i8] c"void NS::Base::functionTemplate1(T) [T = NS::Base *]\00"
26 // CHECK: private unnamed_addr constant [46 x i8] c"void NS::Base::functionTemplate1(T) [T = int]\00"
41 // CHECK: private unnamed_addr constant [41 x i8] c"NS::Constructor::Constructor(NS::Base *)\00"
49 // CHECK: private unnamed_addr constant [41 x i8] c"void NS::Base::refQualifiedFunction() &&\00"
50 // CHECK: private unnamed_addr constant [40 x i8] c"void NS::Base::refQualifiedFunction() &\00"
53 // CHECK: private unnamed_addr constant [54 x i8] c"void NS::Base::constVolatileFunction() const volatile\00"
56 // CHECK: private unnamed_addr constant [43 x i8] c"void NS::Base
137 class Base { class in namespace:NS
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGListPropertyTearOff.h31 typedef SVGListProperty<PropertyType> Base; typedef in class:WebCore::SVGListPropertyTearOff
74 Base::clearValuesAndWrappers(m_animatedProperty.get(), ec);
79 return Base::numberOfItemsValuesAndWrappers(m_animatedProperty.get());
84 return Base::initializeValuesAndWrappers(m_animatedProperty.get(), passNewItem, ec);
89 return Base::getItemValuesAndWrappers(m_animatedProperty.get(), index, ec);
94 return Base::insertItemBeforeValuesAndWrappers(m_animatedProperty.get(), passNewItem, index, ec);
99 return Base::replaceItemValuesAndWrappers(m_animatedProperty.get(), passNewItem, index, ec);
104 return Base::removeItemValuesAndWrappers(m_animatedProperty.get(), index, ec);
109 return Base::appendItemValuesAndWrappers(m_animatedProperty.get(), passNewItem, ec);
H A DSVGPathSegListPropertyTearOff.h33 typedef SVGListProperty<SVGPathSegList> Base; typedef in class:WebCore::SVGPathSegListPropertyTearOff
71 return Base::numberOfItemsValues(values);
84 return Base::initializeValues(values, newItem, ec);
99 return Base::insertItemBeforeValues(values, newItem, index, ec);
112 return Base::replaceItemValues(values, newItem, index, ec);
127 return Base::appendItemValues(values, newItem, ec);
/external/webkit/Source/JavaScriptCore/wtf/
H A DDeque.h115 typedef DequeIteratorBase<T, inlineCapacity> Base; typedef in class:WTF::DequeIteratorBase
120 DequeIteratorBase(const Base&);
121 Base& operator=(const Base&);
124 void assign(const Base& other) { *this = other; }
132 bool isEqual(const Base&) const;
138 void checkValidity(const Base&) const;
154 typedef DequeIteratorBase<T, inlineCapacity> Base; typedef in class:WTF::DequeIterator
158 DequeIterator(Deque<T, inlineCapacity>* deque, size_t index) : Base(deque, index) { }
160 DequeIterator(const Iterator& other) : Base(othe
178 typedef DequeIteratorBase<T, inlineCapacity> Base; typedef in class:WTF::DequeConstIterator
205 typedef DequeIteratorBase<T, inlineCapacity> Base; typedef in class:WTF::DequeReverseIterator
229 typedef DequeIteratorBase<T, inlineCapacity> Base; typedef in class:WTF::DequeConstReverseIterator
[all...]
/external/llvm/include/llvm/Support/
H A DCallSite.h279 CallInst, InvokeInst, User::op_iterator> Base; typedef in class:llvm::CallSite
282 CallSite(Base B) : Base(B) {}
283 CallSite(Value* V) : Base(V) {}
284 CallSite(CallInst *CI) : Base(CI) {}
285 CallSite(InvokeInst *II) : Base(II) {}
286 CallSite(Instruction *II) : Base(II) {}
300 typedef CallSiteBase<> Base; typedef in class:llvm::ImmutableCallSite
302 ImmutableCallSite(const Value* V) : Base(V) {}
303 ImmutableCallSite(const CallInst *CI) : Base(C
[all...]
H A DYAMLParser.h268 basic_collection_iterator() : Base(0) {}
269 basic_collection_iterator(BaseT *B) : Base(B) {}
272 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
273 return Base->CurrentEntry;
277 assert(Base && Base->CurrentEntry &&
279 return *Base->CurrentEntry;
283 assert(Base && Base
304 BaseT *Base; member in class:llvm::yaml::basic_collection_iterator
[all...]
/external/clang/test/FixIt/
H A Dtypo.cpp51 struct Base { }; struct
52 struct Derived : public Base { // expected-note{{base class 'Base' specified here}}
55 Derived() : base(), // expected-error{{initializer 'base' does not name a non-static data member or base class; did you mean the base class 'Base'?}}
/external/llvm/lib/Target/X86/
H A DX86JITInfo.h76 void setPICBase(uintptr_t Base) { PICBase = Base; } argument
/external/clang/lib/CodeGen/
H A DCGVTables.h91 uint64_t getSubVTTIndex(const CXXRecordDecl *RD, BaseSubobject Base);
96 BaseSubobject Base);
100 uint64_t getAddressPoint(BaseSubobject Base, const CXXRecordDecl *RD);
113 GenerateConstructionVTable(const CXXRecordDecl *RD, const BaseSubobject &Base,
/external/clang/test/Index/
H A Dload-stmts.cpp94 struct Base { struct
95 Base(int);
98 struct Derived : public Base {
104 : member(x), Base(x) {
222 // CHECK: load-stmts.cpp:104:16: TypeRef=struct Base:94:8 Extent=[104:16 - 104:2
223 // CHECK: load-stmts.cpp:104:16: CallExpr=Base:95:3 Extent=[104:16 - 104:23]
/external/llvm/lib/Target/MSP430/InstPrinter/
H A DMSP430InstPrinter.cpp62 const MCOperand &Base = MI->getOperand(OpNo); local
73 if (!Base.getReg())
84 if (Base.getReg())
85 O << '(' << getRegisterName(Base.getReg()) << ')';
/external/clang/test/CXX/class.derived/class.member.lookup/
H A Dp8.cpp7 struct Base { struct in namespace:PR5820
12 struct D1 : public Base {};
13 struct D2 : public Base {};
/external/clang/test/SemaTemplate/
H A Dvirtual-member-functions.cpp30 struct Base { struct
31 virtual ~Base() {
38 struct Derived : Base<T> {
42 template struct Derived<int>; // expected-note {{in instantiation of member function 'Base<int>::~Base' requested here}}

Completed in 321 milliseconds

1234567891011>>