/external/chromium_org/rlz/win/dll/ |
dll_main.cc | 12 BOOL APIENTRY DllMain(HANDLE module, DWORD reason, LPVOID reserved) {
|
/external/chromium_org/tools/gyp/test/win/large-pdb/ |
dllmain.cc | 7 BOOL WINAPI DllMain(HINSTANCE hinstance, DWORD reason, LPVOID reserved) {
|
/external/clang/test/CodeGenCXX/ |
member-call-parens.cpp | 11 // FIXME: Sema doesn't like this for some reason...
|
/external/icu4c/samples/ucnv/ |
flagcb.c | 35 UConverterCallbackReason reason, 38 /* First step - based on the reason code, take action */ 40 if(reason == UCNV_UNASSIGNED) { /* whatever set should be trapped here */ 44 if(reason == UCNV_CLONE) { 94 length, codePoint, reason, err); 113 reason != UCNV_CLONE) { 119 reason, 124 if(reason == UCNV_CLOSE) { 177 UConverterCallbackReason reason, 184 printf("debugCB_fromU: Context %p:%d called, reason %d on cnv %p [err=%s]\n", ctx, ctx->serial, reason, fromUArgs->converter, u_errorName(*err)) [all...] |
/external/llvm/test/Assembler/ |
2003-05-21-EmptyStructTest.ll | 4 ; can. For some reason we never handled them in the parser. Weird.
|
/external/nist-sip/java/javax/sip/header/ |
ReasonHeader.java | 7 String NAME = "Reason";
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
CallForwardInfo.java | 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo 37 + " reason: " + reason
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLHandshakeException.java | 31 public SSLHandshakeException(String reason) { 32 super(reason); 47 public SSLHandshakeException(String reason, Throwable cause) { 48 super(reason, cause);
|
SSLException.java | 29 * Creates a new {@code SSLException} with the specified reason. 31 * @param reason 32 * the reason for the exception. 34 public SSLException(String reason) { 35 super(reason);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
AutocompleteErrorEvent.h | 34 String reason; member in struct:WebCore::AutocompleteErrorEventInit 44 static PassRefPtr<AutocompleteErrorEvent> create(const String& reason) 46 return adoptRef(new AutocompleteErrorEvent(reason)); 54 const String& reason() const { return m_reason; } function in class:WebCore::AutocompleteErrorEvent 64 AutocompleteErrorEvent(const String& reason) 66 , m_reason(reason) 73 , m_reason(initializer.reason)
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
CloseEvent.h | 48 String reason; member in struct:WebCore::CloseEventInit 58 static PassRefPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason) 60 return adoptRef(new CloseEvent(wasClean, code, reason)); 70 String reason() const { return m_reason; } function in class:WebCore::CloseEvent 84 CloseEvent(bool wasClean, int code, const String& reason) 88 , m_reason(reason) 97 , m_reason(initializer.reason)
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
MUCOwner.java | 113 private String reason; field in class:MUCOwner.Item 138 * Returns the reason for the item child. The reason is optional and could be used to 139 * explain the reason why a user (occupant) was kicked or banned. 141 * @return the reason for the item child. 144 return reason; 201 * Sets the reason for the item child. The reason is optional and could be used to 202 * explain the reason why a user (occupant) was kicked or banned. 204 * @param reason the reason why a user (occupant) was kicked or banned 282 private String reason; field in class:MUCOwner.Destroy [all...] |
DelayInformation.java | 33 * information such as the JID of the entity that originally sent the packet as well as the reason 59 private String reason; field in class:DelayInformation 102 * Returns a natural-language description of the reason for the delay or <tt>null</tt> if 105 * @return a natural-language description of the reason for the delay or <tt>null</tt>. 108 return reason; 112 * Sets a natural-language description of the reason for the delay or <tt>null</tt> if 115 * @param reason a natural-language description of the reason for the delay or <tt>null</tt>. 117 public void setReason(String reason) { 118 this.reason = reason [all...] |
MUCUser.java | 125 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for 186 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for 203 private String reason; field in class:MUCUser.Invite 223 return reason; 248 * @param reason the message explaining the invitation. 250 public void setReason(String reason) { 251 this.reason = reason; 274 buf.append("<reason>").append(getReason()).append("</reason>"); 288 private String reason; field in class:MUCUser.Decline 373 private String reason; field in class:MUCUser.Item 567 private String reason; field in class:MUCUser.Destroy [all...] |
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
RevokedOffer.java | 26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
36 private String reason;
field in class:RevokedOffer 45 * @param reason the server issued message as to why this revocation was issued.
49 String reason, Date timestamp) {
56 this.reason = reason;
89 return this.reason;
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpResponse.java | 67 * @param catalog the reason phrase catalog, or 69 * reason phrase lookup 70 * @param locale the locale for looking up reason phrases, or 87 * The response will not have a reason phrase catalog and 98 * The response will not have a reason phrase catalog and 103 * @param reason the reason phrase to the status code, or 108 final String reason) { 109 this(new BasicStatusLine(ver, code, reason), null, null); 149 final String reason) { [all...] |
/external/chromium_org/chrome/browser/profiles/ |
file_path_verifier_win.cc | 60 PathComparisonReason reason = PATH_COMPARISON_FAILED_UNKNOWN; local 63 reason = PATH_COMPARISON_EQUAL; 66 reason = PATH_COMPARISON_FAILED_SAMEBASE; 69 reason = PATH_COMPARISON_FAILED_SAMEDIR; 72 return reason;
|
/external/llvm/lib/Support/ |
ErrorHandling.cpp | 52 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) { 53 report_fatal_error(Twine(Reason), GenCrashDiag); 56 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) { 57 report_fatal_error(Twine(Reason), GenCrashDiag); 60 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) { 61 report_fatal_error(Twine(Reason), GenCrashDiag); 64 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) { 66 ErrorHandler(ErrorHandlerUserData, Reason.str(), GenCrashDiag); 73 OS << "LLVM ERROR: " << Reason << "\n";
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
CRLReason.java | 110 int reason) 112 value = new ASN1Enumerated(reason); 118 int reason = getValue().intValue(); local 119 if (reason < 0 || reason > 10) 125 str = reasonString[reason];
|
/external/chromium/chrome/browser/chromeos/login/ |
login_status_consumer.h | 32 explicit LoginFailure(FailureReason reason) 33 : reason_(reason), 35 DCHECK(reason != NETWORK_AUTH_FAILED); 83 const FailureReason& reason() const { return reason_; } function in class:chromeos::LoginFailure 86 LoginFailure(FailureReason reason, GoogleServiceAuthError error) 87 : reason_(reason),
|
/external/chromium_org/content/renderer/ |
memory_benchmarking_extension.cc | 38 " function(process_type, reason) {" 40 " HeapProfilerDump(process_type, reason);" 64 std::string reason("benchmarking_extension"); 66 reason = *v8::String::AsciiValue(args[1]); 69 new MemoryBenchmarkHostMsg_HeapProfilerDump(reason)); 71 ::HeapProfilerDump(reason.c_str());
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
RefCountedLeakCounter.cpp | 51 void RefCountedLeakCounter::suppressMessages(const char* reason) 55 leakMessageSuppressionReasons->add(reason); 58 void RefCountedLeakCounter::cancelMessageSuppression(const char* reason) 61 ASSERT(leakMessageSuppressionReasons->contains(reason)); 62 leakMessageSuppressionReasons->remove(reason); 77 // This logs only one reason. Later we could change it so we log all the reasons.
|
/external/apache-http/src/org/apache/http/ |
HttpResponse.java | 68 * The reason phrase will be determined based on the current 77 * Sets the status line of this response with a reason phrase. 81 * @param reason the reason phrase, or <code>null</code> to omit 83 void setStatusLine(ProtocolVersion ver, int code, String reason); 90 * The reason phrase will be updated according to the new status code, 107 * Updates the status line of this response with a new reason phrase. 111 * @param reason the new reason phrase as a single-line string, or 112 * <code>null</code> to unset the reason phras [all...] |
/external/chromium_org/content/browser/renderer_host/ |
memory_benchmark_message_filter.cc | 36 const std::string& reason) { 37 ::HeapProfilerDump(reason.c_str());
|
/external/chromium_org/content/test/plugin/ |
plugin_get_javascript_url2_test.h | 29 virtual NPError DestroyStream(NPStream *stream, NPError reason) OVERRIDE; 31 NPReason reason,
|