HomeSort by relevance Sort by last modified time
    Searched defs:String (Results 26 - 50 of 1402) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/link/internal/sym/
library.go 8 Objref string
9 Srcref string
10 File string
11 Pkg string
12 Shlib string
13 Hash string
14 ImportStrings []string
20 func (l Library) String() string {
symkind_string.go 11 func (i SymKind) String() string {
  /prebuilts/go/linux-x86/src/debug/dwarf/
class_string.go 11 func (i Class) String() string {
  /prebuilts/go/linux-x86/src/fmt/
example_test.go 13 Name string
17 // String makes Animal satisfy the Stringer interface.
18 func (a Animal) String() string {
  /prebuilts/go/linux-x86/src/math/big/
accuracy_string.go 11 func (i Accuracy) String() string {
roundingmode_string.go 11 func (i RoundingMode) String() string {
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
50 #include <string>
57 // String - an abstract class holding static string utilities.
58 class GTEST_API_ String {
62 // Clones a 0-terminated C string, allocating memory using new. The
64 // delete[]. Returns the cloned string, or NULL if the input is
67 // This is different from strdup() in string.h, which allocate
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-string.h 34 // This header file declares the String class and functions used internally by
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
50 #include <string>
57 // String - an abstract class holding static string utilities.
58 class GTEST_API_ String {
62 // Clones a 0-terminated C string, allocating memory using new. The
64 // delete[]. Returns the cloned string, or NULL if the input is
67 // This is different from strdup() in string.h, which allocate
    [all...]
  /dalvik/dx/tests/089-dex-define-object/java/lang/
String.class 
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Guid/
VersionInfoHobGuid.h 29 CHAR16 String[1];
  /libcore/luni/src/test/java/libcore/java/nio/file/
AccessDeniedExceptionTest.java 28 public void test_constructor$String() {
37 public void test_constructor$String$String$String() {
45 String hex = "ACED0005737200236A6176612E6E696F2E66696C652E41636365737344656E6965644578"
82 String hex1 = SerializationTester.serializeHex(exception).toString();
FileAlreadyExistsExceptionTest.java 27 public void test_constructor$String() {
36 public void test_constructor$String$String$String() {
45 String hex = "ACED0005737200286A6176612E6E696F2E66696C652E46696C65416C726561647945786973747"
83 String hex1 = SerializationTester.serializeHex(exception).toString();
InvalidPathExceptionTest.java 25 public void test_Constructor$String$String$Int() {
26 String reason = "reason";
27 String input = "input";
78 public void test_Constructor$String$String() {
79 String reason = "reason";
80 String input = "input";
NoSuchFileExceptionTest.java 27 public void test_constructor$String() {
36 public void test_constructor$String$String$String() {
44 String hex = "ACED0005737200216A6176612E6E696F2E66696C652E4E6F5375636846696C654578636570746"
81 String hex1 = SerializationTester.serializeHex(exception).toString();
NotLinkExceptionTest.java 27 public void test_constructor$String() {
36 public void test_constructor$String$String$String() {
44 String hex = "ACED00057372001E6A6176612E6E696F2E66696C652E4E6F744C696E6B457863657074696F6EF"
79 String hex1 = SerializationTester.serializeHex(exception).toString();
  /prebuilts/go/darwin-x86/src/cmd/go/internal/base/
flag.go 16 type StringsFlag []string
18 func (v *StringsFlag) Set(s string) error {
22 *v = []string{}
27 func (v *StringsFlag) String() string {
  /prebuilts/go/darwin-x86/src/debug/pe/
string.go 13 // cstring converts ASCII byte sequence b to string.
15 func cstring(b []byte) string {
19 return string(b[:i])
22 // StringTable is a COFF string table.
26 // COFF string table is located right after COFF symbol table.
33 return nil, fmt.Errorf("fail to seek to string table: %v", err)
38 return nil, fmt.Errorf("fail to read string table length: %v", err)
40 // string table length includes itself
48 return nil, fmt.Errorf("fail to read string table: %v", err)
55 // String extracts string from COFF string table st at offset start
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
predeclared.go 13 func (e error) Error() string {
20 func (b bool) String() string {
  /prebuilts/go/darwin-x86/src/net/http/cookiejar/
dummy_publicsuffix_test.go 13 func (dummypsl) PublicSuffix(domain string) string {
17 func (dummypsl) String() string {
  /prebuilts/go/darwin-x86/src/net/
mac.go 12 func (a HardwareAddr) String() string {
24 return string(buf)
38 func ParseMAC(s string) (hw HardwareAddr, err error) {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
link_test.go 14 func (ll *Link) String() string {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17318.go 24 func (e ent) String() string {
25 return fmt.Sprintf("%d", int(e)) // ERROR "ent.String ... argument does not escape$" "int\(e\) escapes to heap$"
  /prebuilts/go/linux-x86/src/cmd/go/internal/base/
flag.go 16 type StringsFlag []string
18 func (v *StringsFlag) Set(s string) error {
22 *v = []string{}
27 func (v *StringsFlag) String() string {
  /prebuilts/go/linux-x86/src/debug/pe/
string.go 13 // cstring converts ASCII byte sequence b to string.
15 func cstring(b []byte) string {
19 return string(b[:i])
22 // StringTable is a COFF string table.
26 // COFF string table is located right after COFF symbol table.
33 return nil, fmt.Errorf("fail to seek to string table: %v", err)
38 return nil, fmt.Errorf("fail to read string table length: %v", err)
40 // string table length includes itself
48 return nil, fmt.Errorf("fail to read string table: %v", err)
55 // String extracts string from COFF string table st at offset start
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/testdata/
predeclared.go 13 func (e error) Error() string {
20 func (b bool) String() string {

Completed in 1640 milliseconds

12 3 4 5 6 7 8 91011>>