Searched refs:Base (Results 26 - 50 of 943) sorted by relevance

1234567891011>>

/external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
H A Dconvert.pass.cpp32 struct Base {}; struct
33 struct Derived : Base {};
39 test<input_iterator<Base*> >(input_iterator<Derived*>(&d));
40 test<forward_iterator<Base*> >(forward_iterator<Derived*>(&d));
41 test<bidirectional_iterator<Base*> >(bidirectional_iterator<Derived*>(&d));
42 test<random_access_iterator<const Base*> >(random_access_iterator<Derived*>(&d));
43 test<Base*>(&d);
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dcompare-map-elim2.js36 function Base() { class
39 Base.prototype.__defineGetter__("value", function() { return 1; });
41 var a = new Base();
45 Base.prototype.__defineGetter__("value", function() { return this.v_; });
47 var b = new Base();
51 var d = new Base();
66 function Base() {
69 Base.prototype.__defineGetter__("value", function() { return 1; });
71 var a = new Base();
75 Base
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Darbprogparse.c87 if (program->Base.String != NULL)
88 free(program->Base.String);
93 program->Base.String = prog.String;
94 program->Base.NumInstructions = prog.NumInstructions;
95 program->Base.NumTemporaries = prog.NumTemporaries;
96 program->Base.NumParameters = prog.NumParameters;
97 program->Base.NumAttributes = prog.NumAttributes;
98 program->Base.NumAddressRegs = prog.NumAddressRegs;
99 program->Base.NumNativeInstructions = prog.NumNativeInstructions;
100 program->Base
[all...]
/external/mesa3d/src/mesa/program/
H A Darbprogparse.c87 if (program->Base.String != NULL)
88 free(program->Base.String);
93 program->Base.String = prog.String;
94 program->Base.NumInstructions = prog.NumInstructions;
95 program->Base.NumTemporaries = prog.NumTemporaries;
96 program->Base.NumParameters = prog.NumParameters;
97 program->Base.NumAttributes = prog.NumAttributes;
98 program->Base.NumAddressRegs = prog.NumAddressRegs;
99 program->Base.NumNativeInstructions = prog.NumNativeInstructions;
100 program->Base
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
H A Dproto.js4 Base = function() {}
8 * @extends {Base}
14 * @extends {Base}
19 __proto__: Base
28 __proto__: Base.prototype
37 __proto__: Base.prototype
42 * @extends {Base}
52 * @extends {Base}
60 * @extends {Base}
66 __proto__: Base
0 Base = function() {} function
[all...]
/external/llvm/lib/Support/
H A DStringRefMemoryObject.cpp15 if (Addr >= Base + getExtent() || Addr < Base)
17 *Byte = Bytes[Addr - Base];
24 uint64_t Offset = Addr - Base;
25 if (Addr >= Base + getExtent() || Offset + Size > getExtent() || Addr < Base)
/external/clang/test/CodeGenCXX/
H A Dderived-to-base-conv.cpp44 struct Base;
47 operator Base&();
52 struct Base : Root { struct in inherits:Root
53 Base(const Base &);
54 Base();
58 struct Derived : Base {
61 void test1_helper(Base);
H A Dmicrosoft-abi-methods.cpp62 class Base { class
64 Base() {} function in class:Base
65 ~Base() {}
68 class Child: public Base { };
72 // Make sure that the Base constructor call in the Child constructor uses
75 // CHECK: %{{[.0-9A-Z_a-z]+}} = call x86_thiscallcc %class.Base* @"\01??0Base@@QAE@XZ"
78 // Make sure that the Base destructor call in the Child denstructor uses
81 // CHECK: call x86_thiscallcc void @"\01??1Base@@QAE@XZ"
84 // Make sure that the Base destructo
[all...]
H A Dcopy-constructor-elim-2.cpp11 struct Base { struct in namespace:no_elide_base
12 Base(const Base&);
13 ~Base();
17 operator Base() const;
20 struct Derived : public virtual Base {
29 : Base(O)
/external/clang/test/Index/Inputs/
H A Dobjc.h1 @interface Base {
9 @interface Sub : Base
/external/clang/test/Index/
H A Dannotate-context-sensitive.cpp1 class Base { class
6 class Derived final : public Base {
27 // CHECK-OVERRIDE-FINAL: Keyword: "public" [6:23 - 6:29] C++ base class specifier=class Base:1:7 [access=public isVirtual=false]
28 // CHECK-OVERRIDE-FINAL: Identifier: "Base" [6:30 - 6:34] TypeRef=class Base:1:7
H A Dcursor-ref-names.cpp2 struct Base { struct
7 struct Sub: public Base<int> {
22 inst.Base<int>::operator[](1);
45 // CHECK: cursor-ref-names.cpp:22:10: TemplateRef=Base:2:8 Extent=[22:10 - 22:14]
/external/clang/test/Parser/
H A DMicrosoftExtensionsInlineAsm.c5 void __forceinline InterlockedBitTestAndSet (long *Base, long Bit) argument
9 mov ecx, Base
H A Dcxx0x-override-control-keywords.cpp4 struct Base { struct
8 struct S : Base {
/external/chromium_org/courgette/
H A Ddifference_estimator.h18 // strings (stored in regions of memory) are good matches to existing 'Base'
23 // The measure is asymmetric, if the Subject is a small substring of the Base
26 // The comparison is staged: first make Base and Subject objects for the regions
36 class Base;
42 Base* MakeBase(const Region& region);
48 size_t Measure(Base* base, Subject* subject);
51 std::vector<Base*> owned_bases_;
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dclass_multiple_trace_bases.cpp9 void Base::trace(Visitor* visitor) { }
H A Dclass_multiple_trace_bases.h12 class Base : public GarbageCollected<Base> { class in namespace:blink
22 class Derived : public Base, public Mixin {
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp3-cxx0x.cpp23 struct Base { struct in namespace:test1
31 struct Subclass : Base {
39 template <class T> struct C : Base {
41 using Base::bar; // expected-error {{no member named 'bar'}}
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dassign_rv_pair_U_V.pass.cpp20 struct Base struct
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
H A Drv_pair_U_V.pass.cpp20 struct Base struct
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dsuper.js9 function Base() { }
13 Derived.prototype = Object.create(Base.prototype);
15 function fBase() { return "Base " + this.toString(); } class
17 Base.prototype.f = fBase.toMethod(Base.prototype);
20 assertEquals("Base this is Derived", super.f());
27 Base.prototype.x = 15;
28 Base.prototype.toString = function() { return "this is Base"; };
33 assertEquals("Base thi
[all...]
/external/clang/test/SemaCXX/
H A Dpragma-pack.cpp6 struct Base { struct in namespace:rdar8745206
11 struct Sub : public Base {
22 struct Base { struct in namespace:check2
23 virtual ~Base();
28 struct Sub : virtual Base {
/external/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
H A Dreverse_iterator.pass.cpp32 struct Base {}; struct
33 struct Derived : Base {};
39 test<bidirectional_iterator<Base*> >(bidirectional_iterator<Derived*>(&d));
40 test<random_access_iterator<const Base*> >(random_access_iterator<Derived*>(&d));
41 test<Base*>(&d);
/external/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/
H A Dreverse_iterator.pass.cpp35 struct Base {}; struct
36 struct Derived : Base {};
42 test<bidirectional_iterator<Base*> >(bidirectional_iterator<Derived*>(&d));
43 test<random_access_iterator<const Base*> >(random_access_iterator<Derived*>(&d));
44 test<Base*>(&d);
/external/llvm/include/llvm/Support/
H A DStringRefMemoryObject.h27 uint64_t Base; member in class:llvm::StringRefMemoryObject
29 StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0)
30 : Bytes(Bytes), Base(Base) {}
32 uint64_t getBase() const override { return Base; }

Completed in 832 milliseconds

1234567891011>>