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

1 2 3 4

  /bionic/libc/string/
strspn.c 45 cont:
49 goto cont;
strtok.c 54 cont:
58 goto cont;
  /external/icu4c/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/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 39 SSLContext cont = SSLContext.getInstance("TLS"); local
40 cont.init(null, null, null);
41 SSLSocket soc = (SSLSocket )cont.getSocketFactory().createSocket();
SSLSessionBindingEventTest.java 39 SSLContext cont = SSLContext.getInstance("TLS"); local
40 cont.init(null, null, null);
41 SSLSocket soc = (SSLSocket )cont.getSocketFactory().createSocket();
  /external/grub/stage2/
common.c 110 int cont; local
115 for (cont = 0, addr = mbi.mmap_addr;
126 cont++;
130 while (cont);
145 unsigned long cont, memtmp, addr; local
179 cont = 0;
183 cont = get_mmap_entry ((void *) addr, cont);
192 while (cont);
223 cont = memtmp & ~0xFFFF
    [all...]
  /bionic/libc/wchar/
wcstok.c 54 cont:
58 goto cont;
  /external/kernel-headers/original/linux/
attribute_container.h 39 int attribute_container_register(struct attribute_container *cont);
40 int attribute_container_unregister(struct attribute_container *cont);
62 int attribute_container_add_class_device_adapter(struct attribute_container *cont,
  /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/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:
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 32 void quuz(const Container &cont) {
  /external/openssl/crypto/evp/
bio_ok.c 151 int cont; /* <= 0 when finished */ member in struct:ok_struct
188 ctx->cont=1;
275 if (ctx->cont <= 0) break;
308 ctx->cont= 0;
361 ctx->cont=1;
368 if (ctx->cont <= 0)
396 ctx->cont=(int)ret;
407 ret=(long)ctx->cont;
517 ctx->cont= 0;
572 ctx->cont= 0
    [all...]
bio_enc.c 80 int cont; /* <= 0 when finished */ member in struct:enc_struct
118 ctx->cont=1;
175 if (ctx->cont <= 0) break;
186 ctx->cont=i;
204 ctx->cont=1;
228 return((ret == 0)?ctx->cont:ret);
306 if (ctx->cont <= 0)
  /external/quake/quake/src/QW/client/
pmove.c 577 int cont; local
620 cont = PM_PointContents (point);
622 if (cont <= CONTENTS_WATER)
624 watertype = cont;
627 cont = PM_PointContents (point);
628 if (cont <= CONTENTS_WATER)
632 cont = PM_PointContents (point);
633 if (cont <= CONTENTS_WATER)
694 int cont; local
712 cont = PM_PointContents (spot)
    [all...]
  /external/collada/src/dae/
daeIDRef.cpp 86 void daeIDRef::setContainer(daeElement* cont) {
87 container = cont;

Completed in 3219 milliseconds

1 2 3 4