HomeSort by relevance Sort by last modified time
    Searched defs:cp (Results 26 - 50 of 437) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/input.output/file.streams/c.files/
cstdio.disabled.cpp 89 char* cp = 0; local
94 static_assert((std::is_same<decltype(std::tmpnam(cp)), char*>::value), "");
99 static_assert((std::is_same<decltype(std::setbuf(fp,cp)), void>::value), "");
105 static_assert((std::is_same<decltype(std::snprintf(cp,0," ")), int>::value), "");
106 static_assert((std::is_same<decltype(std::sprintf(cp," ")), int>::value), "");
112 static_assert((std::is_same<decltype(std::vsnprintf(cp,0," ",va)), int>::value), "");
113 static_assert((std::is_same<decltype(std::vsprintf(cp," ",va)), int>::value), "");
116 static_assert((std::is_same<decltype(std::fgets(cp,0,fp)), char*>::value), "");
122 static_assert((std::is_same<decltype(std::gets(cp)), char*>::value), "");
  /external/libcxx/test/strings/c.strings/
cstring.pass.cpp 24 char* cp = 0; local
28 static_assert((std::is_same<decltype(std::strcpy(cp, cpc)), char*>::value), "");
29 static_assert((std::is_same<decltype(std::strncpy(cp, cpc, s)), char*>::value), "");
30 static_assert((std::is_same<decltype(std::strcat(cp, cpc)), char*>::value), "");
31 static_assert((std::is_same<decltype(std::strncat(cp, cpc, s)), char*>::value), "");
36 static_assert((std::is_same<decltype(std::strxfrm(cp, cpc, s)), std::size_t>::value), "");
40 static_assert((std::is_same<decltype(std::strchr(cp, 0)), char*>::value), "");
43 static_assert((std::is_same<decltype(std::strpbrk(cp, cpc)), char*>::value), "");
45 static_assert((std::is_same<decltype(std::strrchr(cp, 0)), char*>::value), "");
48 static_assert((std::is_same<decltype(std::strstr(cp, cpc)), char*>::value), "")
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
UnicodeReader.cpp 35 const char *cp = ""; local
53 cp = "UTF-16BE";
57 cp = "UTF-32LE";
60 cp = "UTF-16LE";
64 cp = "UTF-8";
67 cp = "SCSU";
71 cp = "UTF-32BE";
102 UnicodeString myText(byteBuffer, fileSize, cp);
  /external/e2fsprogs/intl/
explodename.c 59 char *cp; local
75 *language = cp = name;
76 cp = _nl_find_language (*language);
78 if (*language == cp)
81 cp = strchr (*language, '\0');
82 else if (cp[0] == '_')
85 cp[0] = '\0';
86 *territory = ++cp;
88 while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@
    [all...]
  /external/e2fsprogs/lib/ss/
error.c 38 register char *cp; local
44 cp = ret_val;
47 *cp++ = *cp1++;
48 *cp++ = ' ';
49 *cp++ = '(';
52 *cp++ = *cp1++;
53 *cp++ = ')';
54 *cp = '\0';
parse.c 47 register char **argv, *cp; local
62 cp = line_ptr; /* cp is for output */
79 cp = line_ptr++;
81 argv[argc++] = cp;
87 cp = line_ptr;
99 *cp++ = '\0';
103 *cp++ = '\0';
112 *cp++ = *line_ptr++;
125 *cp++ = '"'
    [all...]
