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

1 2 3 4 5 6 7 891011>>

  /external/dnsmasq/contrib/slackware-dnsmasq/
dnsmasq.SlackBuild 25 zcat $CWD/dnsmasq.leasedir.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit
  /external/libvpx/libvpx/build/make/
configure.sh 441 fmt_deps = sed -e 's;^\([a-zA-Z0-9_]*\)\.o;\$(dir \$@)\1\$(suffix \$<).o \$@;'
    [all...]
  /external/libxslt/libxslt/
numbers.c 854 int count=0; /* will hold total length of prefix/suffix */
859 * prefix / suffix ends at end of string or at
877 * for +ve prefix/suffix, allow only a
914 * subpattern := {prefix}integer{.fraction}{suffix}
916 * suffix := '\\u0000'..'\\uFFFD' - specialCharacters
937 * X any other characters can be used in the prefix or suffix
938 * ' used to quote special characters in a prefix or suffix.
950 xmlChar *the_format, *prefix = NULL, *suffix = NULL; local
960 * permille to be treated as suffix
1028 * appears at the end, it may be part of the suffix instead
    [all...]
  /external/mockito/src/org/mockito/
Matchers.java 741 * <code>String</code> argument that ends with the given suffix.
745 * @param suffix
746 * the suffix.
749 public static String endsWith(String suffix) {
750 return reportMatcher(new EndsWith(suffix)).returnString();
  /external/openssl/apps/
apps.h 298 int save_serial(char *serialfile, char *suffix, BIGNUM *serial, ASN1_INTEGER **retai);
303 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
  /external/skia/tools/
skdiff_utils.cpp 115 static SkString filename_to_derived_filename(const SkString& filename, const char *suffix) {
120 diffName.append(suffix);
  /external/v8/test/mjsunit/
cyrillic.js 180 var suffix = add_non_ascii_character_to_subject ? "\ufffe" : "";
192 assertEquals(expected, re.test("A" + suffix), 58 + flag + f);
193 assertTrue(re.test("a" + suffix), 59 + flag + f);
194 assertTrue(re.test("~" + suffix), 60 + flag + f);
  /external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js 213 _concatenate: function(prefix, suffix, formatProperty)
229 buffer += suffix;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem.py 193 def open_binary_tempfile(self, suffix):
195 temp_fd, temp_name = tempfile.mkstemp(suffix)
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 127 public static File createTempFile(String suffix) throws IOException {
128 return File.createTempFile("hyts_", suffix, null);
  /ndk/build/core/
check-cygwin-make.mk 30 # .exe suffix, if any.
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerLogger.java 190 * Delete oldest files with a given suffix, if more than MAX_FILES.
191 * @param suffix delete oldest files with this suffix.
193 private void deleteOldest(final String suffix) {
197 return name.startsWith("log_") && name.endsWith(suffix);
  /system/extras/ext4_utils/
Android.mk 138 # We don't need any additional suffix.
  /external/opencv/cv/src/
cvcolor.cpp     [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 164 private String suffix; field in class:AndroidTranslator.FromAndroidClassNameParts
169 suffix = "";
172 suffix = name.substring(dollarIndex);
181 return prefix + TOKEN + suffix;
185 return prefix.replace(TOKEN, "") + suffix;
  /ndk/sources/host-tools/make-3.81/
implicit.c 328 char *suffix = rule->suffixes[i];
343 stem = filename + (suffix - target - 1);
393 if (*suffix != stem[stemlen]
394 || (*suffix != '\0' && !streq (&suffix[1], &stem[stemlen + 1])))
326 char *suffix = rule->suffixes[i]; local
variable.c 45 create_pattern_var (char *target, char *suffix)
59 p->suffix = suffix + 1;
83 stem = target + (p->suffix - p->target - 1);
95 if (*p->suffix == stem[stemlen]
96 && (*p->suffix == '\0' || streq (&p->suffix[1], &stem[stemlen+1])))
    [all...]
  /external/elfutils/libcpu/
i386_parse.c 214 /* Suffix. */
216 suffix_w1, suffix_W1, suffix_D } suffix; member in struct:instruction
242 struct suffix struct
289 struct known_bitfield *suffix,
    [all...]
  /external/icu4c/tools/genrb/
reslist.c 1539 char *suffix; local
1720 const UChar *suffix = suffixRes->u.fString.fChars; local
    [all...]
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 984 String suffix = format; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
main.rb 344 suffix = ''
347 suffix = ' (hidden)'
350 suffix = ' (channel %p)' % token.channel
355 token.line, token.column, suffix )
  /external/chromium/base/
file_util.cc 59 void InsertBeforeExtension(FilePath* path, const FilePath::StringType& suffix) {
71 // We should just append the suffix to the entire path.
72 value.append(suffix);
76 value.insert(last_dot, suffix);
  /external/chromium/chrome/browser/
shell_integration_win.cc 321 // Google Chrome or Chromium so we do not append suffix to app name.
322 std::wstring suffix; local
323 if (ShellUtil::GetUserSpecificDefaultBrowserSuffix(dist, &suffix))
324 app_name += suffix;
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 207 suffix = os.getenv('BREAKPAD_SUFFIX')
208 if suffix:
209 filename = binary + suffix
  /external/smack/src/org/xbill/DNS/
Lookup.java 505 resolve(Name current, Name suffix) {
508 if (suffix == null)
512 tname = Name.concatenate(current, suffix);

Completed in 668 milliseconds

1 2 3 4 5 6 7 891011>>