HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 26 - 50 of 345) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/mac/
WebCoreNSStringExtras.h 44 BOOL hasCaseInsensitiveSuffix(NSString *string, NSString *suffix);
  /external/skia/src/core/
SkBitmapProcState.cpp 82 #define MAKENAME(suffix) S32_opaque_D32 ## suffix
94 #define MAKENAME(suffix) S32_alpha_D32 ## suffix
113 #define MAKENAME(suffix) S16_opaque_D32 ## suffix
129 #define MAKENAME(suffix) S16_alpha_D32 ## suffix
144 #define MAKENAME(suffix) SI8_opaque_D32 ## suffix
    [all...]
  /external/chromium/base/test/
test_file_util_posix.cc 68 // 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/genbidi/
genbidi.c 77 const char *ucdFile, const char *suffix,
86 writeUCDFilename(basename, ucdFile, suffix);
112 parseSingleEnumFile(char *filename, char *basename, const char *suffix,
181 parseSingleEnumFile(char *filename, char *basename, const char *suffix,
190 writeUCDFilename(basename, sen->ucdFile, suffix);
273 parseBinariesFile(char *filename, char *basename, const char *suffix,
282 writeUCDFilename(basename, bin->ucdFile, suffix);
320 const char *srcDir=NULL, *destDir=NULL, *suffix=NULL; local
345 "Usage: %s [-options] [suffix]\n"
363 "\tsuffix suffix that is to be appended with a '-'\n
    [all...]
  /external/icu4c/tools/toolutil/
pkg_icu.cpp 27 const char *suffix; member in struct:__anon6283
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
  /external/opencv/cxcore/src/
cximage.cpp 60 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, ".Yaml" ) == 0 |
    [all...]
  /external/icu4c/test/cintltst/
nfsprep.c 176 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, suffixLen, s, sLen, NFS4_MIXED_PREP_SUFFIX, parseError, status)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 36 * Returns true if the given string ends with the given suffix, using a
40 * @param suffix the suffix to be checked for
41 * @return true if the string case-insensitively ends with the given suffix
43 public static boolean endsWithIgnoreCase(String string, String suffix) {
44 return string.regionMatches(true /* ignoreCase */, string.length() - suffix.length(),
45 suffix, 0, suffix.length());
49 * Returns true if the given sequence ends with the given suffix (case
53 * @param suffix the suffix to look fo
    [all...]
  /external/tinyxml/
tinystr.h 108 TiXmlString& operator += (const char * suffix)
110 return append(suffix, static_cast<size_type>( strlen(suffix) ));
120 TiXmlString& operator += (const TiXmlString & suffix)
122 return append(suffix.data(), suffix.length());
  /frameworks/support/v4/java/android/support/v4/util/
TimeUtils.java 35 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
37 return 3+suffix;
40 return 2+suffix;
43 return 1+suffix;
48 static private int printField(char[] formatStr, int amt, char suffix, int pos,
66 formatStr[pos] = suffix;
  /external/chromium/chrome/browser/download/
drag_download_util.cc 69 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/proguard/src/proguard/
DataEntryReaderFactory.java 145 * Returns whether the given string ends with the given suffix, ignoring its
148 private static boolean endsWithIgnoreCase(String string, String suffix)
151 int suffixLength = suffix.length();
153 return string.regionMatches(true, stringLength - suffixLength, suffix, 0, suffixLength);
  /external/webkit/Source/WebCore/inspector/front-end/
MetricsSidebarPane.js 71 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/
string-search.h 45 // 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
374 int suffix = pattern_length + 1; local
379 while (suffix <= pattern_length && c != pattern[suffix - 1]) {
380 if (shift_table[suffix] == length) {
381 shift_table[suffix] = suffix - i;
383 suffix = suffix_table[suffix]
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebKitNSStringExtras.h 50 - (BOOL)_webkit_hasCaseInsensitivePrefix:(NSString *)suffix;
51 - (BOOL)_webkit_hasCaseInsensitiveSuffix:(NSString *)suffix;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 87 public String suffix; field in class:NameSplitter.Name
101 String suffix) {
106 this.suffix = suffix;
126 return suffix;
154 suffix = values.getAsString(StructuredName.SUFFIX);
172 putValueIfPresent(values, StructuredName.SUFFIX, suffix);
191 suffix = null
    [all...]
  /external/icu4c/tools/genprops/
props2.c 58 const char *ucdFile, const char *suffix,
67 writeUCDFilename(basename, ucdFile, suffix);
82 const char *ucdFile, const char *suffix,
92 writeUCDFilename(basename, ucdFile, suffix);
116 parseSingleEnumFile(char *filename, char *basename, const char *suffix,
219 parseSingleEnumFile(char *filename, char *basename, const char *suffix,
228 writeUCDFilename(basename, sen->ucdFile, suffix);
382 parseBinariesFile(char *filename, char *basename, const char *suffix,
392 writeUCDFilename(basename, bin->ucdFile, suffix);
427 generateAdditionalProperties(char *filename, const char *suffix, UErrorCode *pErrorCode)
    [all...]
genprops.h 47 writeUCDFilename(char *basename, const char *filename, const char *suffix);
87 generateAdditionalProperties(char *filename, const char *suffix, UErrorCode *pErrorCode);
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 201 // Returns true iff this String ends with the given suffix. *Any*
202 // String is considered to end with a NULL or empty suffix.
203 bool EndsWith(const char* suffix) const;
205 // Returns true iff this String ends with the given suffix, not considering
206 // case. Any String is considered to end with a NULL or empty suffix.
207 bool EndsWithCaseInsensitive(const char* suffix) const;
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 96 // Return true if str ends in suffix.
98 // Given a string and a putative suffix, returns the string minus the
99 // suffix string if the suffix matches, otherwise the original
103 const string& suffix) {
104 return str.size() >= suffix.size() &&
105 str.compare(str.size() - suffix.size(), suffix.size(), suffix) == 0;
108 inline string StripSuffixString(const string& str, const string& suffix) {
    [all...]
  /external/skia/include/core/
SkOSFile.h 54 Iter(const char path[], const char suffix[] = NULL);
57 void reset(const char path[], const char suffix[] = NULL);
  /external/webkit/Source/WebCore/platform/win/
SoftLinking.h 35 #define SOFT_LINK_LIBRARY_HELPER(lib, suffix) \
38 static HMODULE library = LoadLibraryW(L###lib suffix); \
  /external/v8/test/mjsunit/regress/
regress-1122.js 37 test_suffix = ' suffix';
52 assertEquals('prefix 4000 suffix',
54 assertEquals('prefix 3000 suffix',
56 assertEquals('prefix 5000 suffix',
58 assertEquals('prefix 9000 suffix',
60 assertEquals('prefix 16000 suffix',
62 assertEquals('prefix undefined suffix',
  /external/chromium/testing/gtest/test/
gtest_stress_test.cc 65 String IdToKey(int id, const char* suffix) {
67 key << "key_" << id << "_" << suffix; local
79 int id, const char* suffix) {
80 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
84 << "expecting " << suffix << " value for id " << id;
  /external/icu4c/i18n/
esctrn.cpp 95 this->suffix = _suffix;
108 suffix(o.suffix),
151 buf.append(supplementalHandler->suffix);
162 buf.append(suffix);

Completed in 772 milliseconds

12 3 4 5 6 7 8 91011>>