HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 76 - 100 of 265) sorted by null

1 2 34 5 6 7 8 91011

  /packages/apps/Email/src/org/apache/commons/io/filefilter/
FileFilterUtils.java 59 * @param suffix the filename suffix
60 * @return a suffix checking filter
62 public static IOFileFilter suffixFileFilter(String suffix) {
63 return new SuffixFileFilter(suffix);
  /external/bluetooth/bluez/tools/
hciattach_st.c 119 static int load_file(int dd, uint16_t version, const char *suffix)
149 if (strncmp(d->d_name + strlen(d->d_name) - strlen(suffix),
150 suffix, strlen(suffix)))
  /external/chromium/third_party/icu/source/common/
udata.c 431 const char *suffix; /* item suffix (can be null) */ member in struct:__anon2984
446 * to match, checks last 4 chars of suffix with
459 * @param suffix Optional item suffix, if not-null (ex. ".dat") then 'path' can contain 'item' explicitly.
464 const char *item, const char *suffix, UBool doCheckLastFour)
467 fprintf(stderr, "SUFFIX1=%s PATH=%s\n", suffix, path);
525 fprintf(stderr, "SUFFIX=%s [%p]\n", suffix, suffix);
    [all...]
  /external/chromium/third_party/icu/source/tools/gencase/
gencase.h 100 writeUCDFilename(char *basename, const char *filename, const char *suffix);
  /external/icu4c/common/
udata.c 467 const char *suffix; /* item suffix (can be null) */ member in struct:__anon3972
482 * to match, checks last 4 chars of suffix with
495 * @param suffix Optional item suffix, if not-null (ex. ".dat") then 'path' can contain 'item' explicitly.
500 const char *item, const char *suffix, UBool doCheckLastFour)
503 fprintf(stderr, "SUFFIX1=%s PATH=%s\n", suffix, path);
561 fprintf(stderr, "SUFFIX=%s [%p]\n", suffix, suffix);
    [all...]
  /external/icu4c/tools/gencase/
gencase.h 104 writeUCDFilename(char *basename, const char *filename, const char *suffix);
  /external/jdiff/src/jdiff/
JDiff.java 102 int suffix = oldFileName.lastIndexOf('.'); local
103 String commentsFileName = "user_comments_for_" + oldFileName.substring(0, suffix);
104 suffix = newFileName.lastIndexOf('.');
105 commentsFileName += "_to_" + newFileName.substring(0, suffix) + ".xml";
  /external/webkit/WebCore/page/
FrameTree.cpp 138 // Suffix buffer has more than enough space for:
144 char suffix[40]; local
145 snprintf(suffix, sizeof(suffix), "/<!--frame%u-->-->", childCount());
147 name += suffix;
  /external/webkit/WebCore/platform/mac/
WebCoreNSStringExtras.mm 39 BOOL hasCaseInsensitiveSuffix(NSString *string, NSString *suffix)
41 return [string rangeOfString:suffix options:(NSCaseInsensitiveSearch | NSBackwardsSearch | NSAnchoredSearch)].location != NSNotFound;
  /external/chromium/third_party/icu/source/tools/toolutil/
