HomeSort by relevance Sort by last modified time
    Searched refs:cp (Results 276 - 300 of 799) sorted by null

<<11121314151617181920>>

  /external/chromium/sdch/open-vcdiff/packages/
deb.sh 59 cp -a "packages/deb" "debian"
  /external/chromium/third_party/icu/source/i18n/
uspoof_buildwsconf.cpp 223 UChar32 cp; local
224 for (cp=startCodePoint; cp<=endCodePoint; cp++) {
225 int32_t setIndex = utrie2_get32(table, cp);
236 bsset->codePoint = cp;
247 utrie2_set32(table, cp, setIndex, &status);
255 UScriptCode cpScript = uscript_getScript(cp, &status);
  /external/chromium/third_party/icu/source/tools/toolutil/
ucbuf.h 157 * @param cp Output param to receive the detected encoding
164 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv,
176 * @param cp Output param to receive the detected encoding
184 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* status);
  /external/icu4c/i18n/
uspoof_wsconf.cpp 223 UChar32 cp; local
224 for (cp=startCodePoint; cp<=endCodePoint; cp++) {
225 int32_t setIndex = utrie2_get32(table, cp);
236 bsset->codePoint = cp;
247 utrie2_set32(table, cp, setIndex, &status);
255 UScriptCode cpScript = uscript_getScript(cp, &status);
  /external/icu4c/tools/toolutil/
ucbuf.h 157 * @param cp Output param to receive the detected encoding
164 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv,
176 * @param cp Output param to receive the detected encoding
184 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* status);
  /dalvik/dalvikvm/
Main.c 184 strcmp(argv[argIdx], "-cp") == 0)
241 char* cp; local
245 for (cp = slashClass; *cp != '\0'; cp++)
246 if (*cp == '.')
247 *cp = '/';
  /external/bluetooth/glib/
glib-gettextize.in 152 { $echo "Copying file $file"; cp $file "$srcdir/$auxdir$file"; }
157 { $echo "Copying file $file"; cp $file "$srcdir/$file"; }
167 { $echo "Copying file po/$file"; cp $file "$srcdir/po/$file"; }
  /external/grub/
missing 223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
253 cp "$SRCFILE" lex.yy.c
  /external/iptables/extensions/
libip6t_frag.c 64 char *cp; local
67 if ((cp = strchr(buffer, ':')) == NULL)
70 *cp = '\0';
71 cp++;
74 ids[1] = cp[0] ? parse_frag_id(cp,"id") : 0xFFFFFFFF;
  /external/libffi/
missing 223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
253 cp "$SRCFILE" lex.yy.c
  /external/webkit/WebCore/platform/graphics/
WidthIterator.cpp 75 const UChar* cp = m_run.data(currentCharacter); local
87 UChar32 c = *cp;
108 UChar low = cp[1];
173 if (currentCharacter != 0 && !Font::treatAsSpace(cp[-1]) && m_font->wordSpacing())
179 cp += clusterLength;
196 if ((m_run.applyWordRounding() && currentCharacter < m_run.length() && Font::isRoundingHackCharacter(*cp))
  /bionic/libc/netbsd/resolv/
res_send.c 282 const u_char *cp = buf + HFIXEDSZ; local
289 n = dn_expand(buf, eom, cp, tname, sizeof tname);
292 cp += n;
293 if (cp + 2 * INT16SZ > eom)
295 ttype = ns_get16(cp); cp += INT16SZ;
296 tclass = ns_get16(cp); cp += INT16SZ;
319 const u_char *cp = buf1 + HFIXEDSZ; local
339 n = dn_expand(buf1, eom1, cp, tname, sizeof tname)
683 u_char *cp; local
    [all...]
  /external/dbus/dbus/
dbus-threads.c 352 DBusCondVar **cp; local
354 cp = (DBusCondVar **)link->data;
355 _dbus_assert (*cp == _DBUS_DUMMY_CONDVAR);
357 *cp = _dbus_condvar_new ();
358 if (*cp == NULL)
377 DBusCondVar **cp; local
379 cp = (DBusCondVar **)link->data;
381 if (*cp != _DBUS_DUMMY_CONDVAR)
382 _dbus_condvar_free (*cp);
386 *cp = _DBUS_DUMMY_CONDVAR
    [all...]
  /external/elfutils/libdw/
dwarf_getsrclines.c 258 char *cp = new_file->info.name; local
266 cp = stpcpy (cp, dirarray[diridx]->dir);
268 *cp++ = '/';
269 strcpy (cp, fname);
413 char *cp = new_file->info.name; local
421 cp = stpcpy (cp, dirarray[diridx]->dir);
422 *cp++ = '/';
423 strcpy (cp, fname)
    [all...]
  /external/quake/quake/src/WinQuake/
Makefile.linuxi386 1118 cp $(MOUNT_DIR)/quake.gif $(RPMROOT)/SOURCES/quake.gif
1122 cp $(MOUNT_DIR)/docs/README $(RPMDIR)/$(INSTALLDIR)/.
1123 cp $(BUILD_RELEASE_DIR)/bin/squake $(RPMDIR)/$(INSTALLDIR)/squake
1125 cp $(BUILD_RELEASE_DIR)/bin/quake.x11 $(RPMDIR)/$(INSTALLDIR)/quake.x11
1127 cp $(BUILD_RELEASE_DIR)/bin/glquake $(RPMDIR)/$(INSTALLDIR)/glquake
1129 cp $(BUILD_RELEASE_DIR)/bin/glquake.glx $(RPMDIR)/$(INSTALLDIR)/glquake.glx
1131 cp $(BUILD_RELEASE_DIR)/bin/glquake.3dfxgl $(RPMDIR)/$(INSTALLDIR)/glquake.3dfxgl
1134 cp $(TDFXGL_DIR)/release$(ARCH)$(GLIBC)/lib3dfxgl.so $(RPMDIR)/usr/lib/lib3dfxgl.so
1135 cp $(MESA_DIR)/lib/libMesaGL.so.2.6 $(RPMDIR)/usr/lib/libMesaGL.so.2.6
1137 cp quake.spec $(RPMROOT)/SPECS/
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java 358 CertPath cp = mcp.get("X.509"); local
364 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]);
392 CertPath cp = mcp.get("X.509"); local
395 tE = new CertPathValidatorException(msgs[i], tCause, cp, -1);
412 "getCertPath() must return ".concat(cp.toString()), tE
413 .getCertPath(), cp);
467 CertPath cp = mcp.get("X.509"); local
470 tE = new CertPathValidatorException(msgs[i], tCause, cp, -1);
474 "getCertPath() must return ".concat(cp.toString()), tE
475 .getCertPath(), cp);
520 CertPath cp = mcp.get("X.509"); local
    [all...]
  /external/bison/src/
