| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.cons/ |
| brace_assignment.pass.cpp | 12 // <string> 17 #include <string> 27 std::string s = "hello world"; 32 std::string s = "hello world";
|
| /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/ |
| extensions.h | 18 #include <string> 32 // Returns literal string operand of OpExtension instruction. 33 std::string GetExtensionString(const spv_parsed_instruction_t* inst); 35 // Returns text string listing |extensions| separated by whitespace. 36 std::string ExtensionSetToString(const ExtensionSet& extensions);
|
| /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/ |
| code_generator.h | 42 #include <string> 78 const string& parameter, 80 string* error) const = 0; 101 const string& parameter, 103 string* error) const { 136 virtual io::ZeroCopyOutputStream* Open(const string& filename) = 0; 139 virtual io::ZeroCopyOutputStream* OpenForAppend(const string& filename); 148 const string& filename, const string& insertion_point); 169 extern void ParseGeneratorParameter(const string& [all...] |
| /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/objectivec/ |
| objectivec_helpers.h | 34 #include <string> 48 string expected_prefixes_path; 49 string generate_for_named_framework; 50 string named_framework_to_proto_path_mappings_path; 54 string EscapeTrigraphs(const string& to_escape); 57 string StripProto(const string& filename); 64 bool IsRetainedName(const string& name); 68 bool IsInitName(const string& name) [all...] |
| /system/connectivity/wificond/tests/ |
| shell_utils.h | 20 #include <string> 30 int RunShellCommand(const std::string& shell_command, 31 std::string* shell_stdout=nullptr);
|
| /system/extras/perfprofd/dropbox/ |
| dropbox.h | 21 #include <string> 30 const std::string& temp_directory, 31 std::string* error_msg);
|
| /system/hwservicemanager/ |
| Vintf.h | 3 #include <string> 13 vintf::Transport getTransport(const std::string &interfaceName, 14 const std::string &instanceName);
|
| /system/update_engine/payload_generator/ |
| delta_diff_generator.h | 20 #include <string> 35 // Pass empty string to not sign the update. 40 const std::string& output_path, 41 const std::string& private_key_path,
|
| /system/update_engine/update_manager/ |
| policy.cc | 19 #include <string> 21 using std::string; 25 string ToString(EvalStatus status) {
|
| /test/vts/drivers/hal/common/include/driver_base/ |
| DriverCallbackBase.h | 20 #include <string> 39 static const char* GetCallbackID(const string& name); 42 const string& callback_socket_name);
|
| /toolchain/binutils/binutils-2.27/bfd/ |
| cpu-w65.c | 28 const char *string) 30 if (strcmp(string,"w65") == 0) 32 if (strcmp(string,"w65816") == 0)
|
| /external/parameter-framework/upstream/parameter/ |
| ParameterMgr.h | 51 #include <string> 87 CParameterMgr(const std::string &strConfigurationFilePath, core::log::ILogger &logger); 92 * @param[out] strError is a std::string describing the error if an error occurred 97 bool load(std::string &strError); 111 const std::string &strName, const CSelectionCriterionType *pSelectionCriterionType); 113 CSelectionCriterion *getSelectionCriterion(const std::string &strName); 119 const CConfigurableElement *getConfigurableElement(const std::string &strPath, 120 std::string &strError) const; 124 * @param[in] strPath A std::string representing a path to an element. 130 CConfigurableElement *getConfigurableElement(const std::string &strPath, std::string &strError) [all...] |
| ComponentType.h | 34 #include <string> 41 CComponentType(const std::string &strName); 47 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const; 52 * @return A std::string containing the mapping as a comma separated key value pairs 54 virtual std::string getFormattedMapping() const; 59 virtual std::string getKind() const;
|
| /build/kati/ |
| file.h | 20 #include <string> 29 explicit Makefile(const string& filename); 32 const string& buf() const { return buf_; } 33 const string& filename() const { return filename_; } 41 string buf_; 43 string filename_;
|
| /external/deqp/modules/egl/ |
| teglImageFormatTests.hpp | 36 TestCaseGroup* createSimpleCreationTests (EglTestContext& eglTestCtx, const std::string& name, const std::string& desc); 37 TestCaseGroup* createModifyTests (EglTestContext& eglTestCtx, const std::string& name, const std::string& desc); 38 TestCaseGroup* createMultiContextRenderTests (EglTestContext& eglTestCtx, const std::string& name, const std::string& desc);
|
| /external/google-breakpad/src/google_breakpad/processor/ |
| system_info.h | 38 #include <string> 59 // A string identifying the operating system, such as "Windows NT", 63 string os; 65 // A short form of the os string, using lowercase letters and no spaces, 71 string os_short; 73 // A string identifying the version of the operating system, such as 76 string os_version; 78 // A string identifying the basic CPU family, such as "x86" or "ppc". 83 string cpu; 85 // A string further identifying the specific CPU, such a [all...] |
| /external/libchrome/base/json/ |
| string_escape.h | 10 #include <string> 21 // On return, |dest| will contain a valid UTF-8 JSON string. 30 std::string* dest); 34 // control characters. On return, |dest| will contain a valid UTF-8 JSON string. 37 std::string* dest); 41 BASE_EXPORT std::string GetQuotedJSONString(const StringPiece& str); 42 BASE_EXPORT std::string GetQuotedJSONString(const StringPiece16& str); 44 // Given an arbitrary byte string |str|, this will escape all non-ASCII bytes 55 BASE_EXPORT std::string EscapeBytesAsInvalidJSONString(const StringPiece& str,
|
| /external/libvpx/libvpx/third_party/libwebm/common/ |
| file_util.h | 13 #include <string> 20 std::string GetTempFileName(); 23 uint64_t GetFileSize(const std::string& file_name); 30 explicit TempFileDeleter(std::string file_name) : file_name_(file_name) {} 32 const std::string& name() const { return file_name_; } 35 std::string file_name_;
|
| /external/llvm/lib/Target/NVPTX/ |
| ManagedStringPool.h | 1 //===-- ManagedStringPool.h - Managed String Pool ---------------*- C++ -*-===// 10 // The strings allocated from a managed string pool are owned by the string 11 // pool and will be deleted together with the managed string pool. 19 #include <string> 23 /// ManagedStringPool - The strings allocated from a managed string pool are 24 /// owned by the string pool and will be deleted together with the managed 25 /// string pool. 27 SmallVector<std::string *, 8> Pool; 32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin() [all...] |
| /external/parameter-framework/upstream/remote-processor/ |
| RemoteCommand.h | 34 #include <string> 40 virtual const std::string &getCommand() const = 0; 43 virtual void addArgument(const std::string &strArgument) = 0; 45 virtual const std::string &getArgument(size_t argument) const = 0; 50 virtual const std::vector<std::string> &getArguments() const = 0; 51 virtual const std::string packArguments(size_t startArgument, size_t nbArguments) const = 0;
|
| /external/parameter-framework/upstream/utility/ |
| ErrorContext.hpp | 32 #include <string> 41 ErrorContext(std::string &error) : mError(error) {} 43 void setError(const std::string &error) { mError = error; } 45 void appendToError(const std::string &append) { mError += append; } 47 void prependToError(const std::string &prepend) { mError = prepend + mError; } 51 std::string &mError;
|
| /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/ |
| Plural.java | 4 final String quantity, string; field in class:Plural 7 Plural(String quantity, String string) { 9 this.string = string; 23 public String getString() { 24 return string; 28 public String toString() [all...] |
| /external/swiftshader/src/OpenGL/compiler/preprocessor/ |
| DirectiveHandlerBase.h | 18 #include <string> 34 virtual void handleError(const SourceLocation &loc, const std::string &msg) = 0; 38 const std::string &name, 39 const std::string &value, 43 const std::string &name, 44 const std::string &behavior) = 0;
|
| /external/webrtc/webrtc/libjingle/xmpp/ |
| mucroomdiscoverytask.h | 15 #include <string> 30 const std::string&, 31 const std::string&, 32 const std::set<std::string>&, 33 const std::map<std::string, std::string>& > SignalResult;
|
| /external/xmlrpcpp/src/ |
| XmlRpcServerMethod.h | 12 # include <string> 27 XmlRpcServerMethod(std::string const& name, XmlRpcServer* server = 0); 32 std::string& name() { return _name; } 37 //! Returns a help string for the method. 39 virtual std::string help() { return std::string(); } 42 std::string _name;
|