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

1 2

  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 29 template<typename T, T N> struct Const { static const T value = N; };
31 template<typename T, T N> struct IncrementHelper<Const<T, N>> { using Result = Const<T, N+1>; };
34 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 {{explicitly-defaulted mo (…)
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 117 class Const(Definition):
118 """Represents a const definition."""
126 super(Const, self).__init__(name, **kwargs)
131 return super(Const, self).__eq__(other) and \
231 _list_item_type = (Const, Enum, Method)
354 _list_item_type = (Const, Enum, StructField)
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 34 CONST = 1, // value is a constant
44 const Value *Const; // valid for constants
66 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
70 kind = CONST;
71 u.Const = C;
95 const Value *getConst() { assert (kind==CONST); return u.Const; }
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 111 Const RN 8
229 MOV Const,#4
230 MUL curQP,curQP,Const ;// curQP=4*curQP
  /external/clang/test/CodeGenCXX/
microsoft-abi-member-pointers.cpp 89 namespace Const {
95 // CHECK: @"\01?s_f_mp@Const@@3P8Single@@AEXXZQ2@" =
97 // CHECK: @"\01?m_f_mp@Const@@3P8Multiple@@AEXXZQ2@" =
99 // CHECK: @"\01?v_f_mp@Const@@3P8Virtual@@AEXXZQ2@" =
101 // CHECK: @"\01?u_f_mp@Const@@3P8Unspecified@@AEXXZQ2@" =
103 // CHECK: @"\01?us_f_mp@Const@@3P8UnspecSingle@@AEXXZQ2@" =
  /external/chromium_org/third_party/jinja2/
nodes.py 430 class Const(Literal):
443 """Return a const object if the value is representable as
679 def const(obj): function in function:Slice.as_const
683 return slice(const(self.start), const(self.stop), const(self.step))
898 EvalContextModifier(options=[Keyword('autoescape', Const(True))])
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.h 80 struct gl_context *const ctx;
91 const char *version_string;
109 const char *supported_version_string;
132 } Const;
167 const glsl_type **user_structures;
211 const struct gl_extensions *extensions;
248 const char *fmt, ...);
255 extern void _mesa_glsl_warning(const YYLTYPE *locp,
257 const char *fmt, ...);
260 const char *string)
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
input.py 5 from compiler.ast import Const
192 assert isinstance(c[n], Const)
210 elif isinstance(node, Const):
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 54 static const AllocFnsTy AllocationFnData[] = {
74 static Function *getCalledFunction(const Value *V, bool LookThroughBitCast) {
93 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
94 const TargetLibraryInfo *TLI,
121 const AllocFnsTy *FnData = &AllocationFnData[i];
142 static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) {
151 bool llvm::isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
158 bool llvm::isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI
    [all...]
  /external/mesa3d/src/glsl/
glsl_parser_extras.h 80 struct gl_context *const ctx;
91 const char *version_string;
109 const char *supported_version_string;
132 } Const;
167 const glsl_type **user_structures;
211 const struct gl_extensions *extensions;
248 const char *fmt, ...);
255 extern void _mesa_glsl_warning(const YYLTYPE *locp,
257 const char *fmt, ...);
260 const char *string)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 360 class Const(Node):
372 return "Const(%s)" % (repr(self.value),)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 360 class Const(Node):
372 return "Const(%s)" % (repr(self.value),)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 50 const HexagonSubtarget &Subtarget;
53 const HexagonTargetMachine& TM;
54 DenseMap<const GlobalValue *, unsigned> GlobalAddressUseCountMap;
63 bool hasNumUsesBelowThresGA(SDNode *N) const;
82 const char *getPassName() const override {
88 bool SelectInlineAsmMemoryOperand(const SDValue &Op,
113 bool isConstExtProfitable(SDNode *N) const;
140 bool ImmIsSingleBit(uint32_t v) const {
188 const char *Name = "Hexagon DAG->DAG Pattern Instruction Selection"
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 80 LatticeValueTy getLatticeValue() const {
87 bool isUndefined() const { return getLatticeValue() == undefined; }
88 bool isConstant() const {
91 bool isOverdefined() const { return getLatticeValue() == overdefined; }
93 Constant *getConstant() const {
134 ConstantInt *getConstantInt() const {
157 const DataLayout *DL;
158 const TargetLibraryInfo *TLI;
209 SCCPSolver(const DataLayout *DL, const TargetLibraryInfo *tli
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 115 const HChar* filename; /* source filename */
117 const HChar* dirname; /* source directory name */
381 } Const;
458 ML_(cmp_for_DiAddrRange_range) ( const void* keyV, const void* elemV );
876 const HChar* filename,
877 const HChar* dirname, /* NULL is allowable */
885 extern HChar* ML_(addStr) ( struct _DebugInfo* di, const HChar* str, Int len );
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 139 bool parseMemOffset(const MCExpr *&Res, bool isParenExpr);
140 bool parseRelocOperand(const MCExpr *&Res);
142 const MCExpr *evaluateRelocExpr(const MCExpr *Expr, StringRef RelocStr);
144 bool isEvaluated(const MCExpr *Expr);
227 const MCInstrInfo &MII, const MCTargetOptions &Options)
244 MCAsmParser &getParser() const { return Parser; }
245 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
248 bool hasEightFccRegisters() const { return hasMips4() || hasMips32();
    [all...]
  /external/clang/include/clang/AST/
Type.h 68 struct isPodLike<clang::QualType> { static const bool value = true; };
109 /// * C99: const, volatile, and restrict
115 Const = 0x1,
118 CVRMask = Const | Volatile | Restrict
221 unsigned getAsOpaqueValue() const {
225 bool hasConst() const { return Mask & Const; }
227 Mask = (Mask & ~Const) | (flag ? Const : 0);
229 void removeConst() { Mask &= ~Const; }
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 151 const CXXMethodDecl *Method) {
156 const FunctionProtoType *Proto
214 for (const auto &E : Proto->exceptions())
402 static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) {
404 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1);
586 const FunctionDecl *Def;
639 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
642 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
645 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
719 const FunctionDecl *FD)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 73 const TargetMachine &TM, SmallVectorImpl<CCValAssign> &locs,
85 static const MCPhysReg GPRArgRegs[] = {
158 static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
259 static const struct {
260 const RTLIB::Libcall Op;
261 const char * const Name;
262 const CallingConv::ID CC;
263 const ISD::CondCode Cond;
353 for (const auto &LC : LibraryCalls)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 54 static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
747 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
760 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 263 /* IRConsts are used within 'Const' and 'Exit' IRExprs. */
352 const HChar* name;
359 extern IRCallee* mkIRCallee ( Int regparms, const HChar* name, void* addr );
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mtypes.h     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]

Completed in 1021 milliseconds

1 2