HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 226 - 250 of 561) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/zlib/src/examples/
gun.c 29 with the suffix stripped. On success, the original file is deleted. On
34 checking for a proper suffix), no output will be written, and no files
158 the first 256 entries of prefix[] and suffix[] are never used, could
163 unsigned char suffix[65536]; /* one-character LZW suffix */ variable
211 unsigned end; /* last valid entry in prefix/suffix tables */
331 *p++ = suffix[code];
342 suffix[end] = (unsigned char)final;
648 /* decompress each file to the same name with the suffix removed */
  /external/clang/lib/CodeGen/
CodeGenTypes.h 228 /// optional suffix and name the given LLVM type using it.
230 StringRef suffix);
CodeGenTypes.cpp 53 StringRef suffix) {
77 if (!suffix.empty())
78 OS << suffix; local
  /external/dnsmasq/src/
lease.c 459 char *suffix = get_domain(lease->addr); local
461 if (suffix && (new_fqdn = whine_malloc(strlen(new_name) + strlen(suffix) + 2)))
465 strcat(new_fqdn, suffix);
  /external/grub/util/
mkbimage 270 suffix=`echo "$tarfile" | sed -n 's/^.*\.\([targbz2]\{2,3\}\)$/\1/p'`
271 case "$suffix" in
  /external/libvpx/libvpx/tools/
ftfy.sh 36 --suffix=none --quiet "$@"
  /external/llvm/test/MC/ARM/
vpush-vpop.s 10 @ optional size suffix
  /external/skia/legacy/src/core/
SkString.cpp 45 bool SkStrEndsWith(const char string[], const char suffix[]) {
47 SkASSERT(suffix);
49 size_t suffixLen = strlen(suffix);
51 !strncmp(string + strLen - suffixLen, suffix, suffixLen);
  /external/smack/src/org/xbill/DNS/
Name.java 421 * @param suffix The suffix name.
426 concatenate(Name prefix, Name suffix) throws NameTooLongException {
431 newname.append(suffix.name, suffix.offset(0), suffix.getlabels());
  /external/webkit/Tools/android/flex-2.5.4a/
main.c 280 char *suffix; local
283 suffix = "cc";
285 suffix = "c";
288 prefix, suffix );
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 354 char *suffix, dest_name[500]; local
365 suffix = full_name + seprefixlen;
369 suffix);
374 mntpoint, suffix);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 506 static bool IsFileSuffixSupported(const String8& suffix);
  /frameworks/native/cmds/installd/
installd.h 181 int copy_and_append(dir_rec_t* dst, const dir_rec_t* src, const char* suffix);
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XString.java 595 * Tests if this string ends with the specified suffix.
597 * @param suffix the suffix.
599 * argument is a suffix of the character sequence represented by
604 * @exception java.lang.NullPointerException if <code>suffix</code> is
607 public boolean endsWith(String suffix)
609 return str().endsWith(suffix);
    [all...]
  /external/chromium/chrome/common/
logging_chrome.cc 167 std::string suffix = base::StringPrintf("_%02d%02d%02d-%02d%02d%02d", local
174 return base_path.InsertBeforeExtension(suffix);
  /external/clang/utils/
token-delta.py 135 def patchName(name, suffix):
137 return base + '.' + suffix + ext
  /frameworks/base/core/java/android/view/
ViewDebug.java 1067 final String suffix = "()"; local
1138 final String suffix = ""; local
    [all...]
  /libcore/luni/src/main/java/java/net/
NetworkInterface.java 139 String suffix = " " + interfaceName; local
142 if (!line.endsWith(suffix)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 305 String suffix = (i == path.size() -1) ? constraint.to.id : s; local
307 stripLayoutAttributePrefix(constraint.type.name), suffix);
  /external/opencv/cxcore/src/
_cxipp.h     [all...]
  /external/icu4c/test/intltest/
icusvtst.cpp 851 UnicodeString suffix = ""; local
866 suffix = "like the Valley, you know? Let's go to the mall!";
868 suffix = "time to hit those gnarly waves, Dude!!!";
870 suffix = "all systems go. T-Minus 9, 8, 7...";
872 suffix = "No Habla Englais";
875 suffix = ICUResourceBundleFactory::getDisplayName(id, locale, result);
878 result = prefix + suffix;
    [all...]
  /external/chromium/base/
file_util_posix.cc 284 // the suffix after from_path onto to_path to create the target_path.
285 std::string suffix(&current.value().c_str()[from_path_base.value().size()]);
287 if (!suffix.empty()) {
288 DCHECK_EQ('/', suffix[0]);
289 suffix.erase(0, 1);
291 const FilePath target_path = to_path.Append(suffix);
  /external/linux-tools-perf/
builtin-script.c 763 static const char *ends_with(const char *str, const char *suffix)
765 size_t suffix_len = strlen(suffix);
770 if (!strncmp(p, suffix, suffix_len))
881 static char *get_script_path(const char *script_root, const char *suffix)
906 str = (char *)ends_with(__script_root, suffix);
  /external/openssl/apps/
apps.c     [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardBuilder.java 244 final String suffix = contentValues.getAsString(StructuredName.SUFFIX); local
254 TextUtils.isEmpty(suffix) && TextUtils.isEmpty(phoneticFamilyName) &&
330 final String suffix = contentValues.getAsString(StructuredName.SUFFIX); local
336 && TextUtils.isEmpty(suffix)) {
354 final String escapedSuffix = escapeCharacters(suffix);
390 familyName, middleName, givenName, prefix, suffix));
434 final String suffix = contentValues.getAsString(StructuredName.SUFFIX); local
    [all...]

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 91011>>