pkgitems.cpp 60 * and a suffix
63 checkIDSuffix(const char *itemName, const char *id, int32_t idLength, const char *suffix,
83 suffixLength=(int32_t)strlen(suffix);
94 memcpy(target+treeLength+idLength, suffix, suffixLength+1); // +1 includes the terminating NUL
103 const char *itemID, *parent, *parentLimit, *suffix; local
114 // get the item suffix
115 suffix=strrchr(itemID, '.');
116 if(suffix==NULL) {
117 // empty suffix, point to the end of the string
118 suffix=strrchr(itemID, 0)
    [all...]
  /external/openssl/crypto/x509/
by_dir.c 79 int suffix; member in struct:lookup_dir_hashes_st
346 k = hent->suffix;
430 /* If a CRL, update the last file suffix added for this */
450 hent->suffix = k;
459 else if (hent->suffix < k)
460 hent->suffix = k;
  /external/clearsilver/cgi/
html.c 365 int suffix=0; local
366 if (last_char == '.' || last_char == ',') { suffix=1; }
387 url_len = 7 + parts[i].end - x - suffix;
396 strncat(url, src + x, parts[i].end - x - suffix);
400 url_len = parts[i].end - x - suffix;
408 strncpy(url, src + x, parts[i].end - x - suffix);
436 err = string_appendn (out, src + x, parts[i].end - x - suffix);
445 err = html_escape_alloc((src + x), parts[i].end - x - suffix, &esc);
452 if (suffix) {
  /external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
SDL_sysjoystick.c 354 const char* suffix; local
356 suffix = NULL;
359 suffix = suffixs + (logicalno*2);
361 if (slen + 4 < len && suffix) {
364 namebuf[slen++] = suffix[0];
365 namebuf[slen++] = suffix[1];
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 66 static jlong readTotal(char const* suffix) {
81 strlcat(filename, suffix, sizeof(filename));
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 111 def makePattern(prefix, suffix, buckets, isWebUrl=False):
126 output += suffix
  /libcore/luni/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 355 * Tests if this string ends with the specified suffix.
357 * @param suffix the suffix.
359 * argument is a suffix of the character sequence represented by
364 * @exception java.lang.NullPointerException if <code>suffix</code> is
367 public boolean endsWith(String suffix)
369 return m_str.endsWith(suffix);
XMLString.java 298 * Tests if this string ends with the specified suffix.
300 * @param suffix the suffix.
302 * argument is a suffix of the character sequence represented by
307 * @exception java.lang.NullPointerException if <code>suffix</code> is
310 public abstract boolean endsWith(String suffix);
  /system/extras/ext4_utils/
Android.mk 78 # We don't need any additional suffix.
  /build/core/
multi_prebuilt.mk 41 # name will be the filename with the suffix removed.
67 $(eval LOCAL_MODULE_SUFFIX := $(suffix $(LOCAL_SRC_FILES))) \
  /external/libffi/src/
closures.c 209 static const char suffix[] = "/ffiXXXXXX"; local
211 char *tempname = __builtin_alloca (lendir + sizeof (suffix));
217 memcpy (tempname + lendir, suffix, sizeof (suffix));
  /dalvik/vm/
JarFile.c 36 * but with the supplied suffix. E.g.,
43 static int openAlternateSuffix(const char *fileName, const char *suffix,
48 size_t suffixLen = strlen(suffix);
59 * the last dot, and copy the suffix to just after it.
67 memcpy(c + 1, suffix, suffixLen + 1);
  /external/chromium/third_party/icu/source/tools/icupkg/
icupkg.cpp 459 char suffix[6]="?.dat"; local
462 suffix[0]=pkg->getInType();
465 if((s-outFilenameBuffer)>5 && 0==memcmp(s-5, suffix, 5)) {
  /external/elfutils/src/
nm.c 116 const char *suffix);
120 const char *suffix);
418 const char *suffix)
423 size_t suffix_len = suffix != NULL ? strlen (suffix) : 0;
436 if (suffix != NULL)
437 cp = stpcpy (cp, suffix);
1207 const char *suffix)
1210 size_t suffix_len = suffix == NULL ? 0 : strlen (suffix);
    [all...]
  /external/icu4c/tools/icupkg/
icupkg.cpp 459 char suffix[6]="?.dat"; local
462 suffix[0]=pkg->getInType();
465 if((s-outFilenameBuffer)>5 && 0==memcmp(s-5, suffix, 5)) {
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 582 DalvInsn suffix; local
587 suffix = null;
591 suffix = insn.hrSuffix();
612 if (suffix != null) {
613 result.add(suffix);

Completed in 359 milliseconds

1 2 34 5 6 7 8 91011