HomeSort by relevance Sort by last modified time
    Searched refs:status (Results 226 - 250 of 7342) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 31 int status = 0; field in class:ObjectTest
62 status = 0;
98 status += 1;
100 status = -1000;
115 status = 0;
137 assertTrue("Thread woke too early. (status = " + status + ")",
138 status == 0);
144 + status + ")", status == i)
    [all...]
  /external/apache-http/src/org/apache/http/
ReasonPhraseCatalog.java 38 * Interface for obtaining reason phrases for HTTP status codes.
51 * Obtains the reason phrase for a status code.
55 * @param status the status code, in the range 100-599
60 public String getReason(int status, Locale loc)
  /external/bison/tests/
bison.in 29 status=$?
51 exit $status
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_ci.c 45 ** status - BTA_GATT_OK if full buffer of data,
51 void bta_gattc_ci_cache_open(BD_ADDR server_bda, UINT16 evt, tBTA_GATT_STATUS status,
61 p_evt->status = status;
76 ** status - BTA_GATT_OK if full buffer of data,
83 tBTA_GATTC_NV_ATTR *p_attr, tBTA_GATT_STATUS status,
95 p_evt->status = status;
116 ** status - BTA_GATT_OK if full buffer of data,
123 void bta_gattc_ci_cache_save(BD_ADDR server_bda, UINT16 evt, tBTA_GATT_STATUS status,
    [all...]
  /external/elfutils/tests/
run-strip-test.sh 40 status=0
42 cmp $stripped testfile.temp || status=$?
45 testrun ../src/elflint -q testfile.temp || status=$?
48 cmp $debugfile testfile.debug.temp || status=$?
51 testrun ../src/elflint -q -d testfile.debug.temp || status=$?
61 testrun ../src/readelf -S testfile.temp > testfile.sections || status=$?
62 fgrep ' .debug_' testfile.sections && status=1
64 exit $status
  /external/icu4c/common/unicode/
brkiter.h 161 * @param status receives any error codes.
166 virtual UText *getUText(UText *fillIn, UErrorCode &status) const = 0;
186 * @param status receives any error codes.
189 virtual void setText(UText *text, UErrorCode &status) = 0;
293 * @param status the error code
294 * @return A BreakIterator for word-breaks. The UErrorCode& status
295 * parameter is used to return status information to the user.
308 createWordInstance(const Locale& where, UErrorCode& status);
317 * @param status The error code.
318 * @return A BreakIterator for line-breaks. The UErrorCode& status
    [all...]
icudataver.h 36 * @param status stores the error code from the calls to resource bundle
40 U_DRAFT void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status);
  /external/icu4c/i18n/
csdetect.h 29 static void setRecognizers(UErrorCode &status);
32 CharsetDetector(UErrorCode &status);
38 const CharsetMatch * const *detectAll(int32_t &maxMatchesFound, UErrorCode &status);
40 const CharsetMatch *detect(UErrorCode& status);
48 // const char *getCharsetName(int32_t index, UErrorCode& status) const;
  /external/icu4c/i18n/unicode/
currpinf.h 49 * @param status output param set to success/failure code on exit
52 CurrencyPluralInfo(UErrorCode& status);
57 * @param status output param set to success/failure code on exit
60 CurrencyPluralInfo(const Locale& locale, UErrorCode& status);
146 * @param status output param set to success/failure code on exit
150 UErrorCode& status);
162 * @param status output param set to success/failure code on exit
167 UErrorCode& status);
173 * @param status output param set to success/failure code on exit
176 void setLocale(const Locale& loc, UErrorCode& status);
    [all...]
regex.h 179 * @param status A reference to a UErrorCode to receive any errors.
186 UErrorCode &status);
209 * @param status A reference to a UErrorCode to receive any errors.
216 UErrorCode &status);
237 * @param status A reference to a UErrorCode to receive any errors.
245 UErrorCode &status);
268 * @param status A reference to a UErrorCode to receive any errors.
276 UErrorCode &status);
295 * @param status A reference to a UErrorCode to receive any errors.
302 UErrorCode &status);
    [all...]
  /external/icu4c/samples/cal/
uprint.h 24 U_CFUNC void uprint(const UChar *s, FILE *f, UErrorCode *status);
  /external/icu4c/samples/date/
uprint.h 24 U_CFUNC void uprint(const UChar *s, FILE *f, UErrorCode *status);
  /external/icu4c/samples/translit/answers/
main_1.cpp 22 UErrorCode status = U_ZERO_ERROR; local
27 cal = Calendar::createInstance(greece, status);
28 check(status, "Calendar::createInstance");
49 defFmt->format(cal->getTime(status), str, status);
50 check(status, "DateFormat::format");
57 fmt->format(cal->getTime(status), str, status);
58 check(status, "DateFormat::format");
main_2.cpp 23 UErrorCode status = U_ZERO_ERROR; local
28 cal = Calendar::createInstance(greece, status);
29 check(status, "Calendar::createInstance");
57 defFmt->format(cal->getTime(status), str, status);
58 check(status, "DateFormat::format");
65 fmt->format(cal->getTime(status), str, status);
66 check(status, "DateFormat::format");
  /external/icu4c/tools/genrb/