scan-gram.l 136 static void handle_dollar (int token_type, char *cp, location loc);
137 static void handle_at (int token_type, char *cp, location loc);
841 char *cp = text + 1;
847 if (*cp == '<')
849 type_name = ++cp;
850 while (*cp != '>')
851 ++cp;
852 *cp = '\0';
853 ++cp;
856 if (*cp == '$'
    [all...]
  /external/bluetooth/bluez/src/
security.c 399 disconnect_cp cp; local
401 memset(&cp, 0, sizeof(cp));
402 cp.handle = htobs(handle);
403 cp.reason = HCI_OE_LOW_RESOURCES;
406 DISCONNECT_CP_SIZE, &cp);
481 io_capability_neg_reply_cp cp; local
482 memset(&cp, 0, sizeof(cp));
483 bacpy(&cp.bdaddr, dba)
896 read_remote_version_cp cp; local
1116 read_stored_link_key_cp cp; local
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.c 3428 yaffs_CheckpointValidity cp; local
3440 yaffs_CheckpointValidity cp; local
3487 yaffs_CheckpointDevice cp; local
3516 yaffs_CheckpointDevice cp; local
3698 yaffs_CheckpointObject cp; local
3739 yaffs_CheckpointObject cp; local
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.c 170 char buf[80], *cp, *t; local
178 cp = buf;
179 if (!isspace(*cp)) {
180 while (*cp && !isspace(*cp))
181 cp++;
183 while (*cp && isspace(*cp))
184 cp++;
185 if ((t = strchr(cp, '\n')) != NULL
208 char buf[1024], *cp, *t; local
600 char uuid_str[17], label_str[129], *cp; local
    [all...]
  /dalvik/vm/
Native.c 622 char* cp; local
628 for (i = 0, cp = mangle; i < charLen; i++) {
632 sprintf(cp, "_0%04x", ch);
633 cp += 6;
637 *cp++ = '_';
638 *cp++ = '1';
641 *cp++ = '_';
642 *cp++ = '2';
645 *cp++ = '_';
646 *cp++ = '3'
    [all...]
  /external/dnsmasq/src/
option.c 468 static void unhide_metas(char *cp)
470 if (cp)
471 for(; *cp; cp++)
472 *cp = unhide_meta(*cp);
491 static char *opt_string_alloc(char *cp)
495 if (cp && strlen(cp) != 0)
497 ret = opt_malloc(strlen(cp)+1)
669 char lenchar = 0, *cp; local
905 unsigned char *cp = q++; local
1660 char *cp, *a[5] = { NULL, NULL, NULL, NULL, NULL }; local
1870 char *cp, *lastp = NULL, last = 0; local
2712 struct dhcp_config *configs, *cp, **up; local
2749 struct dhcp_opt *opts, *cp, **up; local
    [all...]
  /external/tcpdump/
print-udp.c 425 register const u_char *cp; local
442 cp = (u_char *)(up + 1);
459 if (cp > snapend) {
505 while (cp < ep)
506 cp = rtcp_print(cp, ep);
516 cnfp_print(cp, (const u_char *)ip);
521 tftp_print(cp, length);
561 if (TTEST(((struct LAP *)cp)->type) &&
562 ((struct LAP *)cp)->type == lapDDP &
    [all...]
  /external/e2fsprogs/intl/
relocatable.c 217 const char *cp = curr_installdir + strlen (curr_installdir); local
221 while (rp > rel_installdir && cp > cp_base)
225 const char *cpi = cp;
252 cp = cpi;
260 size_t curr_prefix_len = cp - curr_installdir;
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 239 char buf[1024], *cp; local
258 if ((cp = strchr(buf, ' ')) != NULL)
259 *cp = 0;
260 if ((cp = strchr(buf, '\t')) != NULL)
261 *cp = 0;

Completed in 1776 milliseconds

<<11121314151617181920>>