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

<<121122123124125126127128129130>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
Regex.h 20 #include <string>
36 /// null string after any newline in the string in addition to its normal
37 /// function, and the $ anchor matches the null string before any
38 /// newline in the string in addition to its normal function.
60 bool isValid(std::string &Error) const;
67 /// matches - Match the regex against a given \p String.
70 /// with references to the matched group expressions (inside \p String),
74 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = nullptr);
77 /// \p String with the \p Repl string. Backreferences like "\0" in th
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerMerge.h 53 std::string Name;
62 std::string LastFailure;
65 bool Parse(const std::string &Str, bool ParseCoverage);
70 Vector<std::string> *NewFiles);
71 size_t Merge(Vector<std::string> *NewFiles) {
FuzzerOptions.h 42 std::string OutputCorpus;
43 std::string ArtifactPrefix = "./";
44 std::string ExactArtifactPath;
45 std::string ExitOnSrcPos;
46 std::string ExitOnItem;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
DynamicLibrary.h 17 #include <string>
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
112 /// @throws std::string on error.
117 static void *SearchForAddressOfSymbol(const std::string &symbolName) {
Regex.h 20 #include <string>
36 /// null string after any newline in the string in addition to its normal
37 /// function, and the $ anchor matches the null string before any
38 /// newline in the string in addition to its normal function.
60 bool isValid(std::string &Error) const;
67 /// matches - Match the regex against a given \p String.
70 /// with references to the matched group expressions (inside \p String),
74 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = nullptr);
77 /// \p String with the \p Repl string. Backreferences like "\0" in th
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/
FuzzerMerge.h 53 std::string Name;
62 std::string LastFailure;
65 bool Parse(const std::string &Str, bool ParseCoverage);
70 Vector<std::string> *NewFiles);
71 size_t Merge(Vector<std::string> *NewFiles) {
FuzzerOptions.h 42 std::string OutputCorpus;
43 std::string ArtifactPrefix = "./";
44 std::string ExactArtifactPath;
45 std::string ExitOnSrcPos;
46 std::string ExitOnItem;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
DynamicLibrary.h 17 #include <string>
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
112 /// @throws std::string on error.
117 static void *SearchForAddressOfSymbol(const std::string &symbolName) {
Regex.h 20 #include <string>
36 /// null string after any newline in the string in addition to its normal
37 /// function, and the $ anchor matches the null string before any
38 /// newline in the string in addition to its normal function.
60 bool isValid(std::string &Error) const;
67 /// matches - Match the regex against a given \p String.
70 /// with references to the matched group expressions (inside \p String),
74 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = nullptr);
77 /// \p String with the \p Repl string. Backreferences like "\0" in th
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/
FuzzerMerge.h 53 std::string Name;
62 std::string LastFailure;
65 bool Parse(const std::string &Str, bool ParseCoverage);
70 Vector<std::string> *NewFiles);
71 size_t Merge(Vector<std::string> *NewFiles) {
FuzzerOptions.h 42 std::string OutputCorpus;
43 std::string ArtifactPrefix = "./";
44 std::string ExactArtifactPath;
45 std::string ExitOnSrcPos;
46 std::string ExitOnItem;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
system_error.cpp 20 #include "string"
21 #include "string.h"
66 string do_strerror_r(int ev);
69 string do_strerror_r(int ev) {
72 return string(buffer);
74 return string(buffer);
84 // GNU always returns a string pointer in its return value. The
85 // string might point to either the input buffer, or a static
113 string do_strerror_r(int ev) {
126 return string(error_message)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.specalg/
make_optional.pass.cpp 19 #include <string>
35 std::string s("123");
36 optional<std::string> opt = make_optional(s);
40 std::string s("123");
41 optional<std::string> opt = make_optional(std::move(s));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.construct/
iter_iter.pass.cpp 34 typedef forward_iterator<std::string::const_iterator> F;
35 std::string s1("\\(a\\)");
36 std::string s2("\\(a[bc]\\)");
37 std::string s3("\\(a\\([bc]\\)\\)");
38 std::string s4("(a([bc]))");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/re.submatch.op/
compare.pass.cpp 224 typedef std::basic_string<CharT> string; typedef
225 typedef std::sub_match<typename string::const_iterator> sub_match;
266 assert((x[0] == sm2) == (string(1, x[0]) == y));
267 assert((x[0] != sm2) == (string(1, x[0]) != y));
268 assert((x[0] < sm2) == (string(1, x[0]) < y));
269 assert((x[0] > sm2) == (string(1, x[0]) > y));
270 assert((x[0] <= sm2) == (string(1, x[0]) <= y));
271 assert((x[0] >= sm2) == (string(1, x[0]) >= y));
272 assert((sm1 == y[0]) == (x == string(1, y[0])));
273 assert((sm1 != y[0]) == (x != string(1, y[0])))
    [all...]
  /system/bt/service/
adapter.h 63 Adapter* adapter, const std::string& device_address, bool connected);
97 virtual std::string GetName() const = 0;
101 virtual bool SetName(const std::string& name) = 0;
103 // Returns the local adapter addess in string form (XX:XX:XX:XX:XX:XX).
104 virtual std::string GetAddress() const = 0;
113 virtual bool IsDeviceConnected(const std::string& device_address) = 0;
  /system/core/adb/
range.h 19 #include <string>
24 explicit Range(std::string data) : data_(std::move(data)) {}
54 std::string::iterator begin() {
58 std::string::iterator end() {
62 std::string data_;
  /system/core/base/include/android-base/
utf8.h 21 #include <string>
37 bool WideToUTF8(const wchar_t* utf16, const size_t size, std::string* utf8);
39 // Convert a NULL-terminated string of UTF-16 characters to UTF-8. Returns
41 bool WideToUTF8(const wchar_t* utf16, std::string* utf8);
45 bool WideToUTF8(const std::wstring& utf16, std::string* utf8);
51 // Convert a NULL-terminated string of UTF-8 characters to UTF-16. Returns
55 // Convert a UTF-8 std::string (including any embedded NULL characters) to
57 bool UTF8ToWide(const std::string& utf8, std::wstring* utf16);
59 // Convert a file system path, represented as a NULL-terminated string of
60 // UTF-8 characters, to a UTF-16 string representing the same file syste
    [all...]
  /system/core/fs_mgr/include/
fs_mgr_avb.h 22 #include <string>
39 using ByNameSymlinkMap = std::map<std::string, std::string>;
100 const std::string& avb_version() const { return avb_version_; }
128 std::string avb_version_;
  /system/core/init/
action_manager.h 20 #include <string>
37 void QueueEventTrigger(const std::string& trigger);
38 void QueuePropertyChange(const std::string& name, const std::string& value);
40 void QueueBuiltinAction(BuiltinFunction func, const std::string& name);
action_parser.cpp 37 bool IsActionableProperty(Subcontext* subcontext, const std::string& prop_name) {
55 Result<Success> ParsePropertyTrigger(const std::string& trigger, Subcontext* subcontext,
56 std::map<std::string, std::string>* property_triggers) {
57 const static std::string prop_str("property:");
58 std::string prop_name(trigger.substr(prop_str.length()));
60 if (equal_pos == std::string::npos) {
64 std::string prop_value(prop_name.substr(equal_pos + 1));
77 Result<Success> ParseTriggers(const std::vector<std::string>& args, Subcontext* subcontext,
78 std::string* event_trigger
    [all...]
  /system/core/libvndksupport/tests/
linker_test.cpp 22 #include <string>
30 static std::string find_sphal_lib() {
41 std::string name = dp->d_name;
43 return std::string(path) + "/" + name;
50 std::string name = find_sphal_lib();
  /system/extras/simpleperf/include/
simpleperf.h 22 #include <string>
31 std::vector<std::string> GetAllEvents() SIMPLEPERF_EXPORT;
32 bool IsEventSupported(const std::string& name) SIMPLEPERF_EXPORT;
35 std::string event;
73 virtual bool AddEvent(const std::string& name);
  /system/libvintf/
HalInterface.cpp 18 #include <string>
32 const std::function<bool(const std::string&, const std::string&, bool isRegex)>& func) const {
55 bool HalInterface::insertInstance(const std::string& instanceOrPattern, bool isRegex) {
63 bool HalInterface::removeInstance(const std::string& instanceOrPattern, bool isRegex) {
utils.cpp 39 std::string getProperty(const std::string& key,
40 const std::string& defaultValue) const override {
43 uint64_t getUintProperty(const std::string& key, uint64_t defaultValue,
47 bool getBoolProperty(const std::string& key, bool defaultValue) const override {

Completed in 1027 milliseconds

<<121122123124125126127128129130>>