HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 76 - 100 of 1482) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/
asan_scariness_score.h 42 void Scare(int add_to_score, const char *reason) {
45 internal_strlcat(descr, reason, sizeof(descr));
  /external/compiler-rt/test/asan/TestCases/Windows/
report_globals_reload_dll.cc 23 // CHECK: in DLL(reason=1)
24 // CHECK: in DLL(reason=0)
25 // CHECK: in DLL(reason=1)
26 // CHECK: in DLL(reason=0)
27 // CHECK: in DLL(reason=1)
28 // CHECK: in DLL(reason=0)
43 BOOL WINAPI DllMain(HMODULE, DWORD reason, LPVOID) {
44 printf("in DLL(reason=%d)\n", (int)reason);
report_globals_vs_freelibrary.cc 24 // CHECK: in DLL(reason=1)
29 // CHECK: in DLL(reason=0)
39 BOOL WINAPI DllMain(HMODULE, DWORD reason, LPVOID) {
40 printf("in DLL(reason=%d)\n", (int)reason);
  /external/icu/icu4c/source/common/unicode/
ucnv_err.h 173 UCNV_RESET = 3, /**< The callback is called with this reason when a
232 * @param reason Defines the reason the callback was invoked
242 UConverterCallbackReason reason,
256 * @param reason Defines the reason the callback was invoked
265 UConverterCallbackReason reason,
282 * @param reason Defines the reason the callback was invoked
293 UConverterCallbackReason reason,
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
flagcb.h 40 UConverterCallbackReason reason,
58 UConverterCallbackReason reason,
  /external/icu/libandroidicu/include/unicode/
ucnv_err.h 173 UCNV_RESET = 3, /**< The callback is called with this reason when a
232 * @param reason Defines the reason the callback was invoked
242 UConverterCallbackReason reason,
256 * @param reason Defines the reason the callback was invoked
265 UConverterCallbackReason reason,
282 * @param reason Defines the reason the callback was invoked
293 UConverterCallbackReason reason,
    [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/python/cpython2/Tools/unicode/
listcodecs.py 25 except Exception, reason:
30 (name, reason)
  /external/python/cpython3/Tools/unicode/
listcodecs.py 25 except Exception as reason:
30 (name, reason))
  /external/u-boot/include/
fastboot.h 44 * fastboot_response() - Writes a response of the form "$tag$reason".
55 * fastboot_fail() - Write a FAIL response of the form "FAIL$reason".
57 * @reason: Pointer to returned reason string
60 void fastboot_fail(const char *reason, char *response);
63 * fastboot_okay() - Write an OKAY response of the form "OKAY$reason".
65 * @reason: Pointer to returned reason string, or NULL to send a bare "OKAY"
68 void fastboot_okay(const char *reason, char *response);
  /external/v8/src/
runtime-profiler.h 36 void Optimize(JSFunction* function, OptimizationReason reason);
37 void Baseline(JSFunction* function, OptimizationReason reason);
  /external/volley/src/main/java/com/android/volley/
VolleyError.java 38 public VolleyError(String exceptionMessage, Throwable reason) {
39 super(exceptionMessage, reason);
  /frameworks/av/media/libstagefright/include/media/stagefright/
SurfaceUtils.h 42 status_t nativeWindowConnect(ANativeWindow *surface, const char *reason);
43 status_t nativeWindowDisconnect(ANativeWindow *surface, const char *reason);
  /external/libcups/cups/
ppd-localize.c 225 * This function uses the current locale to find the corresponding reason
238 const char *reason, /* I - IPP reason keyword to look up */
260 if (!ppd || !reason || (scheme && !*scheme) ||
274 if ((locattr = _ppdLocalizedAttr(ppd, "cupsIPPReason", reason,
276 locattr = ppdFindAttr(ppd, "cupsIPPReason", reason);
283 * Try to localize a standard printer-state-reason keyword...
288 if (!strncmp(reason, "media-needed", 12))
290 else if (!strncmp(reason, "media-jam", 9))
292 else if (!strncmp(reason, "offline", 7) |
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
DatePickerCalendarActivityTest.java 21 @AppModeFull(reason = "Unit test")
DatePickerSpinnerActivityTest.java 21 @AppModeFull(reason = "Unit test")
TimePickerClockActivityTest.java 20 @AppModeFull(reason = "Unit test")
TimePickerSpinnerActivityTest.java 20 @AppModeFull(reason = "Unit test")
  /cts/tests/tests/media/src/android/media/cts/
VideoEditorTest.java 24 @AppModeFull(reason = "TODO: evaluate and port to instant")
  /device/google/marlin/telephony/ims/src/org/codeaurora/ims/internal/
IQtiImsExt.aidl 49 * @param reason is one of the valid call forwarding
60 int action, int reason, int serviceClass, String dialingNumber,
67 * @param reason is one of the valid call forwarding
76 void getCallForwardUncondTimer(int reason, int serviceClass,
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
ServerTransport.java 35 * should be closed with the provided {@code reason}.
37 void shutdownNow(Status reason);
  /external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/
TokenMgrException.java 61 * Indicates the reason why the exception is thrown. It will have
156 /** Constructor with message and reason. */
157 public TokenMgrException(String message, int reason) {
159 errorCode = reason;
163 public TokenMgrException(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, int curChar, int reason) {
164 this(LexicalErr(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
TokenMgrError.java 53 * Indicates the reason why the exception is thrown. It will have
148 /** Constructor with message and reason. */
149 public TokenMgrError(String message, int reason) {
151 errorCode = reason;
155 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
156 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
TokenMgrException.java 53 * Indicates the reason why the exception is thrown. It will have
147 /** Constructor with message and reason. */
148 public TokenMgrException(String message, int reason) {
150 errorCode = reason;
154 public TokenMgrException(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, int curChar, int reason) {
155 this(LexicalErr(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
TokenMgrError.java 53 * Indicates the reason why the exception is thrown. It will have
148 /** Constructor with message and reason. */
149 public TokenMgrError(String message, int reason) {
151 errorCode = reason;
155 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
156 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);

Completed in 1746 milliseconds

1 2 34 5 6 7 8 91011>>