Home
last modified time | relevance | path

Searched refs:Invalid (Results 1 – 25 of 204) sorted by relevance

123456789

/NextBSD/contrib/llvm/tools/clang/lib/Basic/
HDSourceManager.cpp87 bool *Invalid) const { in getBuffer()
91 if (Invalid) in getBuffer()
92 *Invalid = isBufferInvalid(); in getBuffer()
129 if (Invalid) *Invalid = true; in getBuffer()
146 if (Invalid) *Invalid = true; in getBuffer()
173 if (Invalid) in getBuffer()
174 *Invalid = isBufferInvalid(); in getBuffer()
295 bool Invalid = false; in AddLineNote() local
296 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); in AddLineNote()
297 if (!Entry.isFile() || Invalid) in AddLineNote()
[all …]
HDSourceLocation.cpp96 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const { in getExpansionLineNumber()
98 return SrcMgr->getExpansionLineNumber(*this, Invalid); in getExpansionLineNumber()
101 unsigned FullSourceLoc::getExpansionColumnNumber(bool *Invalid) const { in getExpansionColumnNumber()
103 return SrcMgr->getExpansionColumnNumber(*this, Invalid); in getExpansionColumnNumber()
106 unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const { in getSpellingLineNumber()
108 return SrcMgr->getSpellingLineNumber(*this, Invalid); in getSpellingLineNumber()
111 unsigned FullSourceLoc::getSpellingColumnNumber(bool *Invalid) const { in getSpellingColumnNumber()
113 return SrcMgr->getSpellingColumnNumber(*this, Invalid); in getSpellingColumnNumber()
130 const char *FullSourceLoc::getCharacterData(bool *Invalid) const { in getCharacterData()
132 return SrcMgr->getCharacterData(*this, Invalid); in getCharacterData()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDSourceManager.h174 bool *Invalid = nullptr) const;
808 bool *Invalid = nullptr);
863 bool *Invalid = nullptr) const {
867 if (Invalid)
868 *Invalid = true;
874 Invalid);
877 llvm::MemoryBuffer *getBuffer(FileID FID, bool *Invalid = nullptr) const {
881 if (Invalid)
882 *Invalid = true;
889 Invalid);
[all …]
HDSourceLocation.h287 unsigned getExpansionLineNumber(bool *Invalid = nullptr) const;
288 unsigned getExpansionColumnNumber(bool *Invalid = nullptr) const;
290 unsigned getSpellingLineNumber(bool *Invalid = nullptr) const;
291 unsigned getSpellingColumnNumber(bool *Invalid = nullptr) const;
293 const char *getCharacterData(bool *Invalid = nullptr) const;
298 StringRef getBufferData(bool *Invalid = nullptr) const;
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDOwnership.h147 bool Invalid;
150 ActionResult(bool Invalid = false)
151 : Val(PtrTy()), Invalid(Invalid) {}
152 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
153 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
159 bool isInvalid() const { return Invalid; }
160 bool isUsable() const { return !Invalid && Val; }
161 bool isUnset() const { return !Invalid && !Val; }
170 Invalid = false;
184 ActionResult(bool Invalid = false)
[all …]
HDAttributeList.h105 mutable unsigned Invalid : 1; variable
223 SyntaxUsed(syntaxUsed), Invalid(false), UsedAsTypeAttr(false), in AttributeList()
241 Invalid(false), UsedAsTypeAttr(false), IsAvailability(true), in AttributeList()
262 Invalid(false), UsedAsTypeAttr(false), IsAvailability(false), in AttributeList()
280 Invalid(false), UsedAsTypeAttr(false), IsAvailability(false), in AttributeList()
298 Invalid(false), UsedAsTypeAttr(false), IsAvailability(false), in AttributeList()
312 Invalid(false), UsedAsTypeAttr(false), IsAvailability(false), in AttributeList()
363 bool isInvalid() const { return Invalid; } in isInvalid()
364 void setInvalid(bool b = true) const { Invalid = b; }
/NextBSD/crypto/heimdal/lib/kadm5/
HDkadm5_err.et25 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"
/NextBSD/crypto/heimdal/lib/ntlm/
HDntlm_err.et19 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"
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
HDInclusionRewriter.cpp231 bool Invalid; in detectMainFileEOL() local
232 const MemoryBuffer &FromFile = *SM.getBuffer(SM.getMainFileID(), &Invalid); in detectMainFileEOL()
233 assert(!Invalid); in detectMainFileEOL()
234 if (Invalid) in detectMainFileEOL()
357 bool Invalid = false; in HandleHasInclude() local
358 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid); in HandleHasInclude()
359 if (Invalid) in HandleHasInclude()
373 bool Invalid = false; in HandleHasInclude() local
374 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid); in HandleHasInclude()
375 if (Invalid) in HandleHasInclude()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Edit/
HDEditedSource.cpp120 bool Invalid = false; in commitInsertFromRange() local
121 StringRef text = getSourceText(BeginOffs, B, Invalid); in commitInsertFromRange()
122 if (Invalid) in commitInsertFromRange()
131 bool Invalid = false; in commitInsertFromRange() local
132 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid); in commitInsertFromRange()
133 if (Invalid) in commitInsertFromRange()
275 bool Invalid = false; in adjustRemoval() local
276 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid); in adjustRemoval()
277 if (Invalid) in adjustRemoval()
381 bool &Invalid) { in getSourceText() argument
[all …]
/NextBSD/contrib/llvm/include/llvm/Support/
HDDynamicLibrary.h41 static char Invalid; variable
47 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} in Data()
50 bool isValid() const { return Data != &Invalid; } in isValid()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDRawCommentList.cpp109 bool Invalid = false; in getRawTextSlow() local
111 &Invalid).data(); in getRawTextSlow()
112 if (Invalid) in getRawTextSlow()
175 bool Invalid = false; in onlyWhitespaceBetween() local
176 const char *Buffer = SM.getBufferData(Loc1Info.first, &Invalid).data(); in onlyWhitespaceBetween()
177 if (Invalid) in onlyWhitespaceBetween()
/NextBSD/contrib/llvm/tools/clang/lib/Lex/
HDMacroArgs.cpp223 bool Invalid = false; in StringifyArgument() local
224 std::string TokStr = PP.getSpelling(Tok, &Invalid); in StringifyArgument()
225 if (!Invalid) { in StringifyArgument()
237 bool Invalid = false; in StringifyArgument() local
238 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid); in StringifyArgument()
240 if (!Invalid) { in StringifyArgument()
HDLexer.cpp327 const LangOptions &LangOpts, bool *Invalid) { in getSpelling() argument
333 if (Invalid) in getSpelling()
334 *Invalid = CharDataInvalid; in getSpelling()
360 const LangOptions &LangOpts, bool *Invalid) { in getSpelling() argument
383 if (Invalid) in getSpelling()
384 *Invalid = CharDataInvalid; in getSpelling()
431 bool Invalid = false; in getRawToken() local
432 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid); in getRawToken()
433 if (Invalid) in getRawToken()
457 bool Invalid = false; in getBeginningOfFileToken() local
[all …]
HDTokenLexer.cpp551 bool Invalid = false; in PasteTokens() local
552 unsigned LHSLen = PP.getSpelling(Tok, BufPtr, &Invalid); in PasteTokens()
555 if (Invalid) in PasteTokens()
559 unsigned RHSLen = PP.getSpelling(RHS, BufPtr, &Invalid); in PasteTokens()
560 if (Invalid) in PasteTokens()
601 bool Invalid = false; in PasteTokens() local
603 = SourceMgr.getBufferData(LocFileID, &Invalid).data(); in PasteTokens()
604 if (Invalid) in PasteTokens()
/NextBSD/crypto/heimdal/lib/wind/
HDwind_err.et17 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"
/NextBSD/crypto/heimdal/lib/krb5/
HDkrb5_err.et53 error_code ERR_MSG_TYPE, "Invalid message type"
56 error_code ERR_ILL_CR_TKT, "Invalid cross-realm ticket"
78 error_code INVALID_SIG, "Invalid signature"
112 error_code INVALID_HASH_ALG, "Invalid OTP digest algorithm"
113 error_code INVALID_ITERATION_COUNT, "Invalid OTP iteration count"
121 error_code KRB5_LIBOS_BADLOCKFLAG, "Invalid flag for file lock mode"
126 error_code KRB5_PARSE_ILLCHAR, "Invalid character in component name"
133 error_code KRB5_BADMSGTYPE, "Invalid message type specified for encoding"
217 error_code KRB5_INVALID_FLAGS, "Invalid KDC option combination (library internal error)"
259 error_code KRB5_SAM_INVALID_ETYPE, "Invalid encryption type in SAM challenge"
[all …]
/NextBSD/contrib/tcsh/nls/C/
HDset2313 10 Invalid warp
31 28 Invalid system type
34 31 Invalid argument
/NextBSD/contrib/llvm/lib/Target/AArch64/Utils/
HDAArch64BaseInfo.h211 Invalid enumerator
328 Invalid = -1, // Op0 Op1 CRn CRm Op2 enumerator
352 Invalid = -1, enumerator
376 Invalid = -1, // Op1 CRn CRm Op2 enumerator
397 Invalid = -1, // Op1 CRn CRm Op2 enumerator
417 Invalid = -1, enumerator
429 Invalid = -1, enumerator
459 Invalid = -1, enumerator
478 Invalid = -1, enumerator
499 Invalid = -1, enumerator
[all …]
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDSDNodeDbgValue.h53 bool Invalid = false; variable
118 void setIsInvalidated() { Invalid = true; } in setIsInvalidated()
119 bool isInvalidated() const { return Invalid; } in isInvalidated()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseAST.cpp62 bool Invalid = false; in print() local
65 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid); in print()
66 if (Invalid) { in print()
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDScanfFormatString.cpp225 return ArgType::Invalid(); in getArgType()
261 return ArgType::Invalid(); in getArgType()
300 return ArgType::Invalid(); in getArgType()
320 return ArgType::Invalid(); in getArgType()
340 return ArgType::Invalid(); in getArgType()
356 return ArgType::Invalid(); in getArgType()
392 return ArgType::Invalid(); in getArgType()
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDMemoryDependenceAnalysis.h43 Invalid = 0, enumerator
101 MemDepResult() : Value(nullptr, Invalid) {} in MemDepResult()
181 bool isDirty() const { return Value.getInt() == Invalid; } in isDirty()
184 return MemDepResult(PairTy(Inst, Invalid)); in getDirty()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDFormatEntity.h33 Invalid, enumerator
111 Entry (Type t = Type::Invalid,
150 type = Type::Invalid; in Clear()
/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDNSIndexPath.cpp131 if (m_impl.m_mode == Mode::Invalid) in MightHaveChildren()
158 Invalid enumerator
317 m_mode = Mode::Invalid; in Clear()

123456789