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

<<101102103104105106107108109110>>

  /system/tools/hidl/c2hal/
Include.h 24 #include <string>
30 Include(const std::string &name, bool isLibrary);
33 static std::string type() { return "include"; }
34 const std::string decType() const override { return type(); }
Note.h 22 #include <string>
32 Note(const std::string &name);
37 static std::string type() { return "note"; }
38 const std::string decType() const override { return type(); }
TypeDef.h 22 #include <string>
29 TypeDef(const std::string &name, Declaration* declaration);
32 static std::string type() { return "typedef"; }
33 const std::string decType() const override { return type(); }
VarDeclaration.h 26 VarDeclaration(Type *type, const std::string &name);
29 void setName(const std::string &name) override;
33 static std::string type() { return "var"; }
34 const std::string decType() const override { return type(); }
  /system/tpm/trunks/
hmac_session_impl.h 23 #include <string>
58 const std::string& bind_authorization_value,
61 void SetEntityAuthorizationValue(const std::string& value) override;
62 void SetFutureAuthorizationValue(const std::string& value) override;
session_manager_impl.h 22 #include <string>
44 const std::string& bind_authorization_value,
53 TPM_RC EncryptSalt(const std::string& salt, std::string* encrypted_salt);
  /system/update_engine/common/
hardware_interface.h 22 #include <string>
62 // Returns the HWID or an empty string on error.
63 virtual std::string GetHardwareClass() const = 0;
65 // Returns the firmware version or an empty string if the system is
67 virtual std::string GetFirmwareVersion() const = 0;
69 // Returns the ec version or an empty string if the system is not
71 virtual std::string GetECVersion() const = 0;
hwid_override.cc 20 #include <string>
27 using std::string;
37 string HwidOverride::Read(const base::FilePath& root) {
40 string result;
  /system/update_engine/
service_delegate_android_interface.h 22 #include <string>
44 const std::string& payload_url,
47 const std::vector<std::string>& key_value_pair_headers,
76 virtual bool VerifyPayloadApplicable(const std::string& metadata_filename,
  /system/update_engine/update_manager/
device_policy_provider.h 21 #include <string>
41 virtual Variable<std::string>* var_release_channel() = 0;
47 virtual Variable<std::string>* var_target_version_prefix() = 0;
59 // devices, this will be an empty string.
60 virtual Variable<std::string>* var_owner() = 0;
  /test/vts/agents/hal/
BinderClientToDriver.h 27 extern sp<IVtsFuzzer> GetBinderClient(const string& service_name);
  /test/vts/drivers/hal/server/
BinderServer.h 27 extern void StartBinderServer(const string& service_name,
  /test/vts/runners/target/vts_hal_hidl_target/
VtsHalHidlTargetTestBase.cpp 25 string VtsHalHidlTargetTestBase::PropertyGet(const char* name) {
38 std::string value(env_value);
47 string VtsHalHidlTargetTestBase::getTestCaseName() const {
51 string VtsHalHidlTargetTestBase::getTestSuiteName() const {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
list-1.s 3 .string "haha %x\n"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
align_text.s 1 .asciz "" # empty string
  /toolchain/binutils/binutils-2.27/include/gdb/
signals.h 52 #define SET(symbol, constant, name, string) \
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
symbol2w.s 6 .string "function 'Foo' used"
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
pr19013.s 5 .string "ABCD"
  /build/soong/android/
variable.go 35 Asflags []string
36 Cflags []string
46 Cflags []string
47 Version_script *string `android:"arch_variant"`
51 Cflags []string
55 Cflags []string `android:"arch_variant"`
59 Cflags []string
63 Cflags []string
67 Cflags []string
73 Cflags []string
    [all...]
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 32 #include <string>
42 static const std::string kSystemLibraryPath = "/system/lib64";
43 static const std::string kVendorLibraryPath = "/vendor/lib64";
44 static const std::string kProductLibraryPath = "/product/lib64";
46 static const std::string kSystemLibraryPath = "/system/lib";
47 static const std::string kVendorLibraryPath = "/vendor/lib";
48 static const std::string kProductLibraryPath = "/product/lib";
55 static std::vector<std::string> kSystemLibraries = {
81 static bool not_accessible(const std::string& err) {
83 err.find("is not accessible for the namespace \"classloader-namespace\"") != std::string::npos
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
Vvm3VoicemailMessageCreator.java 88 context.getString(R.string.vvm3_error_vms_dns_failure_title),
89 getCustomerSupportString(context, R.string.vvm3_error_vms_dns_failure_message),
96 context.getString(R.string.vvm3_error_vmg_dns_failure_title),
97 getCustomerSupportString(context, R.string.vvm3_error_vmg_dns_failure_message),
104 context.getString(R.string.vvm3_error_spg_dns_failure_title),
105 getCustomerSupportString(context, R.string.vvm3_error_spg_dns_failure_message),
112 context.getString(R.string.vvm3_error_vms_no_cellular_title),
113 getCustomerSupportString(context, R.string.vvm3_error_vms_no_cellular_message),
120 context.getString(R.string.vvm3_error_vmg_no_cellular_title),
121 getCustomerSupportString(context, R.string.vvm3_error_vmg_no_cellular_message)
    [all...]
  /external/deqp/framework/delibs/decpp/
deStringUtil.cpp 21 * \brief String utilities.
35 using std::string;
63 //! Convert string to lowercase using the classic "C" locale
64 string toLower (const string& str)
66 string ret;
71 //! Convert string to uppercase using the classic "C" locale
72 string toUpper (const string& str)
74 string ret
    [all...]
  /external/clang/unittests/Format/
CleanupTest.cpp 23 std::string cleanup(llvm::StringRef Code,
35 std::string Code = "namespace A {\n"
43 std::string Expected = "\n\n\n\n\nnamespace C {\n"
50 std::string Result = cleanup(Code, Ranges);
55 std::string Code = "namespace A {\n"
62 std::string Expected = "namespace A {\n"
67 std::string Result = cleanup(Code, Ranges);
72 std::string Code = "namespace A {\n\n"
76 std::string Expected = "namespace A {\n\n"
80 std::string Result = cleanup(Code, Ranges)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.cc 71 hash_set<string> MakeWordsMap(const char* const words[], size_t num_words) {
72 hash_set<string> result;
81 hash_set<string> kUpperSegments =
87 string UnderscoresToCamelCase(const string& input, bool first_capitalized) {
88 vector<string> values;
89 string current;
127 string result;
129 for (vector<string>::iterator i = values.begin(); i != values.end(); ++i) {
130 string value = *i
803 string string; local
    [all...]
  /development/vndk/tools/header-checker/header-abi-util/src/
version_script_parser.cpp 26 #include <string>
34 std::unordered_set<std::string> AllArches({"arm", "arm64", "x86", "x86_64",
37 static bool StringContains(const std::string &line,
38 const std::string &substring) {
39 return (line.find(substring) != std::string::npos);
42 static bool LineSatisfiesArch(const std::string &line,
43 const std::string arch) {
54 VersionScriptParser::VersionScriptParser(const std::string &version_script,
55 const std::string &arch,
56 const std::string &api)
    [all...]

Completed in 1090 milliseconds

<<101102103104105106107108109110>>