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

<<81828384858687888990>>

  /prebuilts/go/linux-x86/test/fixedbugs/issue10219.dir/
a.go 8 S string
13 P string
21 func (s *S) M(p string) {
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_common.i 15 #include <string>
17 inline std::string SWIG_scm2string(SCM x) {
20 std::string s(temp);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.modifiers/
clear.pass.cpp 19 #include <string>
27 typedef std::unordered_map<int, std::string> C;
28 typedef std::pair<int, std::string> P;
44 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
45 min_allocator<std::pair<const int, std::string>>> C;
46 typedef std::pair<int, std::string> P;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
clear.pass.cpp 19 #include <string>
27 typedef std::unordered_multimap<int, std::string> C;
28 typedef std::pair<int, std::string> P;
44 typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>,
45 min_allocator<std::pair<const int, std::string>>> C;
46 typedef std::pair<int, std::string> P;
  /prebuilts/tools/linux-x86_64/kythe/proto/
storage.proto 72 string signature = 1;
77 string corpus = 2;
85 string root = 3;
97 string path = 4;
106 string language = 5;
134 string edge_kind = 2;
144 string fact_name = 4;
162 string edge_kind = 2;
168 string edge_kind = 1;
170 string fact_name = 3
    [all...]
  /system/bt/service/common/bluetooth/
scan_filter.h 37 const std::string& device_name() const { return device_name_; }
38 void set_device_name(const std::string& name) { device_name_ = name; }
42 const std::string& device_address() const { return device_address_; }
46 bool SetDeviceAddress(const std::string& device_address);
68 std::string device_name_;
69 std::string device_address_;
  /system/bt/service/
logging_helpers.h 18 #include <string.h>
20 #include <string>
47 std::string BtAddrString(const RawAddress* addr);
  /system/core/debuggerd/libdebuggerd/include/libdebuggerd/
tombstone.h 25 #include <string>
38 int open_tombstone(std::string* path);
42 pid_t pid, pid_t tid, const std::string& process_name,
43 const std::map<pid_t, std::string>& threads, uint64_t abort_msg_address,
44 std::string* amfd_data);
53 std::string* amfd_data);
  /system/core/libutils/include/utils/
Printer.h 27 // Print a new line specified by 'string'. \n is appended automatically.
28 // -- Assumes that the string has no new line in it.
29 virtual void printLine(const char* string = "") = 0;
31 // Print a new line specified by the format string. \n is appended automatically.
32 // -- Assumes that the resulting string has no new line in it.
52 virtual void printLine(const char* string);
55 void printRaw(const char* string);
68 // - In addition, each line will be prefixed with the 'prefix' string.
72 virtual void printLine(const char* string);
91 // - In addition, each line will be prefixed with the 'prefix' string
    [all...]
  /system/hardware/interfaces/wifi/keystore/1.0/
IKeystore.hal 44 getBlob(string key)
58 getPublicKey(string keyId)
74 sign(string keyId, vec<uint8_t> dataToSign)
  /system/libvintf/include/vintf/
KernelConfigTypedValue.h 20 #include <string>
36 // Construct with empty string value
39 KernelConfigTypedValue(std::string &&s);
46 bool matchValue(const std::string &) const;
51 friend bool parseKernelConfigValue(const std::string &s, KernelConfigTypedValue *kctv);
52 friend bool parseKernelConfigTypedValue(const std::string& s, KernelConfigTypedValue* kctv);
54 std::string mStringValue;
MatrixInstance.h 20 #include <string>
42 const std::string& package() const;
44 const std::string& interface() const;
52 bool matchInstance(const std::string& e) const;
54 // If isRegex, return the regex pattern. Else empty string.
55 const std::string& regexPattern() const;
57 // If !isRegex, return the exact instance name. Else empty string.
58 const std::string& exactInstance() const;
  /system/tools/hidl/build/
