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

<<191192193194195196197198199200>>

  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmUtils.hpp 32 #include <string>
73 const std::vector<std::string>& instanceExtensions,
80 const std::vector<std::string>& instanceExtensions,
88 const std::vector<std::string>& supportedExtensions,
89 const std::vector<std::string>& requiredExtensions);
99 std::string getVulkanName (const deUint32 version);
  /external/deqp/framework/common/
tcuResource.hpp 28 #include <string>
55 const std::string& getName (void) const { return m_name; }
58 Resource (const std::string& name) : m_name(name) {}
61 std::string m_name;
104 std::string m_path;
136 std::string m_prefix;
  /external/google-benchmark/src/
commandlineflags.h 5 #include <string>
15 #define DECLARE_string(name) extern std::string FLAG(name)
23 std::string FLAG(name) = (default_val)
29 bool ParseInt32(const std::string& src_text, const char* str, int32_t* value);
31 // Parses a bool/Int32/string from the environment variable
38 // Parses a string for a bool flag, in the form of either
49 // Parses a string for an Int32 flag, in the form of
56 // Parses a string for a Double flag, in the form of
63 // Parses a string for a string flag, in the form o
    [all...]
  /external/google-breakpad/src/common/
dwarf_line_to_module.h 41 #include <string>
123 DwarfLineToModule(Module *module, const string& compilation_dir,
135 void DefineDir(const string &name, uint32 dir_num);
136 void DefineFile(const string &name, int32 file_num,
144 typedef std::map<uint32, string> DirectoryTable;
153 string compilation_dir_;
  /external/google-breakpad/src/common/mac/
string_utilities.cc 37 std::string ConvertToString(CFStringRef str) {
39 std::string result;
56 unsigned int IntegerValueAtIndex(string &str, unsigned int idx) {
57 string digits("0123456789"), temp;
66 if (end == string::npos)
77 if (start == string::npos)
  /external/google-breakpad/src/common/windows/
http_upload.h 32 // a set of string parameters (key/value pairs), and a file to upload.
45 #include <string>
50 using std::string;
92 // generates a multipart request body string with these parameters
98 string *request_body);
103 // Converts a UTF8 string to UTF16.
104 static wstring UTF8ToWide(const string &utf8);
106 // Converts a UTF16 string to UTF8.
107 static string WideToUTF8(const wstring &wide) {
111 // Converts a UTF16 string to specified code page
    [all...]
  /external/google-breakpad/src/processor/
module_serializer.h 41 #include <string>
78 // Given the string format symbol_data, produces a chunk of serialized data.
81 char* SerializeSymbolFileData(const string &symbol_data,
88 bool ConvertOneModule(const string &moduleid,
116 StdMapSerializer<int, string> files_serializer_;
121 RangeMapSerializer<MemAddr, string> cfi_init_rules_serializer_;
122 StdMapSerializer<MemAddr, string> cfi_delta_rules_serializer_;
source_line_resolver_base_types.h 44 #include <string>
85 Function(const string &function_name,
92 string name;
102 PublicSymbol(const string& set_name,
109 string name;
152 virtual bool ParseCFIRuleSet(const string &rule_set,
  /external/junit/src/main/java/org/junit/experimental/results/
ResultMatchers.java 41 * Matches if the result has exactly one failure, and it contains {@code string}
43 public static Matcher<Object> hasSingleFailureContaining(final String string) {
46 return item.toString().contains(string) && failureCountIs(1).matches(item);
50 description.appendText("has single failure containing " + string);
57 * contains {@code string}
59 public static Matcher<PrintableResult> hasFailureContaining(final String string) {
62 return item.toString().contains(string);
66 description.appendText("has failure containing " + string);
    [all...]
  /external/libchrome/base/
guid_unittest.cc 19 bool IsGUIDv4(const std::string& guid) {
31 std::string clientid = RandomDataToGUIDString(bytes);
37 std::string clientid = RandomDataToGUIDString(bytes);
44 std::string guid = GenerateGUID();
55 std::string guid1 = GenerateGUID();
56 std::string guid2 = GenerateGUID();
location.h 11 #include <string>
49 std::string ToString() const;
59 // it comes from __FILE__, so no need to check the contents of the string.
68 // string with HTML characters in the function names escaped, and append that
69 // string to |output|. Inclusion of the file_name_ and function_name_ are
72 std::string* output) const;
75 void WriteFunctionName(std::string* output) const;
92 std::string file_name;
93 std::string function_name;
  /external/libchrome/base/strings/
utf_string_conversions.h 10 #include <string>
25 std::string* output);
26 BASE_EXPORT std::string WideToUTF8(const std::wstring& wide);
41 std::string* output);
42 BASE_EXPORT std::string UTF16ToUTF8(StringPiece16 utf16);
44 // This converts an ASCII string, typically a hardcoded constant, to a UTF16
45 // string.
50 BASE_EXPORT std::string UTF16ToASCII(StringPiece16 utf16);
  /external/libchrome/dbus/
dbus_statistics.cc 21 std::string service;
22 std::string interface;
23 std::string method;
62 void AddStat(const std::string& service,
63 const std::string& interface,
64 const std::string& method,
85 StatValue* GetStats(const std::string& service,
86 const std::string& interface,
87 const std::string& method,
132 void AddSentMethodCall(const std::string& service
    [all...]
  /external/libcxx/test/std/containers/unord/unord.map/
count.pass.cpp 19 #include <string>
27 typedef std::unordered_map<int, std::string> C;
28 typedef std::pair<int, std::string> P;
46 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
47 min_allocator<std::pair<const int, std::string>>> C;
48 typedef std::pair<int, std::string> P;
find_const.pass.cpp 19 #include <string>
27 typedef std::unordered_map<int, std::string> C;
28 typedef std::pair<int, std::string> P;
49 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
50 min_allocator<std::pair<const int, std::string>>> C;
51 typedef std::pair<int, std::string> P;
find_non_const.pass.cpp 19 #include <string>
27 typedef std::unordered_map<int, std::string> C;
28 typedef std::pair<int, std::string> P;
49 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
50 min_allocator<std::pair<const int, std::string>>> C;
51 typedef std::pair<int, std::string> P;
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
insert_init.pass.cpp 21 #include <string>
30 typedef std::unordered_map<int, std::string> C;
31 typedef std::pair<int, std::string> P;
50 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
51 min_allocator<std::pair<const int, std::string>>> C;
52 typedef std::pair<int, std::string> P;
insert_range.pass.cpp 20 #include <string>
29 typedef std::unordered_map<int, std::string> C;
30 typedef std::pair<int, std::string> P;
50 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
51 min_allocator<std::pair<const int, std::string>>> C;
52 typedef std::pair<int, std::string> P;
  /external/libcxx/test/std/containers/unord/unord.multimap/
count.pass.cpp 19 #include <string>
27 typedef std::unordered_multimap<int, std::string> C;
28 typedef std::pair<int, std::string> P;
49 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
50 min_allocator<std::pair<const int, std::string>>> C;
51 typedef std::pair<int, std::string> P;
find_const.pass.cpp 19 #include <string>
27 typedef std::unordered_multimap<int, std::string> C;
28 typedef std::pair<int, std::string> P;
49 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
50 min_allocator<std::pair<const int, std::string>>> C;
51 typedef std::pair<int, std::string> P;
find_non_const.pass.cpp 19 #include <string>
27 typedef std::unordered_multimap<int, std::string> C;
28 typedef std::pair<int, std::string> P;
49 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
50 min_allocator<std::pair<const int, std::string>>> C;
51 typedef std::pair<int, std::string> P;
  /external/libcxx/test/std/numerics/rand/rand.device/
ctor.pass.cpp 22 // explicit random_device(const string& token = implementation-defined);
26 // therefore aren't required to accept any string, but the default shouldn't
40 bool is_valid_random_device(const std::string &token) {
49 void check_random_device_valid(const std::string &token) {
53 void check_random_device_invalid(const std::string &token) {
71 std::string token = "wrong file";
75 std::string token = "/dev/urandom";
82 std::string token = "/dev/random";
89 // Test that random_device(const string&) properly handles getting
  /external/libcxx/test/std/re/re.alg/re.alg.replace/
test6.pass.cpp 29 std::string r = std::regex_replace(phone_book, phone_numbers,
36 std::string r = std::regex_replace(phone_book, phone_numbers,
44 std::string r = std::regex_replace(phone_book, phone_numbers,
52 std::string r = std::regex_replace(phone_book, phone_numbers,
60 std::string r = std::regex_replace(phone_book, phone_numbers,
68 std::string r = std::regex_replace(phone_book, phone_numbers,
  /external/libcxx/utils/google-benchmark/src/
commandlineflags.h 5 #include <string>
15 #define DECLARE_string(name) extern std::string FLAG(name)
23 std::string FLAG(name) = (default_val)
29 bool ParseInt32(const std::string& src_text, const char* str, int32_t* value);
31 // Parses a bool/Int32/string from the environment variable
38 // Parses a string for a bool flag, in the form of either
49 // Parses a string for an Int32 flag, in the form of
56 // Parses a string for a Double flag, in the form of
63 // Parses a string for a string flag, in the form o
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 80 static uint64_t getSymbolAddressInProcess(const std::string &Name);
86 virtual uint64_t getSymbolAddress(const std::string &Name) {
101 RuntimeDyld::SymbolInfo findSymbol(const std::string &Name) override {
110 virtual uint64_t getSymbolAddressInLogicalDylib(const std::string &Name) {
125 findSymbolInLogicalDylib(const std::string &Name) override {
139 virtual void *getPointerToNamedFunction(const std::string &Name,

Completed in 1109 milliseconds

<<191192193194195196197198199200>>