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

<<31323334353637383940>>

  /system/core/adb/
adb_client.h 24 #include <string>
28 int adb_connect(const std::string& service, std::string* _Nonnull error);
35 bool adb_command(const std::string& service);
39 bool adb_query(const std::string& service, std::string* _Nonnull result,
40 std::string* _Nonnull error);
59 bool adb_status(int fd, std::string* _Nonnull error);
62 std::string format_host_command(const char* _Nonnull command);
65 bool adb_get_feature_set(FeatureSet* _Nonnull feature_set, std::string* _Nonnull error)
    [all...]
  /system/core/property_service/libpropertyinfoserializer/include/property_info_serializer/
property_info_serializer.h 20 #include <string>
34 std::string name;
35 std::string context;
36 std::string type;
41 const std::string& default_context, const std::string& default_type,
42 std::string* serialized_trie, std::string* error);
44 void ParsePropertyInfoFile(const std::string& file_contents,
46 std::vector<std::string>* errors)
    [all...]
  /system/core/property_service/libpropertyinfoserializer/
trie_builder.h 22 #include <string>
30 PropertyEntryBuilder(const std::string& name, const std::string* context, const std::string* type)
32 std::string name;
33 const std::string* context;
34 const std::string* type;
39 TrieBuilderNode(const std::string& name) : property_entry_(name, nullptr, nullptr) {}
41 TrieBuilderNode* FindChild(const std::string& name) {
48 const TrieBuilderNode* FindChild(const std::string& name) const
    [all...]
  /system/nfc/src/include/
nfc_config.h 18 #include <string>
57 static bool hasKey(const std::string& key);
58 static std::string getString(const std::string& key);
59 static std::string getString(const std::string& key,
60 std::string default_value);
61 static unsigned getUnsigned(const std::string& key);
62 static unsigned getUnsigned(const std::string& key, unsigned default_value);
63 static std::vector<uint8_t> getBytes(const std::string& key)
    [all...]
  /system/tools/hidl/c2hal/
Declaration.h 22 #include <string>
31 Declaration(const std::string &name);
34 const std::string &getName() const;
35 virtual void setName(const std::string &name);
41 const std::string& getComment() const;
42 void setComment(const std::string &comment);
44 std::string getInterfaceName() const;
48 virtual const std::string decType() const = 0;
59 std::string mName;
60 std::string mComment
    [all...]
  /test/vts/runners/target/vts_hal_hidl_target/
VtsHalHidlTargetTestEnvBase.h 93 string getServiceName(const string& defaultName = kDefaultServiceName) {
120 string getServiceName(const string& instanceName, const string& defaultName);
125 void registerTestService(const string& FQName);
130 void addHalServiceInstance(const string& halServiceInstance);
133 map<string, string> halServiceInstances_;
135 set<string> registeredHalServices_
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.h 39 std::string CCPath; // The path to the cc executable.
40 std::string RemoteClientPath; // The path to the rsh / ssh executable.
41 std::vector<std::string> ccArgs; // CC-specific arguments.
43 const std::vector<std::string> *CCArgs)
50 static CC *create(std::string &Message,
51 const std::string &CCBinary,
52 const std::vector<std::string> *Args);
61 int ExecuteProgram(const std::string &ProgramFile,
62 const std::vector<std::string> &Args,
64 const std::string &InputFile
    [all...]
  /device/google/cuttlefish_common/common/libs/strings/
str_split.cpp 20 #include <string>
23 std::vector<std::string> cvd::StrSplit(const std::string& src, char delimiter) {
25 std::vector<std::string> result;
26 for (std::string s; std::getline(stream, s, delimiter); s.clear()) {
  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 5 class string class in namespace:PR10457
7 string(const char* str, unsigned);
11 string(const char (&str)[N]) function in class:PR10457::string
12 : string(str) {} // expected-error{{constructor for 'string<6>' creates a delegation cycle}}
16 string s("hello");
  /external/compiler-rt/test/tsan/
ignore_lib2.cc 14 #include <string>
17 std::string lib0 = std::string(dirname(argv[0])) + "/libignore_lib2_0.so";
18 std::string lib1 = std::string(dirname(argv[0])) + "/libignore_lib2_1.so";
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest_utils.cc 42 string GetHelperBinary() {
43 string helper_path;
46 helper_path = string(bindir) + "/";
53 helper_path = string(self_path);
55 if (pos == string::npos) {
  /external/libchrome/dbus/
mock_exported_object.h 8 #include <string>
23 bool(const std::string& interface_name,
24 const std::string& method_name,
27 void(const std::string& interface_name,
28 const std::string& method_name,
  /external/libcxx/test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code_string.pass.cpp 14 // system_error(error_code ec, const string& what_arg);
19 #include <string>
24 std::string what_arg("test message");
27 std::string what_message(se.what());
28 assert(what_message.find(what_arg) != std::string::npos);
29 assert(what_message.find("Not a directory") != std::string::npos);
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.create/
make_unique.single.pass.cpp 12 #include <string>
25 std::unique_ptr<std::string> p2 = std::make_unique<std::string> ( "Meow!" );
27 p2 = std::make_unique<std::string> ();
29 p2 = std::make_unique<std::string> ( 6, 'z' );
  /external/parameter-framework/upstream/parameter/
CompoundRule.h 34 #include <string>
40 virtual bool parse(CRuleParser &ruleParser, std::string &strError);
43 std::string dump() const override;
55 virtual std::string getKind() const;
59 std::string logValue(utility::ErrorContext &errorContext) const override;
SelectionCriteriaDefinition.h 42 CSelectionCriterion *createSelectionCriterion(const std::string &strName,
47 const CSelectionCriterion *getSelectionCriterion(const std::string &strName) const;
48 CSelectionCriterion *getSelectionCriterion(const std::string &strName);
51 void listSelectionCriteria(std::list<std::string> &lstrResult, bool bWithTypeInfo,
55 virtual std::string getKind() const;
SubsystemObjectCreator.h 36 #include <string>
41 CSubsystemObjectCreator(const std::string &strMappingKey, uint32_t uiAncestorIdMask,
45 const std::string &getMappingKey() const;
51 const std::string &strMappingValue,
59 std::string _strMappingKey;
  /external/parameter-framework/upstream/skeleton-subsystem/
SkeletonSubsystemObject.h 39 CSkeletonSubsystemObject(const std::string &strMappingValue,
46 virtual bool sendToHW(std::string &strError);
47 virtual bool receiveFromHW(std::string &strError);
51 virtual bool accessHW(bool bReceive, std::string &strError);
57 std::string _strMessage;
  /external/proguard/src/proguard/util/
ExtensionMatcher.java 31 private final String extension;
38 public ExtensionMatcher(String extension)
46 public boolean matches(String string)
48 return endsWithIgnoreCase(string, extension);
53 * Returns whether the given string ends with the given suffix, ignoring its
56 private static boolean endsWithIgnoreCase(String string, String suffix)
58 int stringLength = string.length()
    [all...]
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_field_base.h 34 #include <string>
69 map<string, string> variables_;
73 void AddNullCheck(io::Printer* printer, const std::string& name);
76 void SetCommonOneofFieldVariables(map<string, string>* variables);
78 std::string oneof_property_name();
79 std::string oneof_name();
80 std::string property_name();
81 std::string name()
    [all...]
csharp_helpers.h 38 #include <string>
72 std::string StripDotProto(const std::string& proto_file);
75 std::string GetReflectionClassUnqualifiedName(const FileDescriptor* descriptor);
77 std::string GetClassName(const EnumDescriptor* descriptor);
79 std::string GetFieldName(const FieldDescriptor* descriptor);
81 std::string GetFieldConstantName(const FieldDescriptor* field);
83 std::string GetPropertyName(const FieldDescriptor* descriptor);
87 std::string UnderscoresToCamelCase(const std::string& input
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_callback_registry.h 21 #include <string>
48 EventCallback* GetCallback(const string& key);
52 void RegisterCallback(const string& key, EventCallback callback);
55 void UnregisterCallback(const string& key);
64 std::map<string, EventCallback> keyed_callback_ GUARDED_BY(mu_);
  /external/tensorflow/tensorflow/core/distributed_runtime/
worker_cache_partial.h 19 #include <string>
34 bool GetDeviceLocalityNonBlocking(const string& device,
37 void GetDeviceLocalityAsync(const string& device, DeviceLocality* locality,
50 Status RefreshDeviceStatus(const string& device_name);
52 typedef std::unordered_map<string, DeviceAttributes> StatusMap;
  /external/webrtc/talk/app/webrtc/
webrtcsdp.h 40 #include <string>
53 // return - SDP string serialized from the arguments.
54 std::string SdpSerialize(const JsepSessionDescription& jdesc);
56 // Serializes the passed in IceCandidateInterface to a SDP string.
58 std::string SdpSerializeCandidate(const IceCandidateInterface& candidate);
60 // Deserializes the passed in SDP string to a JsepSessionDescription.
61 // message - SDP string to be Deserialized.
62 // jdesc - The JsepSessionDescription deserialized from the SDP string.
65 bool SdpDeserialize(const std::string& message,
69 // Deserializes the passed in SDP string to one JsepIceCandidate
    [all...]
  /external/webrtc/talk/media/base/
device.h 38 Device(const std::string& name, int id)
42 Device(const std::string& name, const std::string& id)
45 std::string name;
46 std::string id;

Completed in 1410 milliseconds

<<31323334353637383940>>