Searched refs:string (Results 1 - 25 of 15505) sorted by relevance

1234567891011>>

/external/v8/tools/clang/translation_unit/test_files/
H A Dtest_relative_sysroot.cc5 #include <string>
/external/google-breakpad/src/common/linux/
H A Dgoogle_crashdump_uploader.h34 #include <string>
45 GoogleCrashdumpUploader(const string& product,
46 const string& version,
47 const string& guid,
48 const string& ptime,
49 const string& ctime,
50 const string& email,
51 const string& comments,
52 const string& minidump_pathname,
53 const string
[all...]
H A Dhttp_upload.h32 // a set of string parameters (key/value pairs), and a file to upload.
38 #include <string>
61 static bool SendRequest(const string &url,
62 const map<string, string> &parameters,
63 const string &upload_file,
64 const string &file_part_name,
65 const string &proxy,
66 const string &proxy_user_pwd,
67 const string
[all...]
/external/libcxx/test/std/strings/basic.string.literals/
H A Dliteral1.fail.cpp13 #include <string>
18 using std::string;
20 string foo = ""s; // should fail w/conversion operator not found
H A Dliteral2.fail.cpp13 #include <string>
18 std::string foo = ""s; // should fail w/conversion operator not found
H A Dliteral3.pass.cpp13 #include <string>
20 string foo = ""s;
/external/parameter-framework/upstream/test/functional-tests-legacy/Util/
H A DACTLogging.py32 def E(self, string):
33 print "\nERROR: %s\n" % (string)
34 return "ERROR: %s" % (string)
36 def F(self, string):
37 print "\nFAIL : %s\n" % (string)
38 return "FAIL : %s" % (string)
40 def I(self, string):
41 print "INFO : %s" % (string)
42 return "INFO : %s" % (string)
44 def D(self, string)
[all...]
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
H A DStringModule.java23 final String string; field in class:StringModule
25 StringModule(String string) { argument
26 this.string = string;
30 String string() { method in class:StringModule
31 return string;
/external/elfutils/lib/
H A Dxstrdup.c1 /* Convenience function for string allocation.
33 #include <string.h>
39 xstrdup (const char *string) argument
41 return strcpy (xmalloc (strlen (string) + 1), string);
/external/clang/test/CodeGenCXX/
H A Dtemplate-dependent-bind-temporary.cpp4 struct string { struct
5 string (const string& );
6 string ();
7 ~string();
10 string operator + (char ch, const string&);
15 string result;
/external/clang/test/Modules/Inputs/using-decl-redecl/
H A Da.h1 struct string {}; struct
3 namespace N { typedef ::string clstring; using ::n; }
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer_unittest_utils.h36 #include <string>
45 string GetHelperBinary();
/external/webrtc/webrtc/test/testsupport/
H A Dfileutils.h25 // const std::string kInputFile = webrtc::test::ProjectRootPath() +
67 #include <string>
90 // If the project root is not found, the string specified by
92 std::string ProjectRootPath();
104 std::string OutputPath();
108 std::string TempFilename(const std::string &dir, const std::string &prefix);
129 std::string ResourcePath(std::string nam
[all...]
/external/parameter-framework/upstream/parameter/include/
H A DParameterMgrFullConnector.h41 #include <string>
56 typedef std::list<std::string> Results;
58 CParameterMgrFullConnector(const std::string &strConfigurationFilePath);
89 bool setTuningMode(bool bOn, std::string &strError);
100 bool setAutoSync(bool bAutoSyncOn, std::string &strError);
102 bool sync(std::string &strError);
105 bool accessParameterValue(const std::string &strPath, std::string &strValue, bool bSet,
106 std::string &strError);
107 bool accessConfigurationValue(const std::string
[all...]
/external/pdfium/testing/utils/
H A Dpath_service.h8 #include <string>
20 static bool EndsWithSeparator(const std::string& path);
23 static bool GetExecutableDir(std::string* path);
28 static bool GetSourceDir(std::string* path);
32 static bool GetTestDataDir(std::string* path);
35 static bool GetTestFilePath(const std::string& file_name, std::string* path);
/external/syslinux/gpxe/src/hci/
H A Deditstring.c22 #include <string.h>
32 static void insert_delete ( struct edit_string *string, size_t delete_len,
35 static void insert_character ( struct edit_string *string,
37 static void delete_character ( struct edit_string *string ) __nonnull;
38 static void backspace ( struct edit_string *string ) __nonnull;
39 static void kill_eol ( struct edit_string *string ) __nonnull;
42 * Insert and/or delete text within an editable string
44 * @v string Editable string
48 static void insert_delete ( struct edit_string *string, size_ argument
84 insert_character( struct edit_string *string, unsigned int character ) argument
137 edit_string( struct edit_string *string, int key ) argument
[all...]
/external/parameter-framework/upstream/utility/
H A DDynamicLibrary.hpp34 #include <string>
45 DynamicLibrary(const std::string &path);
55 SymbolType getSymbol(const std::string &symbol) const
67 void *osGetSymbol(const std::string &symbol) const;
75 static std::string osSanitizePathName(const std::string &path);
85 const std::string _path;
91 static const std::string _osLibraryPrefix;
92 static const std::string _osLibrarySuffix;
/external/google-breakpad/src/common/
H A Dusing_std_string.h35 // global string (::string) exists.
40 // string type is defined (i.e. ::string). Now, let's suppose that ::string
41 // is different that std::string and you'd like to have the option to easily
42 // choose between the two string types. Ideally you'd like to control which
43 // string type is chosen by simply #defining an identifier.
48 // globally replace std::string with string
[all...]
/external/google-breakpad/src/processor/
H A Dpathname_stripper.h37 #include <string>
47 // If path ends in a separator character, returns an empty string.
48 static string File(const string &path);
/external/libchrome/dbus/
H A Dutil.cc9 std::string GetAbsoluteMemberName(const std::string& interface_name,
10 const std::string& member_name) {
/external/libcxx/test/libcxx/extensions/hash/
H A Dspecializations.fail.cpp12 #include <string>
16 assert(__gnu_cxx::hash<std::string>()(std::string()) == 0); // error
/external/llvm/include/llvm/Support/
H A DErrno.h17 #include <string>
22 /// Returns a string representation of the errno value, using whatever
26 std::string StrError();
29 std::string StrError(int errnum);
/external/parameter-framework/upstream/parameter/
H A DMappingData.h32 #include <string>
37 typedef std::map<std::string, std::string>::const_iterator KeyToValueMapConstIterator;
47 bool init(const std::string &rawMapping, std::string &error);
50 bool getValue(const std::string &strkey, const std::string *&pStrValue) const;
55 * @return the formatted std::string
57 std::string asString() const;
60 bool addValue(const std::string
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DErrno.h17 #include <string>
22 /// Returns a string representation of the errno value, using whatever
26 std::string StrError();
29 std::string StrError(int errnum);
/external/webrtc/webrtc/system_wrappers/include/
H A Dfield_trial.h14 #include <string>
21 // std::string webrtc::field_trial::FindFullName(const std::string& trial).
59 // Returns the group name chosen for the named trial, or the empty string
63 std::string FindFullName(const std::string& name);

Completed in 2798 milliseconds

1234567891011>>