HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 51 - 75 of 187) sorted by null

1 23 4 5 6 7 8

  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 29 /// Base - Implementation details.
31 Recycler<T, Size, Align> Base;
38 ~RecyclingAllocator() { Base.clear(Allocator); }
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
46 T *Allocate() { return Base.Allocate(Allocator); }
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
54 void PrintStats() { Base.PrintStats(); }
  /external/llvm/lib/Analysis/
Loads.cpp 89 Value *Base = V;
91 Base = getUnderlyingObjectWithOffset(V, TD, ByteOffset);
95 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Base)) {
99 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(Base)) {
  /external/llvm/lib/Target/MSP430/
MSP430AsmPrinter.cpp 85 // register base, we should not emit any prefix symbol here, e.g.
113 const MachineOperand &Base = MI->getOperand(OpNum);
119 if (Disp.isImm() && !Base.getReg())
123 // Print register base field
124 if (Base.getReg()) {
  /external/webkit/Source/JavaScriptCore/runtime/
JSActivation.h 43 typedef JSVariableObject Base;
JSByteArray.h 38 typedef JSNonFinalObject Base;
JSFunction.h 45 typedef JSObjectWithGlobalObject Base;
RegExpObject.h 31 typedef JSObjectWithGlobalObject Base;
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.h 41 typedef JSC::JSNonFinalObject Base;
69 static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::OverridesMarkChildren | JSC::OverridesGetPropertyNames | Base::StructureFlags;
JSDOMGlobalObject.h 45 typedef JSC::JSGlobalObject Base;
  /external/webkit/Source/WebKit2/UIProcess/
WebContextUserMessageCoders.h 42 typedef UserMessageEncoder<WebContextUserMessageEncoder> Base;
45 : Base(root)
85 typedef UserMessageDecoder<WebContextUserMessageDecoder> Base;
88 : Base(root)
94 : Base(root)
102 if (!Base::baseDecode(decoder, coder, type))
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleUserMessageCoders.h 45 typedef UserMessageEncoder<InjectedBundleUserMessageEncoder> Base;
48 : Base(root)
88 typedef UserMessageDecoder<InjectedBundleUserMessageDecoder> Base;
91 : Base(root)
96 : Base(root)
103 if (!Base::baseDecode(decoder, coder, type))
  /external/clang/test/CodeGenCXX/
derived-to-base-conv.cpp 54 struct Base;
57 operator Base&() { exit(1); }
62 struct Base : Root {
63 Base(const Base&) { printf("Base::(const Base&)\n"); }
64 Base() { printf("Base::Base()\n");
    [all...]
apple-kext-indirect-call-2.C 28 struct Base { virtual char* abc(void) const; };
30 char* Base::abc() const { return 0; }
32 struct Derived : public Base {
38 char* c = p->Base::abc();
  /dalvik/tests/077-method-override/src/
Base.java 17 public class Base {
19 System.out.println("declaredInBase: Base");
23 System.out.println("overridden: Base");
28 System.out.println("wasOverridden: Base");
35 System.out.println("overrideWithPublic: Base");
43 System.out.println("overridePublicWithProtected: Base");
50 System.out.println("overrideProtectedWithPublic: Base");
58 System.out.println("overridePublicWithPrivate: Base");
65 System.out.println("overridePrivateWithPublic: Base");
73 System.out.println("overrideVirtualWithStatic: Base");
    [all...]
  /dalvik/tests/077-method-override/src2/
Base.java 17 public class Base {
19 System.out.println("declaredInBase: Base");
23 System.out.println("overridden: Base");
28 // System.out.println("wasOverridden: Base");
35 System.out.println("overrideWithPublic: Base");
43 System.out.println("overridePublicWithProtected: Base");
50 System.out.println("overrideProtectedWithPublic: Base");
58 System.out.println("overridePublicWithPrivate: Base");
65 System.out.println("overridePrivateWithPublic: Base");
73 System.out.println("overrideVirtualWithStatic: Base");
    [all...]
  /external/chromium/base/memory/
weak_ptr_unittest.cc 5 #include "base/memory/scoped_ptr.h"
6 #include "base/memory/weak_ptr.h"
8 #include "base/message_loop.h"
9 #include "base/threading/thread.h"
11 namespace base { namespace
35 struct Base {};
36 struct Derived : Base {};
86 WeakPtr<Base> ptr = factory.GetWeakPtr();
137 } // namespace base
  /external/clang/lib/AST/
APValue.cpp 24 const Expr* Base;
169 return ((const LV*)(const void*)Data)->Base;
179 ((LV*)(char*)Data)->Base = B;
  /external/clang/test/SemaCXX/
using-decl-templates.cpp 13 using A<double>::f; // expected-error{{using declaration refers into 'A<double>::', which is not a base class of 'B<int>'}}
39 struct Base {
42 template<typename T> struct E : Base {
43 using Base::foo;
70 class Base {
76 class Derived : public Base<T> {
78 using Base<T>::Container;
vararg-non-pod.cpp 86 struct Base { virtual ~Base(); };
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}}
92 (void)typeid(eat_base(base)); // okay
warn-overloaded-virtual.cpp 44 struct Base {
48 void Base::foo(int) { }
50 struct Derived : public Base {
  /external/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp 183 const MachineOperand &Base = MI->getOperand(OpNum);
188 // Print base operand (if any)
189 if (Base.getReg()) {
199 const MachineOperand &Base = MI->getOperand(OpNum);
205 // Print base operand (if any)
206 if (Base.getReg()) {
215 assert(!Index.getReg() && "Should allocate base register first!");
  /external/webkit/Source/WebCore/svg/properties/
SVGStaticListPropertyTearOff.h 31 typedef SVGListProperty<PropertyType> Base;
45 Base::clearValues(m_values, ec);
50 return Base::numberOfItemsValues(m_values);
55 return Base::initializeValues(m_values, newItem, ec);
60 return Base::getItemValues(m_values, index, ec);
65 return Base::insertItemBeforeValues(m_values, newItem, index, ec);
70 return Base::replaceItemValues(m_values, newItem, index, ec);
75 return Base::removeItemValues(m_values, index, ec);
80 return Base::appendItemValues(m_values, newItem, ec);
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 62 class Base {
66 Base() : member_(0) {}
67 explicit Base(int n) : member_(n) {}
68 virtual ~Base() {}
75 class Derived : public Base {
77 explicit Derived(int n) : Base(n) {}
82 EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_<Base*>(&derived));
87 Base base = ::testing::internal::ImplicitCast_<Base>(derived) local
106 Base base = ::testing::internal::ImplicitCast_<Base>(castable); local
125 Base base = ::testing::internal::ImplicitCast_<Base>(const_castable); local
151 Base base = ::testing::internal::ImplicitCast_<Base>(castable); local
    [all...]
  /external/chromium/base/
bind_helpers.h 7 // that are bound by the Bind() function in base/bind.h.
9 // The public functions are base::Unretained() and base::ConstRef().
54 #include "base/basictypes.h"
55 #include "base/template_util.h"
57 namespace base { namespace
91 // want to probe for. Then we create a class Base that inherits from both T
96 // Now, if TargetFunc exists somewhere in T, then &Base::TargetFunc has an
106 // static const bool value = sizeof(GoodCheck<Base>(0)) == sizeof(Yes);
110 // by specializing GoodCheck() on Base instead of T
    [all...]
  /external/clang/lib/Index/
ASTVisitor.h 35 typedef ASTVisitor<ImplClass> Base;

Completed in 2115 milliseconds

1 23 4 5 6 7 8