get_readline.c 47 char *tmp, *cp, *next; local
63 for (cp = tmp; cp; cp = next) {
64 next = strchr(cp, ':');
67 if (*cp == 0)
69 if ((handle = dlopen(cp, RTLD_NOW))) {
70 /* printf("Using %s for readline library\n", cp); */
  /external/e2fsprogs/misc/
base_device.c 43 char *str, *cp; local
51 cp = str;
54 if (strncmp(cp, "/dev/", 5) != 0)
56 cp += 5;
59 if (strncmp(cp, "dsk/", 4) == 0)
60 cp += 4;
66 if (cp[0] == 'm' && cp[1] == 'd') {
67 *(cp+2) = 0;
72 if (strncmp(cp, "rd/", 3) == 0)
153 char buf[256], *cp; local
    [all...]
  /external/icu/icu4c/source/samples/layout/
UnicodeReader.cpp 35 const char *cp = ""; local
53 cp = "UTF-16BE";
57 cp = "UTF-32LE";
60 cp = "UTF-16LE";
64 cp = "UTF-8";
67 cp = "SCSU";
71 cp = "UTF-32BE";
102 UnicodeString myText(byteBuffer, fileSize, cp);
  /external/oprofile/libop/
op_parse_event.c 65 char const * cp = events[i]; local
66 char * part = next_part(&cp);
76 fprintf(stderr, "Invalid event %s\n", cp);
82 part = next_part(&cp);
93 part = next_part(&cp);
102 part = next_part(&cp);
110 part = next_part(&cp);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CollectionCertStoreParametersTest.java 57 CertStoreParameters cp = new CollectionCertStoreParameters(); local
59 cp instanceof CollectionCertStoreParameters);
68 CollectionCertStoreParameters cp = new CollectionCertStoreParameters(); local
69 Collection c = cp.getCollection();
120 CollectionCertStoreParameters cp = local
123 assertTrue("isRefUsed_1", certificates == cp.getCollection());
125 assertTrue("isEmpty", cp.getCollection().isEmpty());
130 assertTrue("isRefUsed_2", certificates.equals(cp.getCollection()));
200 CollectionCertStoreParameters cp = local
202 String s = cp.toString()
213 CollectionCertStoreParameters cp = local
224 CollectionCertStoreParameters cp = new CollectionCertStoreParameters(); local
234 CollectionCertStoreParameters cp = local
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepFind.java 38 ClassPathIterator cp = new ClassPathIterator(curDir, to, null); local
40 while (cp.hasNext()) {
41 ClassPathEntry entry = cp.next();
53 cp.close();
57 cp = new ClassPathIterator(curDir, from, null);
59 while (cp.hasNext()) {
60 ClassPathEntry entry = cp.next();
73 cp.close();
StringDumper.java 30 ClassPathIterator cp = new ClassPathIterator(classPath); local
32 while (cp.hasNext()) {
33 ClassPathEntry entry = cp.next();
47 cp.close();
  /bionic/libc/dns/nameser/
ns_samedomain.c 58 const char *cp; local
144 cp = a + diff;
145 return (strncasecmp(cp, b, lb) == 0);
  /bionic/libc/dns/resolv/
res_mkquery.c 128 register u_char *cp, *ep; local
150 cp = buf + HFIXEDSZ;
162 if (ep - cp < QFIXEDSZ)
164 if ((n = dn_comp(dname, cp, ep - cp - QFIXEDSZ, dnptrs,
167 cp += n;
168 ns_put16(type, cp);
169 cp += INT16SZ;
170 ns_put16(class, cp);
171 cp += INT16SZ
238 register u_char *cp, *ep; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
setenv.c 48 char **P, *cp; local
52 for (cp = str; *cp && *cp != '='; ++cp)
54 if (*cp != '=') {
59 if (__findenv(str, (int)(cp - str), &offset) != NULL) {
62 while (__findenv(str, (int)(cp - str), &offset)) {
  /dalvik/libdex/
OptInvocation.cpp 76 char* cp; local
109 cp = absoluteFile + 1;
110 while (*cp != '\0') {
111 if (*cp == '/') {
112 *cp = '@';
114 cp++;
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
x_long.c 112 char *cp = (char *)pval; local
115 memcpy(&ltmp, cp, sizeof(long));
149 char *cp = (char *)pval; local
172 memcpy(cp, &ltmp, sizeof(long));
  /external/clang/test/Sema/
overloadable-complex.c 34 char *cp = promote_or_convert(fc); // expected-error{{call to 'promote_or_convert' is ambiguous}} local
42 int *cp = promote_or_convert2(fc); local
49 char *cp = promote_or_convert3(sc); local
  /external/clang/test/SemaCXX/
complex-overload.cpp 34 char *cp = promote_or_convert(fc); local
42 int *cp = promote_or_convert2(fc); local
  /external/e2fsprogs/lib/e2p/
uuid.c 27 __u8 *cp; local
30 for (i=0, cp = uu; i < 16; i++)
31 if (*cp++)
  /external/e2fsprogs/lib/ext2fs/
bitops.c 136 const unsigned char *cp = addr; local
140 while (((((unsigned long) cp) & 3) != 0) && (nbytes > 0)) {
141 res += popcount8(*cp++);
144 p = (const __u32 *) cp;
150 cp = (const unsigned char *) p;
153 res += popcount8(*cp++);
  /external/e2fsprogs/resize/
test_extent.c 22 char *cp, *cmd, *arg1, *arg2; local
43 cp = strchr(buf, '\n');
44 if (cp)
45 *cp = '\0';
53 cp = strchr(buf, ' ');
54 if (cp) {
55 *cp++ = '\0';
56 arg1 = cp;
59 cp = strchr(cp, ' ');
    [all...]
  /external/javassist/sample/evolve/
DemoLoader.java 31 ClassPool cp = ClassPool.getDefault(); local
33 cl.addTranslator(cp, translator);
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 31 EnclosingMethodAttribute(ConstPool cp, int n, DataInputStream in)
34 super(cp, n, in);
40 * @param cp a constant pool table.
45 public EnclosingMethodAttribute(ConstPool cp, String className,
47 super(cp, tag);
48 int ci = cp.addClassInfo(className);
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
62 * @param cp a constant pool table.
65 public EnclosingMethodAttribute(ConstPool cp, String className) {
66 super(cp, tag)
102 ConstPool cp = getConstPool(); local
112 ConstPool cp = getConstPool(); local
    [all...]

Completed in 4637 milliseconds

12 3 4 5 6 7 8 91011>>