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

/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/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp43 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
81 FileChangeReason Reason,
91 if (Reason == PPCallbacks::EnterFile) {
93 } else if (Reason == PPCallbacks::ExitFile) {
114 if (ShowHeader && Reason == PPCallbacks::EnterFile) {
80 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID PrevFID) argument
H A DDependencyFile.cpp39 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
42 if (Reason != PPCallbacks::EnterFile)
167 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
240 FileChangeReason Reason,
243 if (Reason != PPCallbacks::EnterFile)
239 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind FileType, FileID PrevFID) argument
H A DPrintPreprocessedOutput.cpp124 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
250 FileChangeReason Reason,
263 if (Reason == PPCallbacks::EnterFile) {
267 } else if (Reason == PPCallbacks::SystemHeaderPragma) {
296 if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) {
301 switch (Reason) {
249 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID PrevFID) argument
/external/llvm/lib/Support/
H A DErrorHandling.cpp61 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { argument
62 report_fatal_error(Twine(Reason), GenCrashDiag);
65 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { argument
66 report_fatal_error(Twine(Reason), GenCrashDiag);
69 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { argument
70 report_fatal_error(Twine(Reason), GenCrashDiag);
73 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { argument
85 handler(handlerData, Reason.str(), GenCrashDiag);
92 OS << "LLVM ERROR: " << Reason << "\n"; local
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfSignatureDictionary_autogen.cpp107 SkString SkPdfSignatureDictionary::Reason(SkPdfNativeDoc* doc) { function in class:SkPdfSignatureDictionary
108 SkPdfNativeObject* ret = get("Reason", "");
116 return get("Reason", "") != NULL;
/external/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp61 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
141 FileChangeReason Reason,
144 if (Reason != EnterFile)
140 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind NewFileType, FileID) argument
/external/clang/include/clang/Lex/
H A DPPCallbacks.h48 /// \param PrevFID the file that was exited if \p Reason is ExitFile.
49 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, argument
332 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
335 First->FileChanged(Loc, Reason, FileType, PrevFID);
336 Second->FileChanged(Loc, Reason, FileType, PrevFID);
/external/clang/lib/Lex/
H A DPPDirectives.cpp1202 PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile; local
1204 Reason = PPCallbacks::EnterFile;
1206 Reason = PPCallbacks::ExitFile;
1213 Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
/external/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h752 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
792 CandReason Reason; member in struct:llvm::GenericSchedulerBase::SchedCandidate
804 : Policy(policy), SU(nullptr), Reason(NoCand), RepeatReasonSet(0) {}
810 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
812 Reason = Best.Reason;
/external/v8/src/
H A Ddeoptimizer.h104 struct Reason { struct in class:v8::internal::Deoptimizer
105 Reason(int r, const char* m, const char* d) function in struct:v8::internal::Deoptimizer::Reason
108 bool operator==(const Reason& other) const {
114 bool operator!=(const Reason& other) const { return !(*this == other); }
122 inline JumpTableEntry(Address entry, const Reason& the_reason,
138 Reason reason;
H A Dobjects.h8234 enum Reason { enum in class:v8::internal::AllocationSite
8240 Reason reason,
8273 inline DependentCode::DependencyGroup ToDependencyGroup(Reason reason);
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2222 GenericSchedulerBase::CandReason Reason) {
2223 switch (Reason) {
2248 switch (Cand.Reason) {
2279 dbgs() << " SU(" << Cand.SU->NodeNum << ") " << getReasonStr(Cand.Reason);
2301 GenericSchedulerBase::CandReason Reason) {
2303 TryCand.Reason = Reason;
2307 if (Cand.Reason > Reason)
2308 Cand.Reason
2221 getReasonStr( GenericSchedulerBase::CandReason Reason) argument
2298 tryLess(int TryVal, int CandVal, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
2315 tryGreater(int TryVal, int CandVal, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
2497 tryPressure(const PressureChange &TryP, const PressureChange &CandP, GenericSchedulerBase::SchedCandidate &TryCand, GenericSchedulerBase::SchedCandidate &Cand, GenericSchedulerBase::CandReason Reason) argument
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1954 /// target, fill in Reason and return false. Otherwise, return true. This is
1958 bool TreePatternNode::canPatternMatch(std::string &Reason, argument
1963 if (!getChild(i)->canPatternMatch(Reason, CDP))
1987 Reason="Immediate value must be on the RHS of commutative operators!";
3167 std::string Reason; local
3168 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this)) {
3170 Twine("Pattern can never match: ") + Reason);
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp910 } Reason = PDSA_Implicit; local
915 Reason = PDSA_LoopIterVarPrivate;
917 Reason = PDSA_LoopIterVarLastprivate;
919 Reason = PDSA_LoopIterVarLinear;
921 Reason = PDSA_TaskVarFirstprivate;
924 Reason = PDSA_StaticLocalVarShared;
926 Reason = PDSA_StaticMemberShared;
928 Reason = PDSA_GlobalVarShared;
930 Reason = PDSA_ConstVarShared;
933 Reason
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c43 static void llvm_fatal_error_trampoline(const char *Reason) { argument
44 callback(llvm_fatal_error_handler, caml_copy_string(Reason));

Completed in 615 milliseconds