/frameworks/base/core/java/com/android/internal/net/ |
DomainNameValidator.java | 208 // (b) OR thatHost is a '.'-suffix of thisHost: Z.Y.X matches X 251 String suffix = thatDomainToken.substring(starIndex + 1); local 253 return thisDomainToken.startsWith(prefix) && thisDomainToken.endsWith(suffix);
|
/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 | 131 # We don't need any additional suffix.
|
/external/opencv/cv/src/ |
cvcolor.cpp | [all...] |
/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 | 972 String suffix = format; local [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/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/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/clang/lib/CodeGen/ |
CodeGenTypes.h | 201 /// optional suffix and name the given LLVM type using it. 203 llvm::StringRef suffix);
|
/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/llvm/test/lib/ |
llvm.exp | 164 } elseif {[regexp {RUN: *(.+)(\\)$} $line match oneline suffix]} { 169 } elseif {[regexp {RUN: *(.+)$} $line match oneline suffix]} {
|
/external/skia/src/core/ |
SkString.cpp | 51 bool SkStrEndsWith(const char string[], const char suffix[]) { 53 SkASSERT(suffix); 55 size_t suffixLen = strlen(suffix); 57 !strncmp(string + strLen - suffixLen, suffix, suffixLen);
|
/external/webkit/Tools/android/flex-2.5.4a/ |
main.c | 280 char *suffix; local 283 suffix = "cc"; 285 suffix = "c"; 288 prefix, suffix );
|
/external/icu4c/test/cintltst/ |
cnumtst.c | 149 UChar suffix[5]; local 653 unum_getTextAttribute(cur_def, UNUM_NEGATIVE_SUFFIX, suffix, resultlength, &status); 658 if(u_strcmp(suffix,temp)!=0) 659 log_err("Fail:Error in setTextAttribute or getTextAttribute in setting and getting suffix\n"); 661 log_verbose("Pass: setting and getting suffix works fine\n"); 700 u_uastrcpy(suffix, "+"); 701 unum_setTextAttribute(def, UNUM_NEGATIVE_SUFFIX, suffix, u_strlen(suffix) , &status); 712 if(u_strcmp(suffix, temp)!=0) 713 log_err("ERROR: get and setTextAttributes with negative suffix failed\n") [all...] |
/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/astl/tests/ |
Android.mk | 32 # typically the host libs have a _host suffix in their names.
|
/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
|
/external/llvm/ |
README.android | 27 ==> * 4f6bab9 - Drop the "2" suffix on some enums. (13 days ago) <Chris Lattner>
|
/frameworks/base/core/jni/ |
android_net_TrafficStats.cpp | 100 static jlong readTotal(char const* suffix) { 114 strlcat(filename, suffix, sizeof(filename));
|
/libcore/luni/src/main/java/java/net/ |
NetworkInterface.java | 136 String suffix = " " + interfaceName; local 139 if (!line.endsWith(suffix)) {
|