rle.h 40 byteArrayToRLEString(const uint8_t* src,int32_t srcLen, uint16_t* buffer,int32_t bufLen, UErrorCode* status);
57 usArrayToRLEString(const uint16_t* src,int32_t srcLen,uint16_t* buffer, int32_t bufLen,UErrorCode* status);
63 rleStringToByteArray(uint16_t* src, int32_t srcLen, uint8_t* target, int32_t tgtLen, UErrorCode* status);
68 rleStringToUCharArray(uint16_t* src, int32_t srcLen, uint16_t* target, int32_t tgtLen, UErrorCode* status);
ustr.c 26 static void ustr_resize(struct UString *s, int32_t len, UErrorCode *status);
39 ustr_initChars(struct UString *s, const char* source, int32_t length, UErrorCode *status)
42 if (U_FAILURE(*status)) return;
49 ustr_resize(s, ALLOCATION(length), status);
50 if(U_FAILURE(*status)) return;
56 ustr_ucat(s, charToAppend, status);
59 ustr_ucat(s, (UChar)(uint8_t)(source[i]), status);
61 ustr_ucat(s, (UChar)asciiFromEbcdic[(uint8_t)(*cs++)], status);
82 UErrorCode *status)
84 if(U_FAILURE(*status) || dst == src
    [all...]
  /external/valgrind/main/none/tests/
async-sigs.c 30 int status; local
53 ret = waitpid(killer, &status, 0);
61 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
62 fprintf(stderr, "kill %d failed status=%s %d\n", killer,
63 WIFEXITED(status) ? "exit" : "signal",
64 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
72 int status; local
    [all...]
pth_atfork1.c 32 static void error (int status, int errnum, char* msg)
98 int status; local
110 if (waitpid (pid, &status, 0) != pid)
113 if (WTERMSIG (status) != 0)
115 status = WEXITSTATUS (status);
117 if (status == 0)
118 status = var != (PREPARE_BIT | PARENT_BIT);
120 return (void *) (long int) status;
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uenum.h 43 * the iterator is out-of-sync with its service, status is set to
50 * @param status error code, can be U_ENUM_OUT_OF_SYNC_ERROR if the
56 uenum_count(UEnumeration* en, UErrorCode* status);
61 * with its service, status is set to U_ENUM_OUT_OF_SYNC_ERROR and
69 * @param status the error code, set to U_ENUM_OUT_OF_SYNC_ERROR if
82 UErrorCode* status);
87 * with its service, status is set to U_ENUM_OUT_OF_SYNC_ERROR and
91 * (because a character cannot be converted) then status is set to
98 * @param status the error code, set to U_ENUM_OUT_OF_SYNC_ERROR if
115 UErrorCode* status);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
15.3.4.3-1.js 48 var status = ''; variable
76 status = inSection(1);
86 status = inSection(2);
96 status = inSection(3);
101 status = inSection(4);
111 status = inSection(5);
116 status = inSection(6);
121 status = inSection(7);
126 status = inSection(8);
136 status = inSection(9)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
class-003.js 40 var status = ''; var statusList = [ ]; variable
48 status = 'new Error()';
53 status = 'new EvalError()';
58 status = 'new RangeError()';
63 status = 'new ReferenceError()';
68 status = 'new SyntaxError()';
73 status = 'new TypeError()';
78 status = 'new URIError()';
93 statusList[UBound] = status;
class-004.js 39 var status = ''; var statusList = [ ]; variable
47 status = 'Error';
52 status = 'EvalError';
57 status = 'RangeError';
62 status = 'ReferenceError';
67 status = 'SyntaxError';
72 status = 'TypeError';
77 status = 'URIError';
92 statusList[UBound] = status;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-100199.js 36 var status = ''; variable
50 status = inSection(1);
56 status = inSection(2);
62 status = inSection(3);
68 status = inSection(4);
74 status = inSection(5);
80 status = inSection(6);
86 status = inSection(7);
92 status = inSection(8);
98 status = inSection(9)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-110286.js 46 var status = ''; variable
54 status = inSection(1);
59 status = inSection(2);
64 status = inSection(3);
69 status = inSection(4);
74 status = inSection(5);
89 status = inSection(6);
109 status = inSection(7);
132 statusitems[UBound] = status;
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
uenum.h 43 * the iterator is out-of-sync with its service, status is set to
50 * @param status error code, can be U_ENUM_OUT_OF_SYNC_ERROR if the
56 uenum_count(UEnumeration* en, UErrorCode* status);
61 * with its service, status is set to U_ENUM_OUT_OF_SYNC_ERROR and
69 * @param status the error code, set to U_ENUM_OUT_OF_SYNC_ERROR if
82 UErrorCode* status);
87 * with its service, status is set to U_ENUM_OUT_OF_SYNC_ERROR and
91 * (because a character cannot be converted) then status is set to
98 * @param status the error code, set to U_ENUM_OUT_OF_SYNC_ERROR if
115 UErrorCode* status);
    [all...]

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>