HomeSort by relevance Sort by last modified time
    Searched defs:Const (Results 1 - 14 of 14) sorted by null

  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 28 template<typename T, T N> struct Const { static const T value = N; };
30 template<typename T, T N> struct IncrementHelper<Const<T, N>> { using Result = Const<T, N+1>; };
33 using Arr = int[TwoHundredAndFiftySix<Increment, Const<int, 0>>::value];
deduction.cpp 6 static const unsigned value = 0;
11 static const unsigned value = 1;
21 static const bool value = false;
26 static const bool value = true;
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
80 int array1[is_same<Replace<const _1, int, float>::type, const int>::value? 1 : -1];
82 int array3[is_same<Replace<vector<const _1>, int, float>::type, vector<const int> >::value? 1 : -1]
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 6 struct Const {
7 Const(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be const}}
8 Const& operator=(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be const}}
21 const AssignmentRet2& operator=(AssignmentRet2&&) = default; // expected-error {{an explicitly-defaulted (…)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 34 CONST = 1, // value is a constant
44 const Value *Const; // valid for constants
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
66 kind = CONST;
67 u.Const = C;
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
  /external/mesa3d/src/glsl/
glsl_parser_extras.h 46 _mesa_glsl_parse_state(const struct gl_context *ctx, GLenum target,
95 } Const;
116 const glsl_type **user_structures;
140 const struct gl_extensions *extensions;
177 const char *fmt, ...);
184 extern void _mesa_glsl_warning(const YYLTYPE *locp,
186 const char *fmt, ...);
189 const char *string);
206 extern bool _mesa_glsl_process_extension(const char *name, YYLTYPE *name_locp,
207 const char *behavior
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 97 Const RN 8
215 MOV Const,#4
216 MUL curQP,curQP,Const ;// curQP=4*curQP
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 79 LatticeValueTy getLatticeValue() const {
86 bool isUndefined() const { return getLatticeValue() == undefined; }
87 bool isConstant() const {
90 bool isOverdefined() const { return getLatticeValue() == overdefined; }
92 Constant *getConstant() const {
133 ConstantInt *getConstantInt() const {
156 const TargetData *TD;
157 const TargetLibraryInfo *TLI;
208 SCCPSolver(const TargetData *td, const TargetLibraryInfo *tli
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 317 } Const;
389 ML_(cmp_for_DiAddrRange_range) ( const void* keyV, const void* elemV );
  /external/clang/include/clang/AST/
Type.h 67 struct isPodLike<clang::QualType> { static const bool value = true; };
108 /// * C99: const, volatile, and restrict
114 Const = 0x1,
117 CVRMask = Const | Volatile | Restrict
182 unsigned getAsOpaqueValue() const {
186 bool hasConst() const { return Mask & Const; }
188 Mask = (Mask & ~Const) | (flag ? Const : 0);
190 void removeConst() { Mask &= ~Const; }
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 58 static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
444 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
445 const TargetMachine &TM = getTargetMachine();
462 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
511 EVT PPCTargetLowering::getSetCCResultType(EVT VT) const {
526 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 134 const FunctionProtoType *Proto
567 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
570 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
573 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
661 const FunctionDecl *FD) {
663 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
666 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
684 bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
685 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
691 const CXXRecordDecl *RD = MD->getParent()
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 76 const TargetMachine &TM, SmallVector<CCValAssign, 16> &locs,
88 static const uint16_t GPRArgRegs[] = {
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 255 /* IRConsts are used within 'Const' and 'Exit' IRExprs. */
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]

Completed in 518 milliseconds