| /external/llvm/lib/Support/Unix/ |
| Unix.h | 30 #include <string> 52 /// string and the Unix error number given by \p errnum. If errnum is -1, the 56 /// If the error number can be converted to a string, it will be 59 std::string* ErrMsg, const std::string& prefix, int errnum = -1) {
|
| /external/llvm/lib/Target/XCore/ |
| XCoreSubtarget.h | 24 #include <string> 43 XCoreSubtarget(const Triple &TT, const std::string &CPU, 44 const std::string &FS, const TargetMachine &TM); 46 /// ParseSubtargetFeatures - Parses features string setting specified
|
| /external/llvm/tools/dsymutil/ |
| MachOUtils.h | 12 #include <string> 24 std::string Arch, Path; 35 std::string getArchName(StringRef Arch);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/fork/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_getschedparam/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_trylock/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_once/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_getvalue/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
| testfrmw.c | 24 * void output(char * string, ...) 46 void output(char *string, ...) 61 va_start(ap, string); 62 vprintf(string, ap);
|
| /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
| rdtsc_buckets_shared.h | 49 std::string name; 52 std::string description; 65 std::string name; 136 inline void Serialize(FILE* f, const std::string& string) 138 assert(string.size() <= 256); 140 uint8_t length = (uint8_t)string.size(); 142 fwrite(string.c_str(), string.size(), 1, f); 145 inline void Deserialize(FILE* f, std::string& string [all...] |
| /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/ |
| PatternUtil.java | 27 * Return true if the specified String contains one or more wildcard characters ('?' or '*')
29 * @param string - the String to check
30 * @return true if the String contains wildcards
32 public static boolean containsWildcards(String string) {
33 return string.indexOf("*") != -1 || string.indexOf("?") != -1;
37 * Convert the specified String, optionally containing wildcards (? or *), to a regular expression String
[all...] |
| /external/parameter-framework/upstream/parameter/ |
| BitParameterBlockType.cpp | 36 using std::string; 38 CBitParameterBlockType::CBitParameterBlockType(const string &strName) : base(strName) 42 string CBitParameterBlockType::getKind() const
|
| /external/parameter-framework/upstream/skeleton-subsystem/test/ |
| main.cpp | 37 void info(const std::string &log) override { std::cout << "Info: " << log << std::endl; } 39 void warning(const std::string &log) override { std::cerr << "Warning: " << log << std::endl; } 48 std::string errorMsg;
|
| /external/parameter-framework/upstream/utility/ |
| convert.hpp | 35 #include <string> 118 static inline bool convertTo(const std::string &str, T &result) 125 if (str.find_first_of(std::string("\r\n\t\v ")) != std::string::npos) { 129 /* Check for a '-' in string. If type is unsigned and a - is found, the 132 if (str.find("-") != std::string::npos && !std::numeric_limits<T>::is_signed) { 155 static inline bool convertToVia(const std::string &str, T &result) 181 * Convert a string to a given type. 183 * This template function read the value of the type T in the given string. 185 * and tries to parse the whole string, which means that if some bytes were no [all...] |
| /external/pdfium/core/fpdfapi/edit/ |
| cpdf_creator_embeddertest.cpp | 6 #include <string> 22 const std::string saved_doc_1 = GetString(); 38 const std::string saved_doc_2 = GetString();
|
| /external/perf_data_converter/src/quipper/ |
| file_utils.h | 11 #include "compat/string.h" 17 bool FileToBuffer(const string& filename, std::vector<char>* contents); 22 bool BufferToFile(const string& filename, const CharContainer& contents) { 37 bool FileExists(const string& filename);
|
| perf_recorder.cc | 15 #include "compat/string.h" 33 // a serialized string in |output_string|. Returns true on success. 34 bool ParsePerfDataFileToString(const string& filename, string* output_string) { 53 // a serialized string in |output_string|. Returns true on success. 54 bool ParsePerfStatFileToString(const string& filename, 55 const std::vector<string>& command_line_args, 56 string* output_string) { 64 string command_line; 66 const string& arg = command_line_args[i] [all...] |
| /external/perfetto/include/perfetto/tracing/core/ |
| inode_file_config.h | 32 #include <string> 65 const std::string& mountpoint() const { return mountpoint_; } 66 void set_mountpoint(const std::string& value) { mountpoint_ = value; } 69 const std::vector<std::string>& scan_roots() const { return scan_roots_; } 70 std::string* add_scan_roots() { 76 std::string mountpoint_ = {}; 77 std::vector<std::string> scan_roots_; 81 std::string unknown_fields_; 110 const std::vector<std::string>& scan_mount_points() const { 113 std::string* add_scan_mount_points() [all...] |