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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/mac/
WebCoreNSStringExtras.h 44 BOOL hasCaseInsensitiveSuffix(NSString *string, NSString *suffix);
  /external/skia/legacy/src/core/
SkBitmapProcState.cpp 89 #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/skia/src/core/
SkBitmapProcState_procs.h 11 // identifiers have a _neon suffix.
90 #define MAKENAME(suffix) NAME_WRAP(S32_opaque_D32 ## suffix)
102 #define MAKENAME(suffix) NAME_WRAP(S32_alpha_D32 ## suffix)
121 #define MAKENAME(suffix) NAME_WRAP(S16_opaque_D32 ## suffix)
137 #define MAKENAME(suffix) NAME_WRAP(S16_alpha_D32 ## suffix)
152 #define MAKENAME(suffix) NAME_WRAP(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/toolutil/
pkg_icu.cpp 27 const char *suffix; member in struct:__anon8976
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/
path.c 132 * 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)
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/
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...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListGenerators.java 79 String[] suffix = {"f", "g"}; local
80 String[] all = new String[elements.length + suffix.length];
82 System.arraycopy(suffix, 0, all, elements.length, suffix.length);
104 String[] suffix = {"h", "i"}; local
109 System.arraycopy(suffix, 0, all, 2 + elements.length, 2);
  /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 38 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
40 return 3+suffix;
43 return 2+suffix;
46 return 1+suffix;
51 static private int printField(char[] formatStr, int amt, char suffix, int pos,
69 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/clang/lib/Analysis/
CocoaConventions.cpp 123 StringRef suffix = functionName.substr(it - start);
124 if (suffix.startswith("reate")) {
127 else if (suffix.startswith("opy")) {
  /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
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 = suffix_table[suffix]
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebKitNSStringExtras.h 50 - (BOOL)_webkit_hasCaseInsensitivePrefix:(NSString *)suffix;
51 - (BOOL)_webkit_hasCaseInsensitiveSuffix:(NSString *)suffix;
  /external/skia/src/gpu/gl/
GrGLEffectMatrix.cpp 41 const char* suffix) {
69 if (NULL != suffix) {
71 suffixedUniName.append(suffix);
83 if (NULL != suffix) {
85 suffixedVaryingName.append(suffix);
135 const char* suffix) {
143 suffix);
148 if (NULL != suffix) {
150 suffixedCoordName.append(suffix);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 89 public String suffix; field in class:NameSplitter.Name
103 String suffix) {
108 this.suffix = suffix;
130 return suffix;
158 suffix = values.getAsString(StructuredName.SUFFIX);
176 putValueIfPresent(values, StructuredName.SUFFIX, suffix);
195 suffix = null
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
SqliteJournalLeakTest.java 89 private void checkDatabases(String suffix) {
97 name = base + "/data" + name + suffix;
  /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/regex-re2/re2/testing/
required_prefix_test.cc 15 const char* suffix; member in struct:re2::PrefixTest
58 CHECK_EQ(s->ToString(), string(t.suffix))
  /external/skia/include/core/
SkOSFile.h 74 Iter(const char path[], const char suffix[] = NULL);
77 void reset(const char path[], const char suffix[] = NULL);
  /external/skia/legacy/include/core/
SkOSFile.h 47 Iter(const char path[], const char suffix[] = NULL);
50 void reset(const char path[], const char suffix[] = NULL);

Completed in 2393 milliseconds

1 23 4 5 6 7 8 91011>>