HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 51 - 75 of 1150) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/third_party/icu/public/common/unicode/
ucnv_err.h 171 UCNV_RESET = 3, /**< The callback is called with this reason when a
230 * @param reason Defines the reason the callback was invoked
240 UConverterCallbackReason reason,
254 * @param reason Defines the reason the callback was invoked
263 UConverterCallbackReason reason,
280 * @param reason Defines the reason the callback was invoked
291 UConverterCallbackReason reason,
    [all...]
  /external/icu4c/common/unicode/
ucnv_err.h 171 UCNV_RESET = 3, /**< The callback is called with this reason when a
230 * @param reason Defines the reason the callback was invoked
240 UConverterCallbackReason reason,
254 * @param reason Defines the reason the callback was invoked
263 UConverterCallbackReason reason,
280 * @param reason Defines the reason the callback was invoked
291 UConverterCallbackReason reason,
    [all...]
  /external/icu4c/samples/ucnv/
flagcb.h 37 UConverterCallbackReason reason,
55 UConverterCallbackReason reason,
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/nist-sip/java/gov/nist/javax/sip/
DialogTimeoutEvent.java 34 public enum Reason {AckNotReceived, AckNotSent,ReInviteTimeout};
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
45 m_reason = reason;
62 * The reason for the Dialog Timeout Event being delivered to the application.
64 * @return the reason for the timeout event.
66 public Reason getReason() {
72 private Reason m_reason = null;
  /external/openssl/crypto/buffer/
buf_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
  /external/openssl/crypto/comp/
comp_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
  /external/openssl/crypto/
cpt_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_CRYPTO,0,reason)
  /external/openssl/crypto/ecdh/
ech_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDH,0,reason)
  /external/openssl/crypto/objects/
obj_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_OBJ,0,reason)
  /external/webkit/JavaScriptCore/icu/unicode/
ucnv_err.h 164 UCNV_RESET = 3, /**< The callback is called with this reason when a
223 * @param reason Defines the reason the callback was invoked
233 UConverterCallbackReason reason,
247 * @param reason Defines the reason the callback was invoked
256 UConverterCallbackReason reason,
273 * @param reason Defines the reason the callback was invoked
284 UConverterCallbackReason reason,
    [all...]
  /external/webkit/JavaScriptGlue/icu/unicode/
ucnv_err.h 164 UCNV_RESET = 3, /**< The callback is called with this reason when a
223 * @param reason Defines the reason the callback was invoked
233 UConverterCallbackReason reason,
247 * @param reason Defines the reason the callback was invoked
256 UConverterCallbackReason reason,
273 * @param reason Defines the reason the callback was invoked
284 UConverterCallbackReason reason,
    [all...]
  /external/webkit/WebCore/icu/unicode/
ucnv_err.h 164 UCNV_RESET = 3, /**< The callback is called with this reason when a
223 * @param reason Defines the reason the callback was invoked
233 UConverterCallbackReason reason,
247 * @param reason Defines the reason the callback was invoked
256 UConverterCallbackReason reason,
273 * @param reason Defines the reason the callback was invoked
284 UConverterCallbackReason reason,
    [all...]
  /dalvik/vm/alloc/
Heap.h 84 void dvmCollectGarbageInternal(bool clearSoftRefs, GcReason reason);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.14.js 58 testcases[caseno].reason = Math.random();
61 if ( ! ( testcases[caseno].reason >= 0) ) {
65 if ( ! (testcases[caseno].reason < 1) ) {
79 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/wpa_supplicant/
mlme.h 26 int ieee80211_sta_deauthenticate(struct wpa_supplicant *wpa_s, u16 reason);
27 int ieee80211_sta_disassociate(struct wpa_supplicant *wpa_s, u16 reason);
58 u16 reason)
64 u16 reason)
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
TokenMgrError.java 46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) {
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
TokenMgrError.java 46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) {
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
TokenMgrError.java 46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) {
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /external/chromium/third_party/icu/source/common/
ucnv_err.c 61 UConverterCallbackReason reason,
76 UConverterCallbackReason reason,
90 UConverterCallbackReason reason,
93 if (reason <= UCNV_IRREGULAR)
95 if (context == NULL || (*((char*)context) == UCNV_PRV_STOP_ON_ILLEGAL && reason == UCNV_UNASSIGNED))
111 UConverterCallbackReason reason,
114 if (reason <= UCNV_IRREGULAR)
116 if (context == NULL || (*((char*)context) == UCNV_PRV_STOP_ON_ILLEGAL && reason == UCNV_UNASSIGNED))
138 UConverterCallbackReason reason,
154 if (reason > UCNV_IRREGULAR
    [all...]
  /external/icu4c/common/
ucnv_err.c 61 UConverterCallbackReason reason,
76 UConverterCallbackReason reason,
90 UConverterCallbackReason reason,
93 if (reason <= UCNV_IRREGULAR)
95 if (context == NULL || (*((char*)context) == UCNV_PRV_STOP_ON_ILLEGAL && reason == UCNV_UNASSIGNED))
111 UConverterCallbackReason reason,
114 if (reason <= UCNV_IRREGULAR)
116 if (context == NULL || (*((char*)context) == UCNV_PRV_STOP_ON_ILLEGAL && reason == UCNV_UNASSIGNED))
138 UConverterCallbackReason reason,
154 if (reason > UCNV_IRREGULAR
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/Array/
slice.js 74 var reason = "";
92 reason = reason + errorMessage;
98 testCase.reason = reason;
116 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/String/
slice.js 74 var reason = "";
92 reason = reason + errorMessage;
98 testCase.reason = reason;
116 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/libnfc-nxp/src/
phOsalNfc.h 83 * OSAL Exception structure containing exception type and reason.
88 uint16_t reason; member in struct:phOsalNfc_Exception
123 * \param[in] reason additional reason value that gives a vendor specific reason
129 uint16_t reason);
  /external/openssl/crypto/ecdsa/
ecs_err.c 58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDSA,0,reason)

Completed in 507 milliseconds

1 23 4 5 6 7 8 91011>>