Home
last modified time | relevance | path

Searched refs:IsConst (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/
Dinterface.h80 *ok = !IsModule() && (IsConst() || !IsFrozen()); in MakeConst()
112 bool IsConst() { return Chase()->flags_ & CONST; } in IsConst() function
123 this->IsConst() == that->IsConst()); in IsUnified()
Dinterface.cc101 if (*ok && this->IsConst()) that->MakeConst(ok); in Unify()
106 if (*ok && that->IsConst()) this->MakeConst(ok); in Unify()
190 } else if (IsConst()) { in Print()
/external/llvm/include/llvm/Analysis/
DRegionInfo.h561 template <bool IsConst>
564 typename std::conditional<IsConst, const BlockT, BlockT>::type *> {
566 typename std::conditional<IsConst, const BlockT, BlockT>::type *> super;
569 typedef block_iterator_wrapper<IsConst> Self;
/external/llvm/include/llvm/ADT/
DDenseMap.h49 typename Bucket = detail::DenseMapPair<KeyT, ValueT>, bool IsConst = false>
996 bool IsConst>
1004 typedef typename std::conditional<IsConst, const Bucket, Bucket>::type
1025 typename = typename std::enable_if<!IsConstSrc && IsConst>::type>
/external/clang/include/clang/AST/
DMangle.h203 virtual void mangleCXXThrowInfo(QualType T, bool IsConst, bool IsVolatile,
/external/lldb/include/lldb/Symbol/
DClangASTType.h141 IsConst() const;
/external/clang/lib/CodeGen/
DMicrosoftCXXABI.cpp3170 bool &IsConst, bool &IsVolatile) { in decomposeTypeForEH() argument
3178 IsConst = false; in decomposeTypeForEH()
3182 IsConst = PointeeType.isConstQualified(); in decomposeTypeForEH()
3206 bool IsConst, IsVolatile; in getAddrOfCXXCatchHandlerType() local
3207 Type = decomposeTypeForEH(getContext(), Type, IsConst, IsVolatile); in getAddrOfCXXCatchHandlerType()
3212 if (IsConst) in getAddrOfCXXCatchHandlerType()
3647 bool IsConst, IsVolatile; in getThrowInfo() local
3648 T = decomposeTypeForEH(getContext(), T, IsConst, IsVolatile); in getThrowInfo()
3664 getMangleContext().mangleCXXThrowInfo(T, IsConst, IsVolatile, NumEntries, in getThrowInfo()
3677 if (IsConst) in getThrowInfo()
DCGBuiltin.cpp1803 bool IsConst = E->getArg(i)->isIntegerConstantExpr(Result,getContext()); in EmitBuiltinExpr() local
1804 assert(IsConst && "Constant arg isn't actually constant?"); in EmitBuiltinExpr()
1805 (void)IsConst; in EmitBuiltinExpr()
5910 bool IsConst = E->getArg(i)->isIntegerConstantExpr(Result, getContext()); in EmitX86BuiltinExpr() local
5911 assert(IsConst && "Constant arg isn't actually constant?"); (void)IsConst; in EmitX86BuiltinExpr()
/external/clang/lib/AST/
DMicrosoftMangle.cpp118 void mangleCXXThrowInfo(QualType T, bool IsConst, bool IsVolatile,
2361 bool IsConst, in mangleCXXThrowInfo() argument
2367 if (IsConst) in mangleCXXThrowInfo()
DExprConstant.cpp8454 const ASTContext &Ctx, bool &IsConst) { in FastEvaluateAsRValue() argument
8460 IsConst = true; in FastEvaluateAsRValue()
8467 IsConst = false; in FastEvaluateAsRValue()
8476 IsConst = false; in FastEvaluateAsRValue()
8489 bool IsConst; in EvaluateAsRValue() local
8490 if (FastEvaluateAsRValue(this, Result, Ctx, IsConst)) in EvaluateAsRValue()
8491 return IsConst; in EvaluateAsRValue()
8590 bool IsConst; in EvaluateForOverflow() local
8592 if (!FastEvaluateAsRValue(this, EvalResult, Ctx, IsConst)) { in EvaluateForOverflow()
/external/clang/include/clang/Basic/
DTokenKinds.def441 TYPE_TRAIT_1(__is_const, IsConst, KEYCXX)
/external/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp6561 bool IsConst = true; in LowerBUILD_VECTOR() local
6565 IsConst = false; in LowerBUILD_VECTOR()
6570 if (IsConst) { in LowerBUILD_VECTOR()
/external/lldb/source/Symbol/
DClangASTType.cpp311 ClangASTType::IsConst() const in IsConst() function in ClangASTType