utils.go 18 func wrap(prefix string, strs []string, suffix string) []string {
19 ret := make([]string, len(strs))
27 func concat(sstrs ...[]string) []string {
28 var ret []string
35 func remove(str string, strs []string) []string
    [all...]
fqName.go 25 packageComponents []string
26 minor string
27 major string
36 func parseFqName(f string) (*fqName, error) {
40 return nil, errors.New("Poorly formed hal interface name: '" + f + "' must match '" + re_package.String() + "'")
52 func (f *fqName) inPackage(pkg string) bool {
68 func (f *fqName) pkg() string {
71 func (f *fqName) version() string {
74 func (f *fqName) sanitizedVersion() string {
77 func (f *fqName) string() string func
    [all...]
  /system/tools/hidl/c2hal/
Define.h 22 #include <string>
30 Define(const std::string &name, const std::string &slurp);
33 static std::string type() { return "define"; }
34 const std::string decType() const override { return type(); }
44 const std::string mSlurp;
  /system/tpm/trunks/
mock_policy_session.h 20 #include <string>
37 const std::string& bind_authorization_value,
40 MOCK_METHOD1(GetDigest, TPM_RC(std::string*));
41 MOCK_METHOD1(PolicyOR, TPM_RC(const std::vector<std::string>&));
42 MOCK_METHOD2(PolicyPCR, TPM_RC(uint32_t, const std::string&));
46 MOCK_METHOD1(SetEntityAuthorizationValue, void(const std::string&));
policy_session.h 20 #include <string>
47 const std::string& bind_authorization_value,
56 virtual TPM_RC GetDigest(std::string* digest) = 0;
61 virtual TPM_RC PolicyOR(const std::vector<std::string>& digests) = 0;
64 // string is provided, the PolicySession is bound to the current PCR value.
66 const std::string& pcr_value) = 0;
82 virtual void SetEntityAuthorizationValue(const std::string& value) = 0;
  /test/vts/compilation_tools/vtsc/code_gen/driver/
HalHidlCodeGen.h 20 #include <string>
38 const string& fuzzer_extended_class_name) override;
42 const string& fuzzer_extended_class_name) override;
46 const string& fuzzer_extended_class_name) override;
50 const string& fuzzer_extended_class_name) override;
54 const string& fuzzer_extended_class_name) override;
58 const string& fuzzer_extended_class_name) override;
65 const string& fuzzer_extended_class_name) override;
69 const string& fuzzer_extended_class_name) override;
77 const string& fuzzer_extended_class_name
    [all...]
  /test/vts-testcase/fuzz/iface_fuzzer/
ProtoFuzzerStats.cpp 26 using std::string;
33 void ProtoFuzzerStats::RegisterTouch(string iface_name, string func_name) {
35 string key = iface_name + "::" + func_name;
41 string ProtoFuzzerStats::StatsString() const {
42 std::map<string, uint64_t> ordered_result{touch_count_.cbegin(),
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ia64/
merge1.s 2 .LC1: .string "foo"
3 .LC2: .string "foo"
7 .LC3: .string "bar"
merge2.s 2 .LC2: .string "foo"
3 .LC1: .string "foo"
7 .LC3: .string "bar"
  /development/vndk/tools/header-checker/header-abi-util/include/
header_abi_util.h 24 #include <string>
35 std::string RealPath(const std::string &path);
37 std::set<std::string> CollectAllExportedHeaders(
38 const std::vector<std::string> &exported_header_dirs);
48 VersionScriptParser(const std::string &version_script,
49 const std::string &arch,
50 const std::string &api);
53 const std::set<std::string> &GetFunctions();
55 const std::set<std::string> &GetGlobVars()
    [all...]
  /external/libbrillo/brillo/
mime_utils.cc 48 static std::string EncodeParam(const std::string& param) {
49 // If the string contains one of "tspecials" characters as
51 if (param.find_first_of("()<>@,;:\\\"/[]?=") != std::string::npos) {
57 static std::string DecodeParam(const std::string& param) {
68 bool mime::Split(const std::string& mime_string,
69 std::string* type,
70 std::string* subtype,
72 std::vector<std::string> parts
    [all...]
  /art/libdexfile/dex/
modifiers.cc 17 #include <string>
23 std::string PrettyJavaAccessFlags(uint32_t access_flags) {
24 std::string result;
  /bionic/linker/
linker_dlwarning.cpp 33 #include <string>
35 static std::string current_msg;
55 std::string msg = current_msg;

Completed in 3999 milliseconds

<<81828384858687888990>>