Searched defs:suffix (Results 26 - 50 of 239) sorted by relevance

12345678910

/external/chromium_org/testing/gtest/test/
H A Dgtest_stress_test.cc64 std::string IdToKey(int id, const char* suffix) { argument
66 key << "key_" << id << "_" << suffix; local
78 int id, const char* suffix) {
79 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
83 << "expecting " << suffix << " value for id " << id;
76 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_protocol_externs.py116 suffix = "" variable
118 suffix = "|undefined" variable
122 typedef_args.append("%s:(%s%s)" % (property["name"], enum_name, suffix))
124 typedef_args.append("%s:(%s%s)" % (property["name"], param_type(domain_name, property), suffix))
132 suffix = "" variable
134 suffix = "|undefined" variable
135 output_file.write("\n/** @typedef {Array.<%s>%s} */\n%sAgent.%s;\n" % (param_type(domain_name, type["items"]), suffix, domain_name, type["id"]))
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_icu.cpp27 const char *suffix; member in struct:__anon11214
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dfilename.cc19 const char* suffix) {
23 suffix);
106 Slice suffix = rest; local
107 if (suffix == Slice(".log")) {
109 } else if (suffix == Slice(".sst")) {
111 } else if (suffix == Slice(".dbtmp")) {
18 MakeFileName(const std::string& name, uint64_t number, const char* suffix) argument
/external/chromium_org/tools/gn/
H A Dpattern.cc72 const std::string& suffix = subranges_[1].literal; local
73 if (suffix.size() > s.size())
75 return s.compare(s.size() - suffix.size(), suffix.size(), suffix) == 0;
/external/chromium_org/v8/tools/testrunner/local/
H A Dtestsuite.py61 def suffix(self): member in class:TestSuite
/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/gtest/test/
H A Dgtest_stress_test.cc65 String IdToKey(int id, const char* suffix) { argument
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;
77 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/external/icu4c/tools/toolutil/
H A Dpkg_icu.cpp27 const char *suffix; member in struct:__anon18600
39 const char *suffix; local
42 suffix=listFileSuffixes[i].suffix;
44 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
/external/junit/src/org/junit/internal/runners/rules/
H A DRuleFieldValidator.java87 String suffix) {
89 + field.getName() + "' " + suffix;
86 addError(List<Throwable> errors, FrameworkField field, String suffix) argument
/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest_stress_test.cc65 String IdToKey(int id, const char* suffix) { argument
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;
77 ExpectKeyAndValueWereRecordedForId( const std::vector<TestProperty>& properties, int id, const char* suffix) argument
/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/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h109 TiXmlString& operator += (const char * suffix) argument
111 return append(suffix, static_cast<size_type>( strlen(suffix) ));
121 TiXmlString& operator += (const TiXmlString & suffix) argument
123 return append(suffix.data(), suffix.length());
/external/smack/src/org/xbill/DNS/
H A DA6Record.java19 private InetAddress suffix; field in class:A6Record
32 * @param suffix The address suffix
37 InetAddress suffix, Name prefix)
41 if (suffix != null && Address.familyOf(suffix) != Address.IPv6)
43 this.suffix = suffix;
56 suffix = InetAddress.getByAddress(bytes);
70 suffix
36 A6Record(Name name, int dclass, long ttl, int prefixBits, InetAddress suffix, Name prefix) argument
[all...]
/external/tinyxml/
H A Dtinystr.h108 TiXmlString& operator += (const char * suffix) argument
110 return append(suffix, static_cast<size_type>( strlen(suffix) ));
120 TiXmlString& operator += (const TiXmlString & suffix) argument
122 return append(suffix.data(), suffix.length());
/external/chromium_org/chrome/browser/speech/
H A Dtts_win.cc77 std::wstring suffix; local
100 suffix = L"</pitch>";
113 std::wstring merged_utterance = prefix + utterance_ + suffix;
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_file_sync_service_unittest.cc98 // prefixes and only be distinguished by the given suffix ID which could be a
101 void AddOrigin(std::string status, const char* suffix) { argument
102 const GURL origin(std::string("chrome-extension://app_") + suffix);
103 const std::string resource_id(std::string("folder:resource_id") + suffix);
/external/chromium_org/chrome/test/perf/frame_rate/
H A Dframe_rate_tests.cc62 std::string suffix; local
64 suffix += "_comp";
66 suffix += "_gpu";
68 suffix += "_novsync";
70 suffix += "_ref";
71 return suffix;
/external/chromium_org/components/autofill/core/browser/
H A Dphone_number.cc164 // suffix, since web sites often split numbers into these two fields.
169 base::string16 suffix = number.substr(kSuffixOffset, kSuffixLength); local
170 if (text == prefix || text == suffix)
/external/chromium_org/content/common/
H A Dpage_state_serialization_unittest.cc204 const char* suffix = ""; local
210 suffix = "_android";
216 base::StringPrintf("serialized_v%d%s.dat", version, suffix));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSimpleWorkspaceProvider.js106 var suffix = ""; variable
109 suffix = " (" + (++this._lastUniqueSuffix) + ")";
110 uniquePath = path + suffix;
112 return name + suffix;
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLEffectMatrix.cpp50 const char* suffix) {
78 if (NULL != suffix) {
80 suffixedUniName.append(suffix);
92 if (NULL != suffix) {
94 suffixedVaryingName.append(suffix);
158 const char* suffix) {
165 suffix);
170 if (NULL != suffix) {
172 suffixedCoordName.append(suffix);
46 emitCode(GrGLShaderBuilder* builder, EffectKey key, const char** fsCoordName, const char** vsCoordName, const char* suffix) argument
153 emitCodeMakeFSCoords2D(GrGLShaderBuilder* builder, EffectKey key, const char** fsCoordName, const char** vsVaryingName, GrSLType* vsVaryingType, const char* suffix) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkOSFile.cpp33 static uint16_t* concat_to_16(const char src[], const char suffix[]) argument
36 size_t len2 = 3 + (suffix ? strlen(suffix) : 0);
46 if (suffix)
48 while (*suffix)
49 dst[i++] = *suffix++;
74 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) argument
76 this->reset(path, suffix);
86 void SkOSFile::Iter::reset(const char path[], const char suffix[]) argument
97 fPath16 = concat_to_16(path, suffix);
170 Iter(const char path[], const char suffix[]) argument
181 reset(const char path[], const char suffix[]) argument
200 issuffixfor(const SkString& suffix, const char str[]) argument
[all...]
/external/llvm/lib/MC/
H A DMCWin64EH.cpp224 static const MCSection *getWin64EHTableSection(StringRef suffix, argument
226 if (suffix == "")
229 return context.getCOFFSection((".xdata"+suffix).str(),
235 static const MCSection *getWin64EHFuncTableSection(StringRef suffix, argument
237 if (suffix == "")
239 return context.getCOFFSection((".pdata"+suffix).str(),
/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...]

Completed in 1299 milliseconds

12345678910