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

12

/external/swiftshader/third_party/LLVM/lib/Support/
H A DErrorHandling.cpp52 void llvm::report_fatal_error(const char *Reason) { argument
53 report_fatal_error(Twine(Reason));
56 void llvm::report_fatal_error(const std::string &Reason) { argument
57 report_fatal_error(Twine(Reason));
60 void llvm::report_fatal_error(StringRef Reason) { argument
61 report_fatal_error(Twine(Reason));
64 void llvm::report_fatal_error(const Twine &Reason) { argument
66 ErrorHandler(ErrorHandlerUserData, Reason.str());
73 OS << "LLVM ERROR: " << Reason << "\n"; local
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
H A DSoapFault12.java44 public Node Reason; field in class:SoapFault12
65 this.faultstring = Reason.getElement(SoapEnvelope.ENV2003, "Text").getText(0);
79 } else if (name.equals("Reason")) {
80 this.Reason = new Node();
81 this.Reason.parse(parser);
111 xw.startTag(SoapEnvelope.ENV2003, "Reason");
112 this.Reason.write(xw);
113 xw.endTag(SoapEnvelope.ENV2003, "Reason");
138 return Reason.getElement(SoapEnvelope.ENV2003, "Text").getText(0);
143 String reason = Reason
[all...]
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogTimeoutEvent.java34 public enum Reason {AckNotReceived, AckNotSent,ReInviteTimeout}; enum in class:DialogTimeoutEvent
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
66 public Reason getReason() {
72 private Reason m_reason = null;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DReason.java27 * Reason.java
28 * Reason = "Reason" HCOLON reason-value *(COMMA reason-value)
46 * Definition of the Reason SIP Header.
54 public class Reason class in inherits:ParametersHeader,javax.sip.header.ReasonHeader
123 /** Creates a new instance of Reason */
124 public Reason() { method in class:Reason
152 * $Log: Reason.java,v $
/external/llvm/lib/Support/
H A DErrorHandling.cpp62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { argument
63 report_fatal_error(Twine(Reason), GenCrashDiag);
66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { argument
67 report_fatal_error(Twine(Reason), GenCrashDiag);
70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { argument
71 report_fatal_error(Twine(Reason), GenCrashDiag);
74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { argument
86 handler(handlerData, Reason.str(), GenCrashDiag);
93 OS << "LLVM ERROR: " << Reason << "\n"; local
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DErrorHandling.cpp62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { argument
63 report_fatal_error(Twine(Reason), GenCrashDiag);
66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { argument
67 report_fatal_error(Twine(Reason), GenCrashDiag);
70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { argument
71 report_fatal_error(Twine(Reason), GenCrashDiag);
74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { argument
86 handler(handlerData, Reason.str(), GenCrashDiag);
93 OS << "LLVM ERROR: " << Reason << "\n"; local
/external/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp46 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
115 FileChangeReason Reason,
125 if (Reason == PPCallbacks::EnterFile) {
127 } else if (Reason == PPCallbacks::ExitFile) {
161 if (ShowHeader && Reason == PPCallbacks::EnterFile &&
114 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID PrevFID) argument
H A DDependencyFile.cpp40 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
43 if (Reason != PPCallbacks::EnterFile)
185 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
272 FileChangeReason Reason,
275 if (Reason != PPCallbacks::EnterFile)
271 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind FileType, FileID PrevFID) argument
H A DPrintPreprocessedOutput.cpp123 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
249 FileChangeReason Reason,
262 if (Reason == PPCallbacks::EnterFile) {
266 } else if (Reason == PPCallbacks::SystemHeaderPragma) {
295 if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) {
300 switch (Reason) {
248 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID PrevFID) argument
/external/swiftshader/third_party/subzero/src/
H A DIceCompileServer.cpp119 void reportFatalErrorThenExitSuccess(void *UserData, const std::string &Reason, argument
131 OS << "LLVM ERROR: " << Reason << "\n"; local
H A DIceBrowserCompileServer.cpp186 void fatalErrorHandler(void *UserData, const std::string &Reason, argument
191 Server->setFatalError(Reason);
266 void BrowserCompileServer::setFatalError(const std::string &Reason) { argument
268 Ctx->getStrError() << Reason;
H A DIceRegAlloc.cpp52 const char *Reason) {
60 Str << "Disabling Overlap due to " << Reason << " " << *Var
51 dumpDisableOverlap(const Cfg *Func, const Variable *Var, const char *Reason) argument
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkAllocationCallbackUtil.hpp186 enum Reason enum in struct:vk::AllocationCallbackViolation
202 Reason reason;
208 AllocationCallbackViolation (const AllocationCallbackRecord& record_, Reason reason_)
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
H A DInliner.java152 public enum Reason { enum in class:Inliner
163 public final Reason reason;
165 public InlineAction(DexEncodedMethod target, Invoke invoke, Reason reason) {
172 return reason != Reason.SIMPLE;
275 boolean forceInline = result.reason == Reason.FORCE;
/external/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp61 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
142 FileChangeReason Reason,
145 if (Reason != EnterFile)
141 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID) argument
/external/clang/include/clang/Lex/
H A DPPCallbacks.h49 /// \param PrevFID the file that was exited if \p Reason is ExitFile.
50 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, argument
333 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
336 First->FileChanged(Loc, Reason, FileType, PrevFID);
337 Second->FileChanged(Loc, Reason, FileType, PrevFID);
/external/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp294 const char *Reason = StatusToString(Status); local
295 DEBUG(dbgs() << " Not promote: " << Reason << "\n");
300 Twine(" with count of ") + Twine(Count) + ": " + Reason);
/external/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h37 SIScheduleCandReason Reason; member in struct:llvm::SISchedulerCandidate
43 : Reason(NoCand), RepeatReasonSet(0) {}
179 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
181 Reason = Best.Reason;
370 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
372 Reason = Best.Reason;
H A DSIMachineScheduler.cpp128 static const char *getReasonStr(SIScheduleCandReason Reason) { argument
129 switch (Reason) {
145 SIScheduleCandReason Reason) {
147 TryCand.Reason = Reason;
151 if (Cand.Reason > Reason)
152 Cand.Reason = Reason;
155 Cand.setRepeat(Reason);
142 tryLess(int TryVal, int CandVal, SISchedulerCandidate &TryCand, SISchedulerCandidate &Cand, SIScheduleCandReason Reason) argument
159 tryGreater(int TryVal, int CandVal, SISchedulerCandidate &TryCand, SISchedulerCandidate &Cand, SIScheduleCandReason Reason) argument
[all...]
/external/clang/lib/Lex/
H A DPPDirectives.cpp1341 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile; local
1343 Reason = PPCallbacks::EnterFile;
1345 Reason = PPCallbacks::ExitFile;
1352 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
/external/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h770 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 CandReason Reason; member in struct:llvm::GenericSchedulerBase::SchedCandidate
836 Reason = NoCand;
846 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
848 Reason = Best.Reason;
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1999 /// target, fill in Reason and return false. Otherwise, return true. This is
2003 bool TreePatternNode::canPatternMatch(std::string &Reason, argument
2008 if (!getChild(i)->canPatternMatch(Reason, CDP))
2032 Reason="Immediate value must be on the RHS of commutative operators!";
3216 std::string Reason; local
3217 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this)) {
3219 Twine("Pattern can never match: ") + Reason);
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1661 /// target, fill in Reason and return false. Otherwise, return true. This is
1665 bool TreePatternNode::canPatternMatch(std::string &Reason, argument
1670 if (!getChild(i)->canPatternMatch(Reason, CDP))
1691 Reason="Immediate value must be on the RHS of commutative operators!";
2777 std::string Reason; local
2778 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this))
2779 Pattern->error("Pattern can never match: " + Reason);
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2392 GenericSchedulerBase::CandReason Reason) {
2393 switch (Reason) {
2419 switch (Cand.Reason) {
2450 dbgs() << " Cand SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
2472 GenericSchedulerBase::CandReason Reason) {
2474 TryCand.Reason = Reason;
2478 if (Cand.Reason > Reason)
2479 Cand.Reason
2391 getReasonStr( GenericSchedulerBase::CandReason Reason) argument
2469 tryLess(int TryVal, int CandVal, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
2485 tryGreater(int TryVal, int CandVal, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
2526 tracePick(GenericSchedulerBase::CandReason Reason, bool IsTop) argument
2677 tryPressure(const PressureChange &TryP, const PressureChange &CandP, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason, const TargetRegisterInfo *TRI, const MachineFunction &MF) argument
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c44 static void llvm_fatal_error_trampoline(const char *Reason) { argument
45 callback(llvm_fatal_error_handler, caml_copy_string(Reason));

Completed in 2172 milliseconds

12