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

1 2 3 45 6 7 8 91011

  /libcore/luni/src/main/java/org/apache/xalan/res/
XSLTErrorResources.java 1460 String suffix = getResourceSuffix(locale); local
1501 String suffix = "_" + locale.getLanguage(); local
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 229 private String join(String prefix, String suffix) {
233 haveSlash = (suffix.length() > 0 && suffix.charAt(0) == separatorChar);
235 return haveSlash ? (prefix + suffix) : (prefix + separatorChar + suffix);
    [all...]
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 30 #define MAKENAME(suffix) ClampX_ClampY ## suffix
42 #define MAKENAME(suffix) RepeatX_RepeatY ## suffix
53 #define MAKENAME(suffix) GeneralXY ## suffix
SkString.cpp 30 bool SkStrEndsWith(const char string[], const char suffix[])
33 SkASSERT(suffix);
35 size_t suffixLen = strlen(suffix);
37 !strncmp(string + strLen - suffixLen, suffix, suffixLen);
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
residual.cpp 158 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
336 suffix = (value - 1) & sufmask;
339 status = BitstreamWriteBits(stream, numPrefix + vlcnum + 1, (1 << (shift + 1)) | (suffix << 1) | sign);
  /external/stlport/src/
num_put_float.cpp 520 char *suffix = expbuf + MAXEDIGITS + 2; local
521 *suffix = 0;
527 *--suffix = (char) todigit(nn % 10);
528 *--suffix = (char) todigit(nn);
535 while (suffix > &expbuf[MAXEDIGITS])
536 *--suffix = '0';
539 *--suffix = (char) ((decpt > 0 || is_zero ) ? '+' : '-');
542 *--suffix = flags & ios_base::uppercase ? 'E' : 'e';
544 // copy the suffix
545 buf += suffix;
    [all...]
  /external/v8/test/sputnik/
testcfg.py 55 self.tmpfile = sputnik.TempFile(suffix='.js', prefix='sputnik-', text=True)
  /external/webkit/WebKitTools/Scripts/webkitpy/
credentials_unittest.py 121 temp_dir_path = tempfile.mkdtemp(suffix="not_a_git_repo")
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
base.py 125 def expected_baselines(self, filename, suffix, all_baselines=False):
130 suffix: file suffix of the expected results, including dot; e.g.
154 baseline_filename = testname + '-expected' + suffix
177 def expected_filename(self, filename, suffix):
187 suffix: file suffix of the expected results, including dot; e.g. '.txt'
197 filename, suffix)[0]
  /ndk/sources/android/stlport/src/
num_put_float.cpp 520 char *suffix = expbuf + MAXEDIGITS + 2; local
521 *suffix = 0;
527 *--suffix = (char) todigit(nn % 10);
528 *--suffix = (char) todigit(nn);
535 while (suffix > &expbuf[MAXEDIGITS])
536 *--suffix = '0';
539 *--suffix = (char) ((decpt > 0 || is_zero ) ? '+' : '-');
542 *--suffix = flags & ios_base::uppercase ? 'E' : 'e';
544 // copy the suffix
545 buf += suffix;
    [all...]
  /external/dnsmasq/contrib/slackware-dnsmasq/
dnsmasq.SlackBuild 25 zcat $CWD/dnsmasq.leasedir.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit
  /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/v8/test/mjsunit/
cyrillic.js 180 var suffix = add_non_ascii_character_to_subject ? "\ufffe" : "";
191 re.test("A" + suffix),
193 assertTrue(re.test("a" + suffix), 59 + flag + f);
194 assertTrue(re.test("~" + suffix), 60 + flag + f);
  /frameworks/base/core/java/com/android/internal/net/
DomainNameValidator.java 225 // (b) OR thatHost is a '.'-suffix of thisHost: Z.Y.X matches X
268 String suffix = thatDomainToken.substring(starIndex + 1); local
270 return thisDomainToken.startsWith(prefix) && thisDomainToken.endsWith(suffix);
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 115 public static File createTempFile(String suffix) throws IOException {
116 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 191 * Delete oldest files with a given suffix, if more than MAX_FILES.
192 * @param suffix delete oldest files with this suffix.
194 private void deleteOldest(final String suffix) {
198 return name.startsWith("log_") && name.endsWith(suffix);
  /external/chromium/base/
file_util_posix.cc 268 // the suffix after from_path onto to_path to create the target_path.
269 std::string suffix(&current.value().c_str()[from_path_base.value().size()]);
271 if (!suffix.empty()) {
272 DCHECK_EQ('/', suffix[0]);
273 suffix.erase(0, 1);
275 const FilePath target_path = to_path.Append(suffix);
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/icu4c/tools/genrb/
reslist.c 1533 char *suffix; local
1714 const UChar *suffix = suffixRes->u.fString.fChars; local
    [all...]
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java     [all...]
  /external/bluetooth/glib/gmodule/
gmodule.c 297 const gchar* suffix)
300 gsize suffix_len = strlen (suffix);
303 strcmp (string + string_len - suffix_len, suffix) == 0;
388 /* try completing file name with standard library suffix */
398 /* try completing by appending libtool suffix */
416 /* make sure the name has a suffix */
  /external/zlib/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/chromium/third_party/icu/source/tools/genren/
genren.pl 51 /^-S/ && (($U_ICU_VERSION_SUFFIX = shift(@ARGV)), next); # pick the suffix
202 -S - suffix (defaults to _MAJOR_MINOR of current ICU version)
  /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);

Completed in 479 milliseconds

1 2 3 45 6 7 8 91011