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

1 2 3 4 5

  /bionic/libc/upstream-openbsd/lib/libc/string/
strspn.c 45 cont:
49 goto cont;
strtok.c 54 cont:
58 goto cont;
  /external/chromium_org/third_party/icu/source/test/cintltst/
uenumtst.c 47 #define cont ((chArrayContext *)en->context) macro
51 if(cont->currUChar != NULL) {
52 free(cont->currUChar);
53 cont->currUChar = NULL;
60 return cont->maxIndex;
65 if(cont->currIndex >= cont->maxIndex) {
69 if(cont->currUChar == NULL) {
70 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar));
73 cont->currChar = (cont->array)[cont->currIndex]
    [all...]
  /external/stlport/test/unit/
map_test.cpp 341 Container cont; local
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
347 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
348 CPPUNIT_ASSERT( cont.count(1) == 1 );
349 CPPUNIT_ASSERT( cont.count(5) == 0 );
351 CPPUNIT_ASSERT( cont.find(2) != cont.end() )
366 Container cont; local
390 Container cont; local
415 Container cont; local
    [all...]
unordered_test.cpp 573 Container cont; local
574 cont.insert(Key(1));
575 cont.insert(Key(2));
576 cont.insert(Key(3));
577 cont.insert(Key(4));
579 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
580 CPPUNIT_ASSERT( cont.count(1) == 1 );
581 CPPUNIT_ASSERT( cont.count(5) == 0 );
583 CPPUNIT_ASSERT( cont.find(2) != cont.end() )
594 Container cont; local
614 Container cont; local
635 Container cont; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
map_test.cpp 341 Container cont; local
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
347 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
348 CPPUNIT_ASSERT( cont.count(1) == 1 );
349 CPPUNIT_ASSERT( cont.count(5) == 0 );
351 CPPUNIT_ASSERT( cont.find(2) != cont.end() )
366 Container cont; local
390 Container cont; local
415 Container cont; local
    [all...]
unordered_test.cpp 573 Container cont; local
574 cont.insert(Key(1));
575 cont.insert(Key(2));
576 cont.insert(Key(3));
577 cont.insert(Key(4));
579 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
580 CPPUNIT_ASSERT( cont.count(1) == 1 );
581 CPPUNIT_ASSERT( cont.count(5) == 0 );
583 CPPUNIT_ASSERT( cont.find(2) != cont.end() )
594 Container cont; local
614 Container cont; local
635 Container cont; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
map_test.cpp 341 Container cont; local
342 cont.insert(value(Key(1), 1));
343 cont.insert(value(Key(2), 2));
344 cont.insert(value(Key(3), 3));
345 cont.insert(value(Key(4), 4));
347 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
348 CPPUNIT_ASSERT( cont.count(1) == 1 );
349 CPPUNIT_ASSERT( cont.count(5) == 0 );
351 CPPUNIT_ASSERT( cont.find(2) != cont.end() )
366 Container cont; local
390 Container cont; local
415 Container cont; local
    [all...]
unordered_test.cpp 573 Container cont; local
574 cont.insert(Key(1));
575 cont.insert(Key(2));
576 cont.insert(Key(3));
577 cont.insert(Key(4));
579 CPPUNIT_ASSERT( cont.count(Key(1)) == 1 );
580 CPPUNIT_ASSERT( cont.count(1) == 1 );
581 CPPUNIT_ASSERT( cont.count(5) == 0 );
583 CPPUNIT_ASSERT( cont.find(2) != cont.end() )
594 Container cont; local
614 Container cont; local
635 Container cont; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
x_long.c 72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
105 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
131 if(cont) {
132 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
134 cont[i] = (unsigned char)(utmp & 0xff);
135 if(ltmp < 0) cont[i] ^= 0xff;
142 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
154 if(len && (cont[0] & 0x80)) neg = 1;
159 if(neg) utmp |= cont[i] ^ 0xff
    [all...]
x_bignum.c 75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
119 if(cont) {
120 if(pad) *cont++ = 0;
121 BN_bn2bin(bn, cont);
126 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
132 if(!BN_bin2bn(cont, len, bn)) {
  /external/openssl/crypto/asn1/
x_long.c 72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
105 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
131 if(cont) {
132 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
134 cont[i] = (unsigned char)(utmp & 0xff);
135 if(ltmp < 0) cont[i] ^= 0xff;
142 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
154 if(len && (cont[0] & 0x80)) neg = 1;
159 if(neg) utmp |= cont[i] ^ 0xff
    [all...]
x_bignum.c 75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
119 if(cont) {
120 if(pad) *cont++ = 0;
121 BN_bn2bin(bn, cont);
126 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
132 if(!BN_bin2bn(cont, len, bn)) {
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
HandshakeCompletedEventTest.java 38 SSLContext cont = SSLContext.getInstance("TLS"); local
39 cont.init(null, null, null);
40 SSLSocket soc = (SSLSocket) cont.getSocketFactory().createSocket();
SSLSessionBindingEventTest.java 38 SSLContext cont = SSLContext.getInstance("TLS"); local
39 cont.init(null, null, null);
40 SSLSocket soc = (SSLSocket) cont.getSocketFactory().createSocket();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
javascript.js 70 function ret(tp, style, cont) {
71 type = tp; content = cont;
239 function cont() {
293 if (type == wanted) return cont();
295 else return cont(arguments.callee);
300 if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex);
301 if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
302 if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
303 if (type == "{") return cont(pushlex("}"), block, poplex);
304 if (type == ";") return cont();
    [all...]
  /external/libunwind/src/setjmp/
siglongjmp.c 65 int *cont; local
87 cont = &_UI_longjmp_cont;
112 cont = &_UI_siglongjmp_cont;
117 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) (uintptr_t) cont))
  /external/icu/icu4c/source/test/cintltst/
uenumtst.c 47 #define cont ((chArrayContext *)en->context) macro
51 if(cont->currUChar != NULL) {
52 free(cont->currUChar);
53 cont->currUChar = NULL;
60 return cont->maxIndex;
65 if(cont->currIndex >= cont->maxIndex) {
69 if(cont->currUChar == NULL) {
70 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar));
73 cont->currChar = (cont->array)[cont->currIndex]
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 54 cont:
58 goto cont;
  /external/valgrind/main/memcheck/tests/
reach_thread_register.c 15 int cont = 1; variable
24 while (cont) {
  /external/openssl/crypto/cms/
cms_smime.c 152 BIO *cont; local
159 cont = CMS_dataInit(cms, NULL);
160 if (!cont)
162 r = cms_copy_content(out, cont, flags);
163 BIO_free_all(cont);
185 BIO *cont; local
196 cont = CMS_dataInit(cms, dcont);
197 if (!cont)
199 r = cms_copy_content(out, cont, flags);
201 r = cms_DigestedData_do_final(cms, cont, 1)
230 BIO *cont; local
738 BIO *cont; local
797 BIO *cont; local
    [all...]
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ClientTest.java 61 EditText cont = (EditText) findViewById(R.id.cont);
71 cont.getText().toString(),
81 cont.getText().toString(),
97 EditText cont = (EditText) findViewById(R.id.cont);
106 cont.getText().toString(),
120 EditText cont = (EditText) findViewById(R.id.cont);
135 cont.getText().toString()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
try.js 178 var cont = true;
179 while (cont) {
183 cont = false;
197 var cont = true;
198 while (cont) {
202 cont = false;
287 var cont = true;
288 while (cont) {
294 cont = false;
311 var cont = true
    [all...]
  /external/qemu/slirp/
cksum.c 64 goto cont;
101 goto cont;
121 cont:
  /external/qemu/slirp-android/
cksum.c 64 goto cont;
101 goto cont;
121 cont:

Completed in 1313 milliseconds

1 2 3 4 5