Searched refs:getInt (Results 51 - 75 of 155) sorted by relevance

1234567

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DInitialization.h467 return Parameter.getInt();
479 return Base.getInt();
H A DScopeInfo.h297 return Base.getInt();
345 bool isUnsafe() const { return Rep.getInt(); }
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h468 switch (Dep.getInt()) {
486 inline SDep::Kind SDep::getKind() const { return Dep.getInt(); }
H A DDIE.h521 return Next.getInt() ? nullptr : Next.getPointer();
534 assert(N.Next.getInt() == true && "Expected unlinked node");
545 assert(N.Next.getInt() == true && "Expected unlinked node");
H A DSlotIndexes.h130 return static_cast<Slot>(lie.getInt());
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFunctionExtras.h167 bool isInlineStorage() const { return CallbackAndInlineFlag.getInt(); }
H A DPointerUnion.h181 return this->Val.getInt() == Index;
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DModuleMap.h173 ModuleHeaderRole getRole() const { return Storage.getInt(); }
H A DMacroInfo.h589 bool isAmbiguous() const { return LatestLocalAndAmbiguous.getInt(); }
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp92 llvm::APSInt Result = EVResult.Val.getInt();
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DProgramPoint.h161 unsigned x = Tag.getInt();
163 x |= L.getInt();
165 x |= Data2.getInt();
H A DCFG.h119 unsigned x = Data2.getInt();
121 x |= Data1.getInt();
537 Kind getKind() const { return static_cast<Kind>(Data.getInt()); }
834 Kind K = (Kind) UnreachableBlock.getInt();
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAPValue.h415 APSInt &getInt() { function in class:clang::APValue
419 const APSInt &getInt() const { function in class:clang::APValue
420 return const_cast<APValue*>(this)->getInt();
H A DDeclTemplate.h509 return Function.getInt();
530 return (TemplateSpecializationKind)(Template.getInt() + 1);
642 return (TemplateSpecializationKind)(MemberAndTSK.getInt() + 1);
886 return getCommonPtr()->InstantiatedFromMember.getInt();
2206 return First->InstantiatedFromMember.getInt();
3047 return First->InstantiatedFromMember.getInt();
H A DDeclCXX.h1801 ExplicitSpecKind getKind() const { return ExplicitSpec.getInt(); }
1807 return ExplicitSpec.getInt() != ExplicitSpecKind::ResolvedFalse ||
1818 return ExplicitSpec.getInt() == ExplicitSpecKind::ResolvedTrue;
1823 return ExplicitSpec.getInt() == ExplicitSpecKind::Unresolved &&
3440 bool hasTypename() const { return FirstUsingShadow.getInt(); }
3808 bool isFailed() const { return AssertExprAndFailed.getInt(); }
H A DASTVector.h47 bool getTag() const { return Capacity.getInt(); }
H A DExprConcepts.h294 return TypeConstraintInfo.getInt();
H A DDecl.h578 return AnonOrFirstNamespaceAndInline.getInt();
2903 InitStorage.getInt()
2930 InitStorageKind storageKind = InitStorage.getInt();
2970 return InitStorage.getInt() == ISK_CapturedVLAType;
3148 /// Otherwise, IsTransparentTag is (getInt() >> 1).
3226 if (MaybeModedTInfo.getInt())
3227 return MaybeModedTInfo.getInt() & 0x2;
4145 bool isByRef() const { return VariableAndFlags.getInt() & flag_isByRef; }
4157 bool isNested() const { return VariableAndFlags.getInt() & flag_isNested; }
4436 bool isImportComplete() const { return NextLocalImportAndComplete.getInt(); }
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaConcept.cpp190 Satisfaction.IsSatisfied = EvalResult.Val.getInt().getBoolValue();
576 << SimplifiedLHS.Val.getInt().toString(10)
578 << SimplifiedRHS.Val.getInt().toString(10);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp40 int getInt(Record *R, StringRef Field) { function in namespace:__anon3315
217 return getInt(Rec, Index.Fields[0].Name);
588 Value = getInt(EntryRec, ValueField);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp1346 SwitchInsn->addCase(Builder.getInt(LHS), CaseDest);
1367 Builder.CreateSub(SwitchInsn->getCondition(), Builder.getInt(LHS));
1369 Builder.CreateICmpULE(Diff, Builder.getInt(Range), "inbounds");
1412 Builder.getInt(S.getLHS()->EvaluateKnownConstInt(getContext()));
1466 Builder.getInt(CurCase->getLHS()->EvaluateKnownConstInt(getContext()));
2100 return llvm::ConstantInt::get(getLLVMContext(), Result.Val.getInt());
H A DCGObjC.cpp620 if (ter.getInt()) retainSelf = false;
3362 if (subresult.getInt()) {
3409 if (!result.getInt())
3427 if (!result.getInt())
3442 if (result.getInt())
3459 doRetain = !subresult.getInt();
3579 bool hasImmediateRetain = result.getInt();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp745 DwarfExpr.addUnsignedConstant(Entry->getInt());
752 addConstantValue(*VariableDie, Entry->getInt(), DV.getType());
789 DwarfExpr.addUnsignedConstant(Entry.getInt());
961 bool visitedAllDependencies = Item.getInt();
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceScriptStmt.h153 RCInt getInt() const { function in class:llvm::rc::IntOrString
164 return isInt() ? Twine(getInt()) : Twine(getString());
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafety.cpp928 if ((UnderlyingMutex.getInt() == UCK_Acquired && Entry) ||
929 (UnderlyingMutex.getInt() != UCK_Acquired && !Entry)) {
945 if (UnderlyingMutex.getInt() == UCK_Acquired)
964 if (UnderlyingMutex.getInt() == UCK_Acquired) {
967 LockKind kind = UnderlyingMutex.getInt() == UCK_ReleasedShared

Completed in 443 milliseconds

1234567