Home
last modified time | relevance | path

Searched refs:currentData (Results 1 – 9 of 9) sorted by relevance

/external/catch2/projects/SelfTest/IntrospectiveTests/
DString.tests.cpp49 auto rawChars = s.currentData();
87 auto rawChars = ss.currentData();
88 REQUIRE( rawChars == s.currentData() ); // same pointer value
94 REQUIRE( ss.currentData() != s.currentData() ); // different pointer value
/external/catch2/include/internal/
Dcatch_stringref.cpp46 auto StringRef::currentData() const noexcept -> char const* { in currentData() function in Catch::StringRef
115 return os.write(str.currentData(), str.size()); in operator <<()
119 lhs.append(rhs.currentData(), rhs.size()); in operator +=()
Dcatch_stringref.h107 auto currentData() const noexcept -> char const*;
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py1218 self.currentData = []
1240 if self.currentData:
1241 currentData = u''.join(self.currentData)
1242 if (currentData.translate(self.STRIP_ASCII_SPACES) == '' and
1245 if '\n' in currentData:
1246 currentData = '\n'
1248 currentData = ' '
1249 self.currentData = []
1252 not self.parseOnlyThese.search(currentData)):
1254 o = containerClass(currentData)
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DStandardCodes.java1130 Map<LstrField, String> currentData = null;
1167 currentData.put(lastLabel, lastRest + " " + line.trim());
1193 currentData = new TreeMap<LstrField, String>();
1195 putSubtagData(lastTag, subtagData, currentData);
1201 putSubtagData(lastTag, subtagData, currentData);
1224 String oldValue = (String) CldrUtility.get(currentData, lastLabel);
1228 currentData.put(lastLabel, lastRest);
1297 …K2, V> Map<K2, V> putSubtagData(K lastTag, Map<K, Map<K2, V>> subtagData, Map<K2, V> currentData) {
1306 return subtagData.put(lastTag, currentData);
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowLocaleCoverage.java259 Map<String, FoundAndTotal> currentData = addGrowth(factory, dir, matcher, false); in doGrowth() local
260 System.out.println("Read: " + version + "\t" + currentData); in doGrowth()
261 Counter2<String> completionData = getCompletion(latestData, currentData); in doGrowth()
264 if (DEBUG) System.out.println(currentData); in doGrowth()
334 …ing> getCompletion(Map<String, FoundAndTotal> latestData, Map<String, FoundAndTotal> currentData) { in getCompletion() argument
338 final FoundAndTotal currentRecord = currentData.get(locale); in getCompletion()
/external/catch2/projects/SelfTest/Baselines/
Dcompact.sw.approved.txt955 String.tests.cpp:<line number>: passed: rawChars == s.currentData() for: "hello world!" == "hello w…
959 String.tests.cpp:<line number>: passed: ss.currentData() != s.currentData() for: "hello" != "hello …
Dconsole.sw.approved.txt6950 REQUIRE( rawChars == s.currentData() )
6970 REQUIRE( ss.currentData() != s.currentData() )
/external/catch2/single_include/catch2/
Dcatch.hpp606 auto currentData() const noexcept -> char const*;
11444 auto StringRef::currentData() const noexcept -> char const* { in currentData() function in Catch::StringRef
11513 return os.write(str.currentData(), str.size()); in operator <<()
11517 lhs.append(rhs.currentData(), rhs.size()); in operator +=()