HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 351 - 375 of 502) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 445 Scatterer Base = scatter(&GEPI, GEPI.getOperand(0));
459 Res[I] = Builder.CreateGEP(GEPI.getSourceElementType(), Base[I], Indices,
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 39 unsigned Base, Width, Offset;
41 : Base(B), Width(W), Offset(O) { }
52 void addField(unsigned Base, unsigned Width, unsigned Offset) {
53 Fields.push_back(EncodingField(Base, Width, Offset));
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_context.h 216 struct gl_framebuffer Base;
  /external/opencv3/modules/core/test/
test_dxt.cpp 497 typedef cvtest::ArrayTest Base;
517 : Base(), flags(0), allow_complex(_allow_complex), allow_odd(_allow_odd),
542 Base::get_test_array_types_and_sizes( test_case_idx, sizes, types );
642 return Base::get_success_error_level( test_case_idx, i, j );
648 int code = Base::prepare_test_case( test_case_idx );
  /external/chromium-trace/catapult/telemetry/third_party/mock/
mock.py 130 # The base class for all mocks is NonCallableMock
255 for base in klass.__bases__:
256 if _instance_callable(base):
457 class Base(object):
465 class NonCallableMock(Base):
931 class CallableMixin(Base):
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/six/
test_six.py 683 class Base(object):
685 class X(six.with_metaclass(Meta, Base)):
688 assert issubclass(X, Base)
691 class X(six.with_metaclass(Meta, Base, Base2)):
694 assert issubclass(X, Base)
696 assert X.__mro__ == (X, Base, Base2, object)
739 class Base(object):
741 class X(Base):
745 assert issubclass(X, Base)
748 class X(Base, Base2)
    [all...]
  /external/chromium-trace/catapult/third_party/mock/
mock.py 130 # The base class for all mocks is NonCallableMock
255 for base in klass.__bases__:
256 if _instance_callable(base):
457 class Base(object):
465 class NonCallableMock(Base):
931 class CallableMixin(Base):
    [all...]
  /external/chromium-trace/catapult/third_party/six/
test_six.py 717 class Base(object):
719 class X(six.with_metaclass(Meta, Base)):
722 assert issubclass(X, Base)
725 class X(six.with_metaclass(Meta, Base, Base2)):
728 assert issubclass(X, Base)
730 assert X.__mro__ == (X, Base, Base2, object)
773 class Base(object):
775 class X(Base):
779 assert issubclass(X, Base)
782 class X(Base, Base2)
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 177 /// Access Expression | "Base" Decl | "Property" Decl
192 /// The base object decl, as described in the class documentation.
194 /// The extra flag is "true" if the Base and Property are enough to uniquely
199 BaseInfoTy Base;
207 /// Used to find the proper base profile for a given base expression.
215 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
219 const NamedDecl *getBase() const { return Base.getPointer(); }
222 /// Returns true if the object base specifies a known object in memory,
229 /// For increased precision, accesses with base variables that ar
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 790 // Perform a single step derived-to-base conversion.
791 Address Base =
794 LValue SubLV = MakeAddrLValue(Base, BS->getType());
    [all...]
CGExprConstant.cpp 48 llvm::ConstantStruct *Base,
76 bool Build(ConstExprEmitter *Emitter, llvm::ConstantStruct *Base,
446 for (CXXRecordDecl::base_class_const_iterator Base = CD->bases_begin(),
447 BaseEnd = CD->bases_end(); Base != BaseEnd; ++Base, ++BaseNo) {
448 assert(!Base->isVirtual() && "should not have virtual bases here");
449 const CXXRecordDecl *BD = Base->getType()->getAsCXXRecordDecl();
456 BaseInfo &Base = Bases[I];
458 bool IsPrimaryBase = Layout.getPrimaryBase() == Base.Decl;
459 Build(Val.getStructBase(Base.Index), Base.Decl, IsPrimaryBase
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 223 bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix, StringRef GCCTriple,
353 /// Darwin - The base Darwin tool chain.
661 std::string Base;
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 170 : AccessedEntity(Context.getDiagAllocator(), Base, BaseClass, DerivedClass,
307 assert(T->isDependentType() && "non-dependent base wasn't a record?");
609 /// The path down to the current base class.
649 // Recurse into the base classes.
652 // base will not have any access in classes derived from Cur.
666 assert(T->isDependentType() && "non-dependent base wasn't a record?");
706 /// access a forbidden base class's members by directly subclassing
710 /// accessible in some base class would no longer let you change
711 /// the question solely to whether the base class is accessible,
795 // to protected member of base class is allowed but only fro
1206 const CXXBaseSpecifier *base = i->Base; local
1252 const CXXBaseSpecifier *base = constrainingBase->Base; local
    [all...]
SemaExprMember.cpp 32 /// the prospective base classes.
35 auto BaseIsNotInSet = [&Bases](const CXXRecordDecl *Base) {
36 return !Bases.count(Base->getCanonicalDecl());
171 // ...if C is not X or a base class of X, the class member access expression
178 // class as a base class.
287 /// VK should be set in advance to the value kind of the base
450 // Even in dependent contexts, try to diagnose base expressions with
483 /// declarations which do not belong to the static type of the base
501 // specifier in a member expression are actually members of the base
506 // member of the class or of one of its base classes
    [all...]
SemaPseudoObject.cpp 58 // with a base limits the number of cases here.
693 /// Capture the base object of an Objective-C property expression.
697 // If we have a base, capture it in an OVE and rebuild the syntactic
698 // form to use the OVE as its base.
    [all...]
  /external/clang/test/CXX/drs/
dr5xx.cpp 154 template<typename T> struct Base {};
155 struct Derived : Base<int> {};
156 template<typename T> void b3(Base<T>);
157 template<typename T> void b3(Base<T> *);
927 // FIXME: Should find member of non-dependent base class A<T>.
  /external/clang/test/CodeGenCXX/
dllexport.cpp 743 Base<int> base; member in namespace:InClassInits
    [all...]
dllimport.cpp     [all...]
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 13 struct Base {
18 struct Derived : Base {
28 virtual ~B(); // expected-warning {{exception specification of overriding function is more lax than base version}}
392 // expected-error@+1 {{base 'SealedType' is marked 'sealed'}}
overload-call.cpp 215 // Test overloading based on derived-to-base conversions
245 void derived4(C*); // expected-note{{candidate function not viable: cannot convert from base class pointer 'A *' to derived class pointer 'C *' for 1st argument}}
262 void derived5(C&); // expected-note{{candidate function not viable: cannot bind base class object of type 'A' to derived class reference 'C &' for 1st argument}}
304 // Test overloading with derived-to-base differences in reference
379 struct Base {};
382 void foo(Base *); // expected-note 2 {{cannot convert argument of incomplete type}}
383 void foo(Base &); // expected-note 2 {{cannot convert argument of incomplete type}}
warn-thread-safety-parsing.cpp     [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 288 * \brief The base class for the direct and incomplete LU factorization of SuperLU
482 typedef SuperLUBase<_MatrixType,SuperLU> Base;
484 typedef typename Base::Scalar Scalar;
485 typedef typename Base::RealScalar RealScalar;
486 typedef typename Base::Index Index;
487 typedef typename Base::IntRowVectorType IntRowVectorType;
488 typedef typename Base::IntColVectorType IntColVectorType;
489 typedef typename Base::LUMatrixType LUMatrixType;
495 SuperLU() : Base() { init(); }
497 SuperLU(const MatrixType& matrix) : Base()
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
InvokableTest.java 391 abstract class Base {
393 Base(String s, int i) {}
395 Class<?> anonymous = new Base("test", 0) {}.getClass();
  /external/llvm/lib/Analysis/
InlineCost.cpp 45 typedef InstVisitor<CallAnalyzer, bool> Base;
98 // Keep track of values which map to a pointer base and constant offset.
134 // Provide base case for our instruction visit.
300 return Base::visitAlloca(I);
313 return Base::visitAlloca(I);
345 // Check if we have a base + offset for the pointer.
358 // Add the result as a new mapping to Base + Offset.
395 // Track base/offsets through casts
423 // Track base/offset pairs when converted to a plain integer provided the
460 // Track base/offset pairs when round-tripped through a pointer withou
    [all...]

Completed in 1695 milliseconds

<<11121314151617181920>>