| /art/compiler/linker/ |
| output_stream.h | 21 #include <string> 37 explicit OutputStream(const std::string& location) : location_(location) {} 41 const std::string& GetLocation() const { 58 const std::string location_;
|
| /art/runtime/gc/space/ |
| image_space.h | 44 static bool LoadBootImage(const std::string& image_file_name, 53 std::string* error_msg) 61 std::string* error_msg); 79 const std::string GetImageFilename() const { 85 const std::string GetImageLocation() const { 117 std::string* system_location, 119 std::string* data_location, 126 static void ExtractMultiImageLocations(const std::string& input_image_file_name, 127 const std::string& boot_classpath, 128 std::vector<std::string>* image_filenames) [all...] |
| /art/runtime/ |
| oat_file_test.cc | 19 #include <string> 34 EXPECT_EQ(std::string("/data/app/foo/base.apk"), 38 EXPECT_EQ(std::string("/system/framework/base.apk"), 42 EXPECT_EQ(std::string("/data/app/foo/base.apk"), 46 EXPECT_EQ(std::string("/data/app/foo/base.apk"), 50 EXPECT_EQ(std::string("/data/app/foo/base.apk!classes2.dex"), 54 EXPECT_EQ(std::string("/data/app/foo/base.apk!classes11.dex"), 58 EXPECT_EQ(std::string("base.apk"), 62 EXPECT_EQ(std::string("o/base.apk"), 68 std::string dex_location = GetScratchDir() + "/LoadOat.jar" [all...] |
| /bionic/libc/bionic/ |
| __gnu_basename.cpp | 30 #include <string.h>
|
| mempcpy.cpp | 29 #include <string.h>
|
| /bionic/libc/malloc_debug/ |
| backtrace.h | 34 #include <string> 40 std::string backtrace_string(const uintptr_t* frames, size_t frame_count);
|
| /bionic/libc/upstream-openbsd/lib/libc/string/ |
| stpcpy.c | 32 #include <string.h>
|
| strcmp.c | 35 #include <string.h>
|
| /bionic/tools/versioner/src/ |
| Driver.h | 20 #include <string> 30 std::vector<std::string> headers; 31 std::vector<std::string> dependencies; 40 const std::string& filename);
|
| /bootable/recovery/ |
| rotate_logs.cpp | 20 #include <string.h> 23 #include <string> 31 static const std::string LAST_KMSG_FILTER = "recovery/last_kmsg"; 32 static const std::string LAST_LOG_FILTER = "recovery/last_log"; 37 if (LAST_KMSG_FILTER.find(filename) != std::string::npos || 38 LAST_LOG_FILTER.find(filename) != std::string::npos) { 51 std::string name(filename); 53 std::string sub = name.substr(0, dot); 55 if (LAST_KMSG_FILTER.find(sub) == std::string::npos && 56 LAST_LOG_FILTER.find(sub) == std::string::npos) [all...] |
| /bootable/recovery/tests/component/ |
| sideload_test.cpp | 19 #include <string> 45 const std::vector<std::string> blocks = { 46 std::string(2048, 'a') + std::string(2048, 'b'), 47 std::string(2048, 'c') + std::string(2048, 'd'), 48 std::string(2048, 'e') + std::string(2048, 'f'), 49 std::string(2048, 'g') + std::string(2048, 'h') [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| StringIdsSection.java | 35 * {@code non-null;} map from string constants to {@link 102 * @param string {@code non-null;} the string to intern, as a regular Java 103 * {@code String} 104 * @return {@code non-null;} the interned string 106 public StringIdItem intern(String string) { 107 CstUtf8 utf8 = new CstUtf8(string); 114 * @param string {@code non-null;} the string to intern, as a {@link CstString [all...] |
| /device/generic/goldfish/dhcp/common/ |
| utils.cpp | 19 std::string addrToStr(in_addr_t address) {
|
| /device/generic/goldfish/wifi/ipv6proxy/ |
| interface.h | 19 #include <string> 32 explicit Interface(const std::string& name); 36 const std::string& name() const { return mName; } 48 std::string mName;
|
| /device/google/cuttlefish_common/host/libs/usbip/ |
| vhci_instrument.h | 19 #include <string> 29 VHCIInstrument(int port, const std::string& name); 60 std::string name_; 62 std::string syspath_;
|
| /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
| ITokenSource.cs | 68 string SourceName {
|
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/ |
| ExceptionExtensions.cs | 43 string trace = e.StackTrace ?? string.Empty; 44 foreach ( string line in trace.Split( '\n', '\r' ) ) 46 if ( !string.IsNullOrEmpty( line ) )
|
| /external/apache-harmony/support/src/test/java/tests/support/ |
| Support_Proxy_I2.java | 26 String string(String s) throws Support_Proxy_SubException, Error; method in interface:Support_Proxy_I2
|
| /external/apache-xml/src/main/java/org/apache/xpath/objects/ |
| XMLStringFactoryImpl.java | 41 * @return A never-null static reference to a String factory. 49 * Create a new XMLString from a Java string. 52 * @param string Java String reference, which must be non-null. 54 * @return An XMLString object that wraps the String reference. 56 public XMLString newstr(String string) 58 return new XString(string); 80 * @param string FastStringBuffer reference, which must be non-null. 86 public XMLString newstr(char[] string, int start, int length [all...] |
| /external/clang/include/clang/Tooling/Core/ |
| QualTypeNames.h | 74 std::string getFullyQualifiedName(QualType QT,
|
| /external/clang/test/Index/ |
| complete-exprs.cpp | 3 class string { class 5 string(); 6 string(const char *); 7 string(const char *, int n); 55 // CHECK-CC1: ClassDecl:{TypedText string} (50) 56 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{RightParen )} (50) 57 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{RightParen )} (50) 58 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{Comma , }{Placeholder int n}{RightParen )} (50) 65 // CHECK-CC2: ClassDecl:{TypedText string} (50)
|
| /external/clang/unittests/Tooling/ |
| RefactoringCallbacksTest.cpp | 22 void expectRewritten(const std::string &Code, 23 const std::string &Expected, 40 std::string Code = "void f() { int i = 1; }"; 41 std::string Expected = "void f() { ; }"; 47 std::string Code = "#define A void f() { int i = 1; }\nA"; 48 std::string Expected = "#define A void f() { ; }\nA"; 54 std::string Code = "#define A void f() { int i = 1; }"; 55 std::string Expected = "#define A void f() { int i = 1; }"; 61 std::string Code = "void f() { int i = 1; }"; 62 std::string Expected = "void f() { int i = 2; }" [all...] |
| /external/compiler-rt/test/asan/TestCases/Posix/ |
| glob.cc | 11 #include <string.h> 13 #include <string> 17 std::string path = argv[1]; 18 std::string pattern = path + "/glob_test_root/*a";
|
| strerror_r_test.cc | 6 #include <string.h>
|
| /external/compiler-rt/test/asan/TestCases/ |
| stack-buffer-overflow.cc | 6 #include <string.h>
|