HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 76 - 100 of 2526) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu4c/test/cintltst/
cfintst.c 80 UErrorCode status = U_ZERO_ERROR; local
81 myCollation = ucol_open("fi_FI@collation=standard", &status);
82 if(U_FAILURE(status)){
83 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
98 UErrorCode status = U_ZERO_ERROR; local
99 myCollation = ucol_open("fi_FI@collation=standard", &status);
100 if(U_FAILURE(status)){
101 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
    [all...]
cturtst.c 96 UErrorCode status = U_ZERO_ERROR; local
97 myCollation = ucol_open("tr", &status);
98 if(U_FAILURE(status)){
99 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
116 UErrorCode status = U_ZERO_ERROR; local
117 myCollation = ucol_open("tr", &status);
118 if(U_FAILURE(status)){
119 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
    [all...]
  /external/icu4c/test/intltest/
dadrcoll.h 52 UErrorCode status; member in class:DataDrivenCollatorTest
lcukocol.cpp 34 UErrorCode status = U_ZERO_ERROR; local
35 myCollation = Collator::createInstance("ko_kr", status);
36 if(U_SUCCESS(status)) {
37 myCollation->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
39 errcheckln(status, "Couldn't instantiate the collator with %s", u_errorName(status));
rndmcoll.cpp 156 UErrorCode status = U_ZERO_ERROR; local
161 Collator * c = new RuleBasedCollator(newRule,status);
163 if (U_FAILURE(status)) {
167 i, u_errorName(status));
tstnrapi.cpp 17 static UErrorCode status = U_ZERO_ERROR; variable
138 Normalizer::normalize(s, UNORM_NONE, 0, out, status);
145 Normalizer::normalize(s, UNORM_NFD, 0, s, status);
149 Normalizer::normalize(s, UNORM_NFC, 0, s, status);
153 Normalizer::decompose(s, FALSE, 0, s, status);
157 Normalizer::compose(s, FALSE, 0, s, status);
161 Normalizer::concatenate(s, s, s, UNORM_NFC, 0, status);
  /external/libselinux/src/
checkAccess.c 16 int status = -1; local
32 if ((sclass = string_to_security_class(class)) == 0) return status;
34 if ((av = string_to_av_perm(sclass, perm)) == 0) return status;
  /external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
SDL_sysmutex.cpp 57 TInt status = CreateUnique(NewMutex, &rmutex, NULL); local
58 if(status != KErrNone)
  /external/srtp/crypto/rng/
prng.c 55 err_status_t status; local
64 status = random_source((uint8_t *)&tmp_key, 16);
65 if (status)
66 return status;
72 status = x917_prng.rand((uint8_t *)&x917_prng.state, 16);
73 if (status)
74 return status;
84 err_status_t status; local
92 status = x917_prng_init(x917_prng.rand);
93 if (status)
    [all...]
  /external/srtp/crypto/test/
rand_gen.c 75 err_status_t status; local
81 status = crypto_kernel_init();
82 if (status) {
94 status = crypto_kernel_set_debug_module(optarg, 1);
95 if (status) {
114 status = crypto_kernel_list_debug_modules();
115 if (status) {
124 status = crypto_get_random(buffer, num_octets);
125 if (status) {
132 status = crypto_kernel_shutdown()
    [all...]
  /external/v8/test/cctest/
test-fixed-dtoa.cc 495 bool status; local
505 status = FastFixedDtoa(v, number_digits,
507 CHECK(status);
  /external/v8/test/mjsunit/regress/
regress-1233.js 40 var status = "fail"; variable
44 status = "succeed";
47 assertEquals("succeed", status);
  /external/valgrind/main/drd/tests/
bug-235681.c 15 int status; variable
28 while (!status) {
30 fprintf(stderr, "run_fn(): status==0\n");
37 fprintf(stderr, "run_fn(): status==1\n");
61 status = 0;
76 fprintf(stderr, "main(): status=1\n");
77 status = 1;
  /external/valgrind/main/none/tests/
exec-sigmask.c 13 int status; local
29 ret = waitpid(pid, &status, 0);
35 if (status != 0) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
15.9.5.3.js 44 var status = ''; variable
60 status = "typeof (now.toDateString())";
65 status = "Date.prototype.toDateString.length";
72 status = "(Date.parse(now.toDateString()) - (midnight(now)).valueOf()) == 0";
114 testcases[tc++] = new TestCase( SECTION, status, expect, actual);
122 status = 'Date.parse(' + givenDate + ').toDateString())';
15.9.5.5.js 44 var status = ''; variable
60 status = "typeof (now.toLocaleString())";
65 status = "Date.prototype.toLocaleString.length";
77 testcases[tc++] = new TestCase( SECTION, status, expect, actual);
15.9.5.6.js 44 var status = ''; variable
60 status = "typeof (now.toLocaleDateString())";
65 status = "Date.prototype.toLocaleDateString.length";
72 status = "(Date.parse(now.toLocaleDateString()) - (midnight(now)).valueOf()) == 0";
114 testcases[tc++] = new TestCase( SECTION, status, expect, actual);
122 status = 'Date.parse(' + givenDate + ').toLocaleDateString())';
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.2-1.js 48 var status = ''; variable
60 status = inSection(1);
67 status = inSection(2);
74 status = inSection(3);
81 status = inSection(4);
88 status = inSection(5);
95 status = inSection(6);
102 status = inSection(7);
109 status = inSection(8);
116 status = inSection(9)
    [all...]
15.10.6.2-1.js 66 var status = ''; variable
78 status = inSection(1);
86 status = inSection(2);
103 statusmessages[i] = status;
15.10.6.2-2.js 98 var status = ''; variable
118 status = inSection(1);
123 status = inSection(2);
128 status = inSection(3);
136 status = inSection(4);
144 status = inSection(5);
159 status = inSection(6);
165 status = inSection(7);
171 status = inSection(8);
177 status = inSection(9)
    [all...]
octal-001.js 46 var status = ''; variable
58 status = inSection(1);
70 status = inSection(2);
77 status = inSection(3);
84 status = inSection(4);
91 status = inSection(5);
98 status = inSection(6);
115 statusmessages[i] = status;
octal-002.js 64 var status = ''; variable
88 status = inSection(1);
102 status = inSection(2);
115 status = inSection(3);
127 status = inSection(4);
139 status = inSection(5);
151 status = inSection(6);
163 status = inSection(7);
179 status = inSection(8);
197 statusmessages[i] = status;
    [all...]
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...]
regress-123437.js 48 var status = ''; variable
62 status = inSection(1);
69 status = inSection(2);
76 status = inSection(3);
91 statusmessages[i] = status;
regress-165353.js 46 var status = ''; variable
59 status = inSection(1);
65 status = inSection(2);
71 status = inSection(3);
79 status = inSection(4);
86 status = inSection(5);
101 statusmessages[i] = status;

Completed in 1278 milliseconds

1 2 34 5 6 7 8 91011>>