HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 2251 - 2275 of 46739) sorted by null

<<919293949596979899100>>

  /system/core/demangle/
demangle_fuzzer.cpp 20 #include <string.h>
22 #include <string>
32 std::string demangled_name = demangler.Parse(data_str.data());
  /system/core/property_service/libpropertyinfoserializer/
trie_serializer.h 20 #include <string>
35 std::string SerializeTrie(const TrieBuilder& trie_builder);
38 void SerializeStrings(const std::set<std::string>& strings);
  /system/tools/hidl/
DocComment.h 23 #include <string>
28 DocComment(const std::string& comment);
35 std::string mComment;
  /system/update_engine/payload_consumer/
payload_verifier.h 20 #include <string>
40 const std::string& public_key_path,
47 const std::string& public_key_path,
  /test/vts/drivers/hal/replayer/
VtsHidlHalReplayerMain.cpp 27 #include <string>
40 static void AddHalServiceInstance(const string& instance,
41 map<string, string>* halServiceInstances) {
49 string instanceName = instance.substr(0, instance.find('/'));
50 string serviceName = instance.substr(instance.find('/') + 1);
80 string spec_dir_path = kDefaultSpecDirPath;
81 map<string, string> hal_service_instances;
96 spec_dir_path = string(optarg)
    [all...]
  /test/vts-testcase/hal/treble/vintf/
utils.cpp 21 #include <string>
33 const string kDataDir = "/data/local/tmp/";
36 const string kHashFileName = "current.txt";
39 const map<string, string> kPackageRoot = {
47 const set<string> kPassthroughHals = {
89 // For a given interface returns package root if known. Returns empty string
91 const string PackageRoot(const FQName &fq_iface_name) {
107 set<string> ReleasedHashes(const FQName &fq_iface_name) {
108 set<string> released_hashes{}
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
version.cc 25 #include <string>
51 std::string bfd_version(BFD_VERSION_STRING);
56 if (pos != std::string::npos)
73 // Return the version string.
  /art/compiler/utils/
assembler_test_base.h 40 static std::string tmpnam_; // NOLINT [runtime/string] [4]
45 AssemblerTestInfrastructure(std::string architecture,
46 std::string as,
47 std::string as_params,
48 std::string objdump,
49 std::string objdump_params,
50 std::string disasm,
51 std::string disasm_params,
73 std::string asm_tool = FindTool(assembler_cmd_name_)
    [all...]
  /art/runtime/
dexopt_test.h 20 #include <string>
44 void GenerateOatForTest(const std::string& dex_location,
45 const std::string& oat_location,
54 void GenerateOdexForTest(const std::string& dex_location,
55 const std::string& odex_location,
58 void GeneratePicOdexForTest(const std::string& dex_location,
59 const std::string& odex_location,
78 bool PreRelocateImage(const std::string& image_location, std::string* error_msg);
  /bootable/recovery/bootloader_message/
bootloader_message.cpp 21 #include <string.h>
23 #include <string>
32 static std::string get_misc_blk_device(std::string* err) {
49 static bool wait_for_device(const std::string& blk_device, std::string* err) {
70 static bool read_misc_partition(void* p, size_t size, const std::string& misc_blk_device,
71 size_t offset, std::string* err) {
94 static bool write_misc_partition(const void* p, size_t size, const std::string& misc_blk_device,
95 size_t offset, std::string* err)
    [all...]
  /build/kati/
buf_test.go 24 in []string
25 want []string
28 in: []string{"foo"},
29 want: []string{"foo"},
32 in: []string{"foo bar"},
33 want: []string{"foo", "bar"},
36 in: []string{" foo bar\tbaz "},
37 want: []string{"foo", "bar", "baz"},
40 in: []string{"foo", "bar"},
41 want: []string{"foobar"}
    [all...]
  /device/google/cuttlefish_common/guest/commands/vport_trigger/
main.cpp 29 #include <string>
34 static bool ReadFdToString(int fd, std::string* content) {
44 static bool ReadFileToString(const std::string& path, std::string* content,
62 std::string dirname = dp->d_name;
63 std::string sysfs(sysfs_base + dirname + "/name");
68 std::string content;
77 std::string propname("sys.cf.ser." + content);
78 std::string dev("/dev/" + dirname);
  /external/boringssl/src/ssl/test/runner/
test_output.go 28 PathDelimiter string `json:"path_delimiter"`
30 NumFailuresByType map[string]int `json:"num_failures_by_type"`
31 Tests map[string]testResult `json:"tests"`
36 Actual string `json:"actual"`
37 Expected string `json:"expected"`
46 NumFailuresByType: make(map[string]int),
47 Tests: make(map[string]testResult),
52 func (t *testOutput) addResult(name, result string) {
67 func (t *testOutput) writeTo(name string) error {
  /external/deqp/external/openglcts/modules/gl/
gl4cPostDepthCoverageTests.hpp 56 std::string m_vertShader;
57 std::string m_fragShader1;
58 std::string m_fragShader2;
59 std::string m_fragShader3;
60 std::string m_fragShader4;
103 std::string m_vertShader;
104 std::string m_fragShader1a;
105 std::string m_fragShader1b;
106 std::string m_fragShader2;
gl4cSparseTexture2Tests.hpp 74 ShaderExtensionTestCase(deqp::Context& context, const std::string extension);
80 std::string mExtension;
137 std::string format;
138 std::string pointType;
139 std::string pointDef;
140 std::string outputType;
141 std::string inputType;
142 std::string returnType;
143 std::string resultExpected;
144 std::string resultDefault
    [all...]
  /external/deqp/framework/delibs/decpp/
dePoolString.hpp 23 * \brief Memory pool -backed string.
31 #include <string>
37 * \brief String template backed by memory pool
49 void toString (std::string& str) const;
50 std::string toString (void) const;
53 void append (const std::string& str);
57 PoolString& operator= (const std::string& str) { clear(); append(str); return *this; }
61 PoolString& operator+= (const std::string& str) { append(str); return *this; }
69 std::ostream& operator<< (std::ostream& stream, const PoolString& string);
82 inline std::string PoolString::toString (void) cons
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
source_line_resolver_base.h 46 #include <string>
67 static bool ReadSymbolFile(const string &file_name,
77 virtual bool LoadModule(const CodeModule *module, const string &map_file);
79 const string &map_buffer);
96 bool operator()(const string &s1, const string &s2) const;
103 typedef map<string, Module*, CompareString> ModuleMap;
107 typedef set<string, CompareString> ModuleSet;
111 typedef std::map<string, char*, CompareString> MemoryMap;
  /external/google-breakpad/src/processor/
logging.cc 39 #include <string.h>
42 #include <string>
86 string HexString(uint32_t number) {
89 return string(buffer);
92 string HexString(uint64_t number) {
95 return string(buffer);
98 string HexString(int number) {
101 return string(buffer);
104 int ErrnoString(string *error_string) {
  /external/libchrome/base/test/
gtest_util.h 8 #include <string>
70 std::string test_case_name;
71 std::string test_name;
72 std::string file;
78 std::string FormatFullTestName(const std::string& test_case_name,
79 const std::string& test_name);
84 std::string TestNameWithoutDisabledPrefix(const std::string& full_test_name);
  /external/libcxx/test/std/containers/unord/unord.map/
bucket_count.pass.cpp 19 #include <string>
28 typedef std::unordered_map<int, std::string> C;
33 typedef std::unordered_map<int, std::string> C;
34 typedef std::pair<int, std::string> P;
51 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
52 min_allocator<std::pair<const int, std::string>>> C;
57 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
58 min_allocator<std::pair<const int, std::string>>> C;
59 typedef std::pair<int, std::string> P;
load_factor.pass.cpp 19 #include <string>
30 typedef std::unordered_map<int, std::string> C;
31 typedef std::pair<int, std::string> P;
47 typedef std::unordered_map<int, std::string> C;
53 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
54 min_allocator<std::pair<const int, std::string>>> C;
55 typedef std::pair<int, std::string> P;
71 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
72 min_allocator<std::pair<const int, std::string>>> C;
  /external/libcxx/test/std/containers/unord/unord.multimap/
load_factor.pass.cpp 19 #include <string>
29 typedef std::unordered_multimap<int, std::string> C;
30 typedef std::pair<int, std::string> P;
46 typedef std::unordered_multimap<int, std::string> C;
52 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
53 min_allocator<std::pair<const int, std::string>>> C;
54 typedef std::pair<int, std::string> P;
70 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
71 min_allocator<std::pair<const int, std::string>>> C;
  /external/libcxx/test/std/input.output/iostreams.base/ios.base/ios.types/ios_failure/
ctor_char_pointer_error_code.pass.cpp 17 #include <string>
23 std::string what_arg("io test message");
26 std::string what_message(se.what());
27 assert(what_message.find(what_arg) != std::string::npos);
28 assert(what_message.find("Is a directory") != std::string::npos);
31 std::string what_arg("io test message");
34 std::string what_message(se.what());
35 assert(what_message.find(what_arg) != std::string::npos);
37 (std::io_errc::stream))) != std::string::npos);
ctor_string_error_code.pass.cpp 14 // explicit failure(const string& msg, const error_code& ec = io_errc::stream);
17 #include <string>
26 std::string what_arg("io test message");
29 std::string what_message(se.what());
30 assert(what_message.find(what_arg) != std::string::npos);
31 assert(what_message.find("Is a directory") != std::string::npos);
34 std::string what_arg("io test message");
37 std::string what_message(se.what());
38 assert(what_message.find(what_arg) != std::string::npos);
40 (std::io_errc::stream))) != std::string::npos)
    [all...]
  /external/libcxx/test/std/re/re.alg/re.alg.match/
parse_curly_brackets.pass.cpp 21 #include <string>
29 std::string re("\\{a\\}");
30 std::string target("{a}");
39 std::string re("\\{a\\}");
40 std::string target("{a}");
49 std::string re("\\{a\\}");
50 std::string target("{a}");
59 std::string re("\\{a\\}");
60 std::string target("{a}");

Completed in 1772 milliseconds

<<919293949596979899100>>