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

/external/clang/test/SemaTemplate/
H A Dalias-church-numerals.cpp29 template<typename T, T N> struct Const { static const T value = N; }; struct
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];
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/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py117 class Const(Definition): class in inherits: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/
H A DSDNodeDbgValue.h44 const Value *Const; // valid for constants member in union:llvm::SDDbgValue::__anon25805
71 u.Const = C;
95 const Value *getConst() { assert (kind==CONST); return u.Const; }
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-member-pointers.cpp89 namespace Const { namespace
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/
H A Dnodes.py430 class Const(Literal): class in inherits:Literal
898 EvalContextModifier(options=[Keyword('autoescape', Const(True))])
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dglsl_parser_extras.h132 } Const; member in struct:_mesa_glsl_parse_state
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dinput.py5 from compiler.ast import Const namespace
192 assert isinstance(c[n], Const)
210 elif isinstance(node, Const):
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp627 SizeOffsetType Const = Visitor.compute(V); local
628 if (Visitor.bothKnown(Const))
629 return std::make_pair(ConstantInt::get(Context, Const.first),
630 ConstantInt::get(Context, Const.second));
/external/mesa3d/src/glsl/
H A Dglsl_parser_extras.h132 } Const; member in struct:_mesa_glsl_parse_state
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1609 Constant *Const = IV.isConstant() local
1611 DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst << '\n');
1614 Inst->replaceAllUsesWith(Const);
1817 Constant *Const = IV.isConstant() local
1819 DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst << '\n');
1823 Inst->replaceAllUsesWith(Const);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1102 SDValue Mul_1 = Shl_0.getOperand(1); // Const
1123 SDValue Sub_0 = Shl_0.getOperand(0); // Const 0
1131 SDValue Shl2_1 = Sub_1.getOperand(1); // Const
1666 ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N1); local
1670 if (Const && GA &&
1676 SDLoc(Const),
1679 (uint64_t)Const->getSExtValue());
/external/valgrind/main/coregrind/m_debuginfo/
H A Dpriv_storage.h381 } Const; member in union:__anon32429::__anon32430
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1959 const MCConstantExpr *Const = static_cast<const MCConstantExpr *>(Expr); local
1961 MipsOperand::CreateImm(Const, S, Parser.getTok().getLoc(), *this));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c708 CAMLprim value llvm_int64_of_const(LLVMValueRef Const) argument
711 if (LLVMIsAConstantInt(Const) &&
712 LLVMGetIntTypeWidth(LLVMTypeOf(Const)) <= 64) {
714 Field(Option, 0) = caml_copy_int64(LLVMConstIntGetSExtValue(Const));
/external/clang/include/clang/AST/
H A DType.h115 Const = 0x1, enumerator in enum:clang::Qualifiers::TQ
118 CVRMask = Const | Volatile | Restrict
225 bool hasConst() const { return Mask & Const; }
227 Mask = (Mask & ~Const) | (flag ? Const : 0);
229 void removeConst() { Mask &= ~Const; }
230 void addConst() { Mask |= Const; }
607 return (getLocalFastQualifiers() & Qualifiers::Const);
700 addFastQualifiers(Qualifiers::Const);
703 return withFastQualifiers(Qualifiers::Const);
[all...]
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp4671 RHSQuals |= Qualifiers::Const;
4674 RHSQuals & Qualifiers::Const,
4677 LHSQuals & Qualifiers::Const,
5282 << MD->getParent() << FD << FD->getType() << /*Const*/1;
5310 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
5561 if (Quals == Qualifiers::Const)
5581 if (Quals == Qualifiers::Const)
5781 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
6293 if (FTI.TypeQuals & Qualifiers::Const)
6464 if (FTI.TypeQuals & Qualifiers::Const)
9499 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam(); local
10295 bool Const = ClassDecl->implicitCopyConstructorHasConstParam(); local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1523 SDValue Const = DAG.getConstant(4*i, MVT::i32); local
1524 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp4118 SDValue Const = DAG.getConstant(PtrByteSize - Size, local
4120 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4158 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType()); local
4159 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4180 SDValue Const = DAG.getConstant(j, PtrOff.getValueType()); local
4181 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
4531 SDValue Const = DAG.getConstant(PtrByteSize - Size, local
4533 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4552 SDValue Const = DAG.getConstant(j, PtrOff.getValueType()); local
4553 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
[all...]
/external/valgrind/main/VEX/pub/
H A Dlibvex_ir.h263 /* IRConsts are used within 'Const' and 'Exit' IRExprs. */
1897 } Const; member in union:_IRExpr::__anon32286
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h3411 struct gl_constants Const; member in struct:gl_context
/external/mesa3d/src/mesa/main/
H A Dmtypes.h3411 struct gl_constants Const; member in struct:gl_context
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...

Completed in 594 milliseconds