Searched defs:Const (Results 1 - 15 of 15) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dalias-church-numerals.cpp28 template<typename T, T N> struct Const { static const T value = N; }; struct
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];
H A Ddeduction.cpp127 template<typename T> struct Const { typedef void const type; }; struct in namespace:test2
129 template<typename T> void f(T, typename Const<T>::type*);
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp6 struct Const { struct in namespace:move
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}}
35 struct Const { struct in namespace:copy
36 Const(const Const&) = default;
37 Const& operator=(const Const
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h44 const Value *Const; // valid for constants member in union:llvm::SDDbgValue::__anon8717
67 u.Const = C;
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
/external/mesa3d/src/glsl/
H A Dglsl_parser_extras.h95 } Const; member in struct:_mesa_glsl_parse_state
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp591 SizeOffsetType Const = Visitor.compute(V); local
592 if (Visitor.bothKnown(Const))
593 return std::make_pair(ConstantInt::get(Context, Const.first),
594 ConstantInt::get(Context, Const.second));
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1615 Constant *Const = IV.isConstant() local
1617 DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst);
1620 Inst->replaceAllUsesWith(Const);
1823 Constant *Const = IV.isConstant() local
1825 DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst);
1829 Inst->replaceAllUsesWith(Const);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dpriv_storage.h317 } Const; member in union:__anon13540::__anon13541
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c615 CAMLprim value llvm_int64_of_const(LLVMValueRef Const) argument
618 if (LLVMIsAConstantInt(Const) &&
619 LLVMGetIntTypeWidth(LLVMTypeOf(Const)) <= 64) {
621 Field(Option, 0) = caml_copy_int64(LLVMConstIntGetSExtValue(Const));
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3317 SDValue Const = DAG.getConstant(4 - Size, PtrOff.getValueType()); local
3318 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3345 SDValue Const = DAG.getConstant(j, PtrOff.getValueType()); local
3346 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
/external/clang/include/clang/AST/
H A DType.h115 Const = 0x1, enumerator in enum:clang::Qualifiers::TQ
118 CVRMask = Const | Volatile | Restrict
187 bool hasConst() const { return Mask & Const; }
189 Mask = (Mask & ~Const) | (flag ? Const : 0);
191 void removeConst() { Mask &= ~Const; }
192 void addConst() { Mask |= Const; }
564 return (getLocalFastQualifiers() & Qualifiers::Const);
657 addFastQualifiers(Qualifiers::Const);
660 return withFastQualifiers(Qualifiers::Const);
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1417 SDValue Const = DAG.getConstant(4*i, MVT::i32); local
1418 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
/external/valgrind/main/VEX/pub/
H A Dlibvex_ir.h255 /* IRConsts are used within 'Const' and 'Exit' IRExprs. */
1475 } Const; member in union:_IRExpr::__anon13419
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp4295 ConstArg || (Quals & Qualifiers::Const),
4298 TQ & Qualifiers::Const,
4459 << MD->getParent() << FD << FD->getType() << /*Const*/1;
4487 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
4972 if (FTI.TypeQuals & Qualifiers::Const)
5137 if (FTI.TypeQuals & Qualifiers::Const)
7494 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7506 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7521 if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
8544 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8642 bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl); local
[all...]
/external/mesa3d/src/mesa/main/
H A Dmtypes.h3102 struct gl_constants Const; member in struct:gl_context

Completed in 426 milliseconds