Searched refs:suffix (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/external/easymock/src/org/easymock/internal/matchers/
H A DEndsWith.java26 private final String suffix; field in class:EndsWith
28 public EndsWith(String suffix) { argument
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOutputCollector.java26 * list and a suffix (generally consisting of adjunct data referred to
39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
42 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
50 * suffix
56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
83 * Adds an instruction to the output suffix.
88 suffix.add(insn);
100 if (suffix == null) {
109 * Helper for {@link #getFinisher}, which appends the suffix t
[all...]
/external/proguard/src/proguard/util/
H A DExtensionMatcher.java53 * Returns whether the given string ends with the given suffix, ignoring its
56 private static boolean endsWithIgnoreCase(String string, String suffix) argument
59 int suffixLength = suffix.length();
61 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
/external/qemu/android/utils/
H A Dbufprint.h62 ** to concat-ing the config path + path separator + 'suffix'
67 ** temporary directory. equivalent to concat-ing the temp path + path separator + 'suffix'
72 extern char* bufprint_config_file(char* buffer, char* buffend, const char* suffix);
74 extern char* bufprint_temp_file (char* buffer, char* buffend, const char* suffix);
/external/skia/include/utils/ios/
H A DSkStream_NSData.h25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
/external/skia/src/utils/
H A DSkOSFile.cpp12 static uint16_t* concat_to_16(const char src[], const char suffix[]) argument
15 size_t len2 = 3 + (suffix ? strlen(suffix) : 0);
25 if (suffix)
27 while (*suffix)
28 dst[i++] = *suffix++;
53 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) argument
55 this->reset(path, suffix);
65 void SkOSFile::Iter::reset(const char path[], const char suffix[]) argument
76 fPath16 = concat_to_16(path, suffix);
149 Iter(const char path[], const char suffix[]) argument
160 reset(const char path[], const char suffix[]) argument
179 issuffixfor(const SkString& suffix, const char str[]) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundle.java60 String suffix = getResourceSuffix(locale);
62 //System.out.println("resource " + className + suffix);
67 String resourceName = className + suffix;
97 * @return an String suffix which canbe appended to a resource name
105 String suffix = "_" + locale.getLanguage();
108 suffix += "_" + country;
111 suffix += "_" + country + "_" + variant;
113 return suffix;
/external/clang/utils/TestUtils/
H A Dpch-test.pl11 my $suffix = shift;
17 @files = `ls test/*/*.$suffix`;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFixedSizeList.java99 * @param suffix {@code null-ok;} suffix for the end of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
113 * @param suffix {@code null-ok;} suffix for the end of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
244 * @param suffix {@code null-ok;} suffix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/external/protobuf/gtest/test/
H A Dgtest_stress_test.cc55 String IdToKey(int id, const char* suffix) { argument
57 key << "key_" << id << "_" << suffix; local
69 const char* suffix) {
70 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
73 << "expecting " << suffix << " value for id " << id;
67 ExpectKeyAndValueWereRecordedForId(const Vector<TestProperty>& properties, int id, const char* suffix) argument
/external/icu4c/i18n/
H A Desctrn.h24 * Escape forms have a prefix and suffix, either of which may be
56 UnicodeString suffix; member in class:EscapeTransliterator
80 * prefix, suffix, radix, and minDigits of this object are used
98 const UnicodeString& prefix, const UnicodeString& suffix,
/external/skia/src/core/
H A DSkBitmapProcState.cpp89 #define MAKENAME(suffix) S32_opaque_D32 ## suffix
101 #define MAKENAME(suffix) S32_alpha_D32 ## suffix
120 #define MAKENAME(suffix) S16_opaque_D32 ## suffix
136 #define MAKENAME(suffix) S16_alpha_D32 ## suffix
151 #define MAKENAME(suffix) SI8_opaque_D32 ## suffix
[all...]
/external/chromium/base/test/
H A Dtest_file_util_posix.cc68 // the suffix after source_dir onto dest_dir to create the target_path.
69 std::string suffix(&current.value().c_str()[source_dir.value().size()]);
71 if (!suffix.empty()) {
72 DCHECK_EQ('/', suffix[0]);
73 suffix.erase(0, 1);
75 const FilePath target_path = dest_dir.Append(suffix);
/external/icu4c/tools/toolutil/
H A Dpkg_icu.cpp27 const char *suffix; member in struct:__anon6162
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
/external/linux-tools-perf/util/
H A Dpath.c132 * If path ends with suffix (complete path components), returns the
133 * part before suffix (sans trailing directory separators).
136 char *strip_path_suffix(const char *path, const char *suffix) argument
138 int path_len = strlen(path), suffix_len = strlen(suffix);
145 if (!is_dir_sep(suffix[suffix_len - 1]))
148 suffix_len = chomp_trailing_dir_sep(suffix, suffix_len);
150 else if (path[--path_len] != suffix[--suffix_len])
/external/opencv/cxcore/src/
H A Dcximage.cpp60 const char* suffix = strrchr( filename, '.' ); local
61 return suffix &&
62 (strcmp( suffix, ".xml" ) == 0 ||
63 strcmp( suffix, ".Xml" ) == 0 ||
64 strcmp( suffix, ".XML" ) == 0 ||
65 strcmp( suffix, ".yml" ) == 0 ||
66 strcmp( suffix, ".Yml" ) == 0 ||
67 strcmp( suffix, ".YML" ) == 0 ||
68 strcmp( suffix, ".yaml" ) == 0 ||
69 strcmp( suffix, "
[all...]
/external/icu4c/test/cintltst/
H A Dnfsprep.c176 const char **suffix, int32_t *suffixLen,
185 *suffix = NULL;
190 *suffix = src + i;
198 if((findStringIndex(special_prefixes,LENGTHOF(special_prefixes), *prefix, *prefixLen-1) != -1) && (*suffix != NULL)){
211 const char *prefix = NULL, *suffix = NULL; local
231 getPrefixSuffix(src, srcLength, &prefix, &prefixLen, &suffix, &suffixLen, status);
245 /* prepare the suffix */
246 if(suffix != NULL){
247 sLen = nfs4_prepare(suffix, suffixLen, s, sCapacity, NFS4_MIXED_PREP_SUFFIX, parseError, status);
255 sLen = nfs4_prepare(suffix, suffixLe
174 getPrefixSuffix(const char *src, int32_t srcLength, const char **prefix, int32_t *prefixLen, const char **suffix, int32_t *suffixLen, UErrorCode *status) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DListGenerators.java79 String[] suffix = {"f", "g"};
80 String[] all = new String[elements.length + suffix.length];
82 System.arraycopy(suffix, 0, all, elements.length, suffix.length);
104 String[] suffix = {"h", "i"};
109 System.arraycopy(suffix, 0, all, 2 + elements.length, 2);
/external/chromium/chrome/browser/download/
H A Ddrag_download_util.cc69 string16 suffix = ASCIIToUTF16("-") + base::IntToString16(seq); local
71 std::string suffix = std::string("-") + base::IntToString(seq);
73 new_file_path = file_path->InsertBeforeExtension(suffix);
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp123 StringRef suffix = functionName.substr(it - start);
124 if (suffix.startswith("reate")) {
127 else if (suffix.startswith("opy")) {
/external/proguard/src/proguard/
H A DDataEntryReaderFactory.java145 * Returns whether the given string ends with the given suffix, ignoring its
148 private static boolean endsWithIgnoreCase(String string, String suffix) argument
151 int suffixLength = suffix.length();
153 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
/external/webkit/Source/WebCore/inspector/front-end/
H A DMetricsSidebarPane.js71 var suffix = componentName === "border" ? "-width" : "";
72 var left = this._getPropertyValueAsPx(computedStyle, componentName + "-left" + suffix);
73 var top = this._getPropertyValueAsPx(computedStyle, componentName + "-top" + suffix);
74 var right = this._getPropertyValueAsPx(computedStyle, componentName + "-right" + suffix);
75 var bottom = this._getPropertyValueAsPx(computedStyle, componentName + "-bottom" + suffix);
86 function createBoxPartElement(style, name, side, suffix)
88 var propertyName = (name !== "position" ? name + "-" : "") + side + suffix;
184 var suffix = (name === "border" ? "-width" : "");
191 boxElement.appendChild(createBoxPartElement.call(this, style, name, "top", suffix));
193 boxElement.appendChild(createBoxPartElement.call(this, style, name, "left", suffix));
[all...]
/external/v8/src/
H A Dstring-search.h45 // search will not be optimal, since we only build tables for a suffix
180 // Store for the BoyerMoore good suffix shift table.
187 // Table used temporarily while building the BoyerMoore good suffix
378 int suffix = pattern_length + 1; local
383 while (suffix <= pattern_length && c != pattern[suffix - 1]) {
384 if (shift_table[suffix] == length) {
385 shift_table[suffix] = suffix - i;
387 suffix
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreNSStringExtras.h44 BOOL hasCaseInsensitiveSuffix(NSString *string, NSString *suffix);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitNSStringExtras.h50 - (BOOL)_webkit_hasCaseInsensitivePrefix:(NSString *)suffix;
51 - (BOOL)_webkit_hasCaseInsensitiveSuffix:(NSString *)suffix;

Completed in 508 milliseconds

1234567891011>>