| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | SourceLocation.cpp | 215 unsigned FullSourceLoc::getLineNumber(bool *Invalid) const { in getLineNumber() 220 unsigned FullSourceLoc::getColumnNumber(bool *Invalid) const { in getColumnNumber() 237 return SrcMgr->getExpansionLineNumber(*this, Invalid); in getExpansionLineNumber() 242 return SrcMgr->getExpansionColumnNumber(*this, Invalid); in getExpansionColumnNumber() 245 unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const { in getSpellingLineNumber() 247 return SrcMgr->getSpellingLineNumber(*this, Invalid); in getSpellingLineNumber() 252 return SrcMgr->getSpellingColumnNumber(*this, Invalid); in getSpellingColumnNumber() 269 const char *FullSourceLoc::getCharacterData(bool *Invalid) const { in getCharacterData() 271 return SrcMgr->getCharacterData(*this, Invalid); in getCharacterData() 274 StringRef FullSourceLoc::getBufferData(bool *Invalid) const { in getBufferData() [all …]
|
| H A D | SourceManager.cpp | 739 if (Invalid) in getBufferData() 1028 if (Invalid) in isAtStartOfImmediateMacroExpansion() 1064 if (Invalid) in isAtEndOfImmediateMacroExpansion() 1112 if (Invalid) in getCharacterData() 1123 if (Invalid) in getColumnNumber() 1169 if (Invalid) in isInvalid() 1444 if (Invalid) in getBufferName() 1482 if (Invalid) in getPresumedLoc() 1485 if (Invalid) in getPresumedLoc() 1558 if (Invalid) in getFileIDSize() [all …]
|
| H A D | Sanitizers.cpp | 78 case llvm::AsanDtorKind::Invalid: in AsanDtorKindToString() 88 .Default(llvm::AsanDtorKind::Invalid); in AsanDtorKindFromString() 100 case llvm::AsanDetectStackUseAfterReturnMode::Invalid: in AsanDetectStackUseAfterReturnModeToString() 112 .Default(llvm::AsanDetectStackUseAfterReturnMode::Invalid); in AsanDetectStackUseAfterReturnModeFromString()
|
| /freebsd-14.2/contrib/bmake/unit-tests/ |
| H A D | varmod-gmtime.exp | 1 make: "varmod-gmtime.mk" line 61: Invalid time value "-1" 3 make: "varmod-gmtime.mk" line 72: Invalid time value " 1" 5 make: "varmod-gmtime.mk" line 120: Invalid time value "10000000000000000000000000000000" 7 make: "varmod-gmtime.mk" line 133: Invalid time value "error" 9 make: "varmod-gmtime.mk" line 144: Invalid time value "100000S,1970,bad,"
|
| H A D | varmod-localtime.exp | 1 make: "varmod-localtime.mk" line 61: Invalid time value "-1" 3 make: "varmod-localtime.mk" line 72: Invalid time value " 1" 5 make: "varmod-localtime.mk" line 120: Invalid time value "10000000000000000000000000000000" 7 make: "varmod-localtime.mk" line 133: Invalid time value "error" 9 make: "varmod-localtime.mk" line 144: Invalid time value "100000S,1970,bad,"
|
| /freebsd-14.2/crypto/heimdal/lib/kadm5/ |
| H A D | kadm5_err.et | 25 error_code BAD_MASK, "Invalid field mask for operation" 26 error_code BAD_CLASS, "Invalid number of character classes" 27 error_code BAD_LENGTH, "Invalid password length" 28 error_code BAD_POLICY, "Invalid policy name" 29 error_code BAD_PRINCIPAL, "Invalid principal name." 30 error_code BAD_AUX_ATTR, "Invalid auxillary attributes" 31 error_code BAD_HISTORY, "Invalid password history count" 53 error_code BAD_CLIENT_PARAMS, "Invalid configuration parameter for remote KADM5 client" 54 error_code BAD_SERVER_PARAMS, "Invalid configuration parameter for local KADM5 client." 57 error_code BAD_TL_TYPE, "Invalid tagged data list element type"
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | FloatingPointMode.h | 47 Invalid = -1 ///< Denotes invalid value. enumerator 74 Invalid = -1, enumerator 91 DenormalModeKind Output = DenormalModeKind::Invalid; 96 DenormalModeKind Input = DenormalModeKind::Invalid; 106 return DenormalMode(DenormalModeKind::Invalid, DenormalModeKind::Invalid); in getInvalid() 145 return Output != DenormalModeKind::Invalid && in isValid() 146 Input != DenormalModeKind::Invalid; in isValid() 197 .Default(DenormalMode::Invalid); in parseDenormalFPAttributeComponent()
|
| /freebsd-14.2/contrib/llvm-project/lld/Common/ |
| H A D | DriverDispatcher.cpp | 37 .Default(Invalid); in getFlavor() 93 return Invalid; in parseProgname() 102 return Invalid; in parseFlavorWithoutMinGW() 105 if (f == Invalid) { in parseFlavorWithoutMinGW() 107 return Invalid; in parseFlavorWithoutMinGW() 118 if (f == Invalid) { in parseFlavorWithoutMinGW() 122 return Invalid; in parseFlavorWithoutMinGW() 132 return Invalid; in parseFlavor()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenACC.cpp | 28 Invalid = static_cast<int>(OpenACCDirectiveKind::Invalid), enumerator 41 return OpenACCDirectiveKindEx::Invalid; in getOpenACCDirectiveKind() 88 return OpenACCClauseKind::Invalid; in getOpenACCClauseKind() 130 .Default(OpenACCClauseKind::Invalid); in getOpenACCClauseKind() 137 return OpenACCAtomicKind::Invalid; in getOpenACCAtomicKind() 144 .Default(OpenACCAtomicKind::Invalid); in getOpenACCAtomicKind() 276 case OpenACCDirectiveKind::Invalid: in isOpenACCDirectiveKind() 343 return OpenACCDirectiveKind::Invalid; in ParseOpenACCEnterExitDataDirective() 357 return OpenACCDirectiveKind::Invalid; in ParseOpenACCEnterExitDataDirective() 396 return OpenACCDirectiveKind::Invalid; in ParseOpenACCDirectiveKind() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Ownership.h | 155 bool Invalid = false; 158 ActionResult(bool Invalid = false) : Val(PtrTy()), Invalid(Invalid) {} 166 bool isInvalid() const { return Invalid; } 167 bool isUnset() const { return !Invalid && !Val; } 175 Invalid = false; 190 ActionResult(bool Invalid = false) 191 : Value(Invalid ? InvalidValue : UnsetValue) {}
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | RawCommentList.cpp | 74 bool Invalid = false; in commentsStartOnSameColumn() local 75 unsigned C1 = SM.getPresumedColumnNumber(L1, &Invalid); in commentsStartOnSameColumn() 76 if (!Invalid) { in commentsStartOnSameColumn() 77 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid); in commentsStartOnSameColumn() 78 return !Invalid && (C1 == C2); in commentsStartOnSameColumn() 132 bool Invalid = false; in RawComment() local 134 SourceMgr.getBufferData(BeginFileID, &Invalid).data(); in RawComment() 170 bool Invalid = false; in getRawTextSlow() local 173 if (Invalid) in getRawTextSlow() 236 bool Invalid = false; in onlyWhitespaceBetween() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | OpenACCKinds.h | 65 Invalid, enumerator 131 case OpenACCDirectiveKind::Invalid: 142 Invalid, enumerator 243 Invalid, enumerator 363 case OpenACCClauseKind::Invalid: 374 Invalid, enumerator 397 Invalid, enumerator
|
| H A D | HLSLRuntime.h | 28 if (Pipeline > (uint32_t)ShaderStage::Invalid) in getStageFromEnvironment() 29 return ShaderStage::Invalid; in getStageFromEnvironment() 55 ShaderStage::Invalid, 59 ShaderStage::Invalid,
|
| H A D | SourceManager.h | 1413 bool *Invalid = nullptr) const; 1422 bool *Invalid = nullptr) const; 1424 bool *Invalid = nullptr) const; 1746 return loadSLocEntry(Index, Invalid); 1752 if (Invalid) *Invalid = true; 1755 return getSLocEntryByID(FID.ID, Invalid); 1826 bool Invalid = false; in getSLocEntryOrNull() local 1827 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid); in getSLocEntryOrNull() 1828 return Invalid ? nullptr : &Entry; in getSLocEntryOrNull() 1844 return getLoadedSLocEntryByID(ID, Invalid); [all …]
|
| H A D | SourceLocation.h | 398 unsigned getExpansionLineNumber(bool *Invalid = nullptr) const; 399 unsigned getExpansionColumnNumber(bool *Invalid = nullptr) const; 407 unsigned getSpellingLineNumber(bool *Invalid = nullptr) const; 408 unsigned getSpellingColumnNumber(bool *Invalid = nullptr) const; 410 const char *getCharacterData(bool *Invalid = nullptr) const; 412 unsigned getLineNumber(bool *Invalid = nullptr) const; 413 unsigned getColumnNumber(bool *Invalid = nullptr) const; 420 StringRef getBufferData(bool *Invalid = nullptr) const;
|
| /freebsd-14.2/crypto/heimdal/lib/ntlm/ |
| H A D | ntlm_err.et | 19 error_code INVALID_APOP, "Invalid APOP response" 20 error_code INVALID_CRAM_MD5, "Invalid CRAM-MD5 response" 21 error_code INVALID_DIGEST_MD5, "Invalid DIGEST-MD5 response" 22 error_code INVALID_DIGEST_MD5_RSPAUTH, "Invalid DIGEST-MD5 rspauth"
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/HLSL/ |
| H A D | HLSLResource.h | 28 Invalid, enumerator 29 NumClasses = Invalid, 35 Invalid = 0, enumerator 60 Invalid = 0, enumerator
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | EvaluationResult.h | 38 Invalid, // Result is invalid. enumerator 53 assert(Kind == Valid || Kind == Invalid); in EvaluationResult() 76 Kind = Invalid; in setInvalid() 87 bool isInvalid() const { return Kind == Invalid; } in isInvalid()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 113 case ValueType::Invalid: in GetValueAddressType() 159 case ValueType::Invalid: in AppendDataToHostBuffer() 199 case ContextType::Invalid: in ValueOf() 221 case ContextType::Invalid: in GetValueByteSize() 242 case ContextType::Invalid: in GetCompilerType() 279 case ContextType::Invalid: in GetValueDefaultFormat() 294 case ValueType::Invalid: in GetData() 331 case ValueType::Invalid: in GetValueAsData() 581 case ValueType::Invalid: in ResolveValue() 635 case ValueType::Invalid: in GetValueTypeAsCString() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxxVariant.cpp | 69 enum class LibcxxVariantIndexValidity { Valid, Invalid, NPos }; enumerator 89 return LibcxxVariantIndexValidity::Invalid; in LibcxxVariantGetIndexValidity() 102 return LibcxxVariantIndexValidity::Invalid; in LibcxxVariantGetIndexValidity() 158 if (validity == LibcxxVariantIndexValidity::Invalid) in LibcxxVariantSummaryProvider() 225 if (validity == LibcxxVariantIndexValidity::Invalid) in Update()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Edit/ |
| H A D | EditedSource.cpp | 178 bool Invalid = false; in commitInsertFromRange() local 179 StringRef text = getSourceText(BeginOffs, B, Invalid); in commitInsertFromRange() 180 if (Invalid) in commitInsertFromRange() 189 bool Invalid = false; in commitInsertFromRange() local 190 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid); in commitInsertFromRange() 191 if (Invalid) in commitInsertFromRange() 345 bool Invalid = false; in adjustRemoval() local 346 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid); in adjustRemoval() 347 if (Invalid) in adjustRemoval() 455 bool &Invalid) { in getSourceText() argument [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | DynamicLibrary.h | 37 static char Invalid; variable 43 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} in Data() 49 bool isValid() const { return Data != &Invalid; } in isValid()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | SourceCode.cpp | 180 bool Invalid = false; in getEntityEndLoc() local 182 llvm::StringRef File = SM.getBufferData(FileOffset.first, &Invalid); in getEntityEndLoc() 183 assert(!Invalid && "Cannot get file/offset"); in getEntityEndLoc() 333 bool Invalid = false; in atOrBeforeSeparation() local 335 SM.getCharacterData(Loc.getLocWithOffset(-1), &Invalid); in atOrBeforeSeparation() 336 assert(!Invalid && in atOrBeforeSeparation() 417 bool Invalid; in getAssociatedRange() local 419 SM.getBufferData(SM.getFileID(Range.getBegin()), &Invalid); in getAssociatedRange() 420 if (Invalid) in getAssociatedRange()
|
| /freebsd-14.2/crypto/heimdal/lib/wind/ |
| H A D | wind_err.et | 17 error_code INVALID_UTF8, "Invalid UTF-8 combination in string" 18 error_code INVALID_UTF16, "Invalid UTF-16 combination in string" 19 error_code INVALID_UTF32, "Invalid UTF-32 combination in string"
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | MacroArgs.cpp | 237 bool Invalid = false; in StringifyArgument() local 238 std::string TokStr = PP.getSpelling(Tok, &Invalid); in StringifyArgument() 239 if (!Invalid) { in StringifyArgument() 251 bool Invalid = false; in StringifyArgument() local 252 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid); in StringifyArgument() 254 if (!Invalid) { in StringifyArgument()
|