HomeSort by relevance Sort by last modified time
    Searched refs:status (Results 1 - 25 of 7340) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RecapitalizeStatusTests.java 27 final RecapitalizeStatus status = new RecapitalizeStatus(); local
28 status.initialize(30, 40, "abcdefghij", Locale.ENGLISH, " ");
29 status.trim();
30 assertEquals("abcdefghij", status.getRecapitalizedString());
31 assertEquals(30, status.getNewCursorStart());
32 assertEquals(40, status.getNewCursorEnd());
34 status.initialize(30, 44, " abcdefghij", Locale.ENGLISH, " ");
35 status.trim();
36 assertEquals("abcdefghij", status.getRecapitalizedString());
37 assertEquals(34, status.getNewCursorStart())
54 final RecapitalizeStatus status = new RecapitalizeStatus(); local
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
status_controller_unittest.cc 22 StatusController status(routes_);
23 status.increment_num_conflicting_commits_by(1);
24 EXPECT_TRUE(status.TestAndClearIsDirty());
25 EXPECT_FALSE(status.TestAndClearIsDirty()); // Test that it actually resets.
26 status.increment_num_conflicting_commits_by(0);
27 EXPECT_FALSE(status.TestAndClearIsDirty());
28 status.increment_num_conflicting_commits_by(1);
29 EXPECT_TRUE(status.TestAndClearIsDirty());
31 status.set_num_consecutive_transient_error_commits(1);
32 EXPECT_TRUE(status.TestAndClearIsDirty())
    [all...]
  /frameworks/rs/
rsMutex.cpp 31 int status = pthread_mutex_init(&mMutex, NULL); local
32 if (status) {
40 int status; local
41 status = pthread_mutex_lock(&mMutex);
42 if (status) {
43 ALOGE("Mutex: error %i locking.", status);
50 int status; local
51 status = pthread_mutex_unlock(&mMutex);
52 if (status) {
53 ALOGE("Mutex error %i unlocking.", status);
    [all...]
rsSignal.cpp 33 int status = pthread_mutex_init(&mMutex, NULL); local
34 if (status) {
39 status = pthread_cond_init(&mCondition, NULL);
40 if (status) {
50 int status; local
52 status = pthread_mutex_lock(&mMutex);
53 if (status) {
54 ALOGE("LocklessCommandFifo: error %i locking for set condition.", status);
60 status = pthread_cond_signal(&mCondition);
61 if (status) {
72 int status; local
    [all...]
  /external/icu4c/test/testmap/
testmap.c 29 UErrorCode status = U_ZERO_ERROR; local
31 udata_setCommonData(NULL, &status);
32 printf("setCommonData(NULL) -> %s [should fail]\n", u_errorName(status));
33 if(status != U_ILLEGAL_ARGUMENT_ERROR)
39 status = U_ZERO_ERROR;
40 udata_setCommonData(U_ICUDATA_ENTRY_POINT, &status);
41 printf("setCommonData(%p) -> %s\n", U_ICUDATA_ENTRY_POINT, u_errorName(status));
42 if(U_FAILURE(status))
48 status = U_ZERO_ERROR;
49 c = ucnv_open("iso-8859-7", &status);
    [all...]
  /development/ndk/sources/android/libportable/arch-mips/
waitpid.c 28 pid_t WRAP(waitpid)(pid_t pid, int *status, int options)
32 ret = REAL(waitpid)(pid, status, options);
33 if (status && ret > 0) {
35 * Status layout is identical, so just the signal
38 if (WIFSIGNALED(*status))
39 *status = (*status & ~0x7f) | signum_ntop(WTERMSIG(*status));
40 else if (WIFSTOPPED(*status))
41 *status = (*status & ~0xff00) | (signum_ntop(WSTOPSIG(*status)) << 8)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIStatus.java 72 private final int status; field in class:PKIStatus
73 PKIStatus(int status) {
74 this.status = status;
78 * @return int value of the status
81 return status;
84 public static PKIStatus getInstance(int status) {
86 if (status == curStatus.status) {
  /external/icu4c/common/
uinit.c 27 initData(UErrorCode *status)
42 ucnv_io_countKnownConverters(status);
50 u_init(UErrorCode *status) {
54 uplug_init(status);
55 ucln_mutexedInit(initData, status);
57 UTRACE_EXIT_STATUS(*status);
icudataver.c 15 U_CAPI void U_EXPORT2 u_getDataVersion(UVersionInfo dataVersionFillin, UErrorCode *status) {
18 if (U_FAILURE(*status)) {
23 icudatares = ures_openDirect(NULL, U_ICU_VERSION_BUNDLE , status);
24 if (U_SUCCESS(*status)) {
25 ures_getVersionByKey(icudatares, U_ICU_DATA_KEY, dataVersionFillin, status);
  /external/icu4c/test/intltest/
cntabcol.cpp 24 UErrorCode status = U_ZERO_ERROR; local
26 testTable = uprv_cnttab_open(testMapping, &status);
30 uprv_cnttab_addContraction(testTable, 0, (UChar)i, i, &status);
31 if(U_FAILURE(status)) {
32 errln("Error occurred at position %i, error = %i (%s)\n", i, status, u_errorName(status));
37 if(U_SUCCESS(status)) {
39 res = uprv_cnttab_getCE(testTable, 0, i, &status);
40 if(U_FAILURE(status)) {
41 errln("Error occurred at position %i, error = %i (%s)\n", i, status, u_errorName(status))
54 UErrorCode status = U_ZERO_ERROR; local
74 UErrorCode status = U_ZERO_ERROR; local
104 UErrorCode status = U_ZERO_ERROR; local
145 UErrorCode status = U_ZERO_ERROR; local
172 UErrorCode status = U_ZERO_ERROR; local
182 UErrorCode status = U_REGEX_SET_CONTAINS_STRING; local
    [all...]
v32test.cpp 58 #define TEST_CHECK_STATUS(status) \
59 if (U_FAILURE(status)) {\
60 errln("UVector32Test failure at line %d. status=%s\n", __LINE__, u_errorName(status));\
76 UErrorCode status = U_ZERO_ERROR; local
80 a = new UVector32(status);
81 TEST_CHECK_STATUS(status);
84 status = U_ZERO_ERROR;
85 a = new UVector32(2000, status);
86 TEST_CHECK_STATUS(status);
    [all...]
  /external/skia/legacy/src/ports/
SkThread_pthread.cpp 70 static void print_pthread_error(int status) {
71 switch (status) {
75 SkDebugf("pthread error [%d] EINVAL\n", status);
78 SkDebugf("pthread error [%d] EBUSY\n", status);
81 SkDebugf("pthread error [%d] unknown\n", status);
89 int status; local
91 status = pthread_mutex_init(&fMutex, NULL);
92 if (status != 0) {
93 print_pthread_error(status);
94 SkASSERT(0 == status);
99 int status = pthread_mutex_destroy(&fMutex); local
116 int status; local
129 int status = pthread_mutex_destroy((pthread_mutex_t*)fStorage); local
140 int status = pthread_mutex_lock((pthread_mutex_t*)fStorage); local
146 int status = pthread_mutex_unlock((pthread_mutex_t*)fStorage); local
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
CommandStatusException.java 20 * ActiveSync command error status definitions (EAS 14.0 and later); these are in addition to the
26 // A status response to an EAS account. Responses < 16 correspond to command-specific errors as
74 // String version of error status codes (for logging only)
90 public static boolean isNeedsProvisioning(int status) {
91 return (status == CommandStatus.NEEDS_PROVISIONING ||
92 status == CommandStatus.NEEDS_PROVISIONING_REFRESH ||
93 status == CommandStatus.NEEDS_PROVISIONING_INVALID ||
94 status == CommandStatus.NEEDS_PROVISIONING_WIPE);
97 public static boolean isBadSyncKey(int status) {
98 return (status == CommandStatus.SYNC_STATE_CORRUPT |
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 177 * The name of the column containing the current status of the transfer.
187 public static final String STATUS = "status";
278 * Returns whether the status is informational (i.e. 1xx).
280 public static boolean isStatusInformational(int status) {
281 return (status >= 100 && status < 200);
288 public static boolean isStatusSuspended(int status) {
289 return (status == STATUS_PENDING);
293 * Returns whether the status is a success (i.e. 2xx)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-188206.js 54 var status = ''; variable
70 status = inSection(1);
73 status = inSection(2);
76 status = inSection(3);
79 status = inSection(4);
87 status = inSection(5);
90 status = inSection(6);
97 status = inSection(7);
100 status = inSection(8);
103 status = inSection(9)
    [all...]
  /external/srtp/crypto/rng/
ctr_prng.c 55 err_status_t status; local
64 status = random_source(tmp_key, 32);
65 if (status)
66 return status;
69 status = aes_icm_context_init(&ctr_prng.state, tmp_key);
70 if (status)
71 return status;
78 err_status_t status; local
86 status = ctr_prng_init(ctr_prng.rand);
87 if (status)
    [all...]
  /external/srtp/crypto/ae_xfm/
xfm.c 34 err_status_t status; local
52 status = hmac_init(&hmac_ctx, key, KEY_LEN);
53 if (status) return status;
54 status = hmac_compute(&hmac_ctx, "ENC", 3, ENC_KEY_LEN, enc_key);
55 if (status) return status;
57 status = hmac_init(&hmac_ctx, key, KEY_LEN);
58 if (status) return status;
110 err_status_t status; local
195 err_status_t status; local
308 err_status_t status; local
    [all...]
  /external/chromium/chrome/browser/chromeos/
update_browsertest.cc 30 const chromeos::UpdateLibrary::Status& x) {
31 EXPECT_CALL(*lib, status())
41 chromeos::UpdateLibrary::Status status; local
43 status.status = chromeos::UPDATE_STATUS_IDLE;
44 CallObservers(lib, observer, status);
46 status.status = chromeos::UPDATE_STATUS_CHECKING_FOR_UPDATE;
47 CallObservers(lib, observer, status);
76 chromeos::UpdateLibrary::Status status; local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/LexicalConventions/
lexical-001.js 42 var status = new Array();
47 status[0]=showStatus('01')
51 status[1]=showStatus('07')
55 status[2]=showStatus('08')
59 status[3]=showStatus('09')
63 status[4]=showStatus('010')
67 status[5]=showStatus('017')
71 status[6]=showStatus('018')
75 status[7]=showStatus('019')
79 status[8]=showStatus('079'
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/String/
regress-83293.js 54 var status = ''; variable
83 status = 'Section A of test';
87 reportCompare(expect, actual, status);
89 status = 'Section B of test';
93 reportCompare(expect, actual, status);
95 status = 'Section C of test';
99 reportCompare(expect, actual, status);
101 status = 'Section D of test';
105 reportCompare(expect, actual, status);
115 status = 'Section E of test'
    [all...]
  /external/clang/test/Sema/
transparent-union-pointer.c 12 int status = 0; local
13 wait(&status);
  /external/libnfc-nci/src/hal/int/
nfc_hal_nv_ci.h 50 ** Parameters status - NFA_NV_CO_OK, NFA_NV_CO_NOSPACE, or NFA_NV_CO_FAIL
57 void nfc_hal_nv_ci_write (tNFC_HAL_NV_CO_STATUS status);
70 ** status - NFC_HAL_NV_CO_OK if full buffer of data,
80 tNFC_HAL_NV_CO_STATUS status,
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCallback.java 29 * @param status Status of the connect or disconnect operation.
35 public void onConnectionStateChange(BluetoothGatt gatt, int status,
44 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the remote device
47 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
56 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
60 int status) {
75 * @param status The result of the write operation
79 BluetoothGattCharacteristic characteristic, int status) {
99 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operatio
    [all...]
  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardwareCallback.aidl 25 void onGeofenceAdd(int geofenceId, int status);
26 void onGeofenceRemove(int geofenceId, int status);
27 void onGeofencePause(int geofenceId, int status);
28 void onGeofenceResume(int geofenceId, int status);
  /external/icu4c/test/cintltst/
hpmufn.c 48 #define TEST_STATUS(status, expected) \
49 if (status != expected) { \
50 log_err_status(status, "FAIL at %s:%d. Actual status = \"%s\"; Expected status = \"%s\"\n", \
51 __FILE__, __LINE__, u_errorName(status), u_errorName(expected)); gMutexFailures++; }
123 UErrorCode status = U_ZERO_ERROR; local
138 u_setMemoryFunctions(&gContext, myMemAlloc, myMemRealloc, myMemFree, &status);
139 TEST_STATUS(status, U_INVALID_STATE_ERROR);
145 status = U_ZERO_ERROR
265 UErrorCode status = U_ZERO_ERROR; local
397 UErrorCode status = U_ZERO_ERROR; local
    [all...]

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 91011>>