HomeSort by relevance Sort by last modified time
    Searched defs:String (Results 76 - 100 of 1088) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/nio/file/
FileSystemAlreadyExistsExceptionTest.java 25 public void test_constructor$String() {
26 String message = "message";
ProviderNotFoundExceptionTest.java 25 public void test_constructor$String() {
26 String message = "message";
  /libcore/ojluni/src/main/java/java/lang/
AssertionError.java 36 * has as its detail message the <i>string conversion</i> of
53 * This internal constructor does no processing on its string argument,
57 private AssertionError(String detailMessage) {
63 * from the specified object, which is converted to a string as
74 this(String.valueOf(detailMessage));
82 * a string as defined in section 15.18.1.1 of
88 this(String.valueOf(detailMessage));
94 * string as defined in section 15.18.1.1 of
100 this(String.valueOf(detailMessage));
106 * string as defined in section 15.18.1.1 o
    [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/
IllegalCharsetNameException.java 34 * Unchecked exception thrown when a string that is not a
46 private String charsetName;
54 public IllegalCharsetNameException(String charsetName) {
55 super(String.valueOf(charsetName));
64 public String getCharsetName() {
UnsupportedCharsetException.java 46 private String charsetName;
54 public UnsupportedCharsetException(String charsetName) {
55 super(String.valueOf(charsetName));
64 public String getCharsetName() {
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 60 type Prefix []string
62 // String returns the Prefix as a string (for use as a map key).
63 func (p Prefix) String() string {
68 func (p Prefix) Shift(word string) {
74 // A prefix is a string of prefixLen words joined with spaces.
77 chain map[string][]string
83 return &Chain{make(map[string][]string), prefixLen
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
life.go 90 // String returns the game board as a string.
91 func (l *Life) String() string {
103 return buf.String()
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
redblack32_test.go 12 type sstring string
14 func (s sstring) String() string {
15 return string(s)
19 // all of its invariants and returns a string identifying
21 // then the returned string is empty. The size is also
24 func (t *RBTint32) wellFormed() (s string, i int) {
34 // all of its invariants and returns a string identifying
36 // then the returned string is empty. The size is also
39 func (t *node32) wellFormedSubtree(parent *node32, min, max int32) (s string, i int)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
main.go 16 name string
65 func (c *count) String() string {
69 func (c *count) Set(s string) error {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
field.go 19 func (b BitField) String() string {
48 func (bs BitFields) String() string {
49 ss := make([]string, len(bs))
51 ss[i] = bf.String()
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
cfg.go 72 comment string // for debugging
105 func (b *Block) String() string {
118 func (g *CFG) Format(fset *token.FileSet) string {
134 return buf.String()
137 func formatNode(fset *token.FileSet, n ast.Node) string {
141 return string(bytes.Replace(buf.Bytes(), []byte("\n"), []byte("\n\t"), -1))
  /prebuilts/go/darwin-x86/src/flag/
example_test.go 16 // Example 1: A single string flag called "species" with default value "gopher".
17 var species = flag.String("species", "gopher", "the species we are studying")
22 var gopherType string
36 // String is the method to format the flag's value, part of the flag.Value interface.
37 // The String method's output will be used in diagnostics.
38 func (i *interval) String() string {
43 // Set's argument is a string to be parsed to set the flag.
45 func (i *interval) Set(value string) error {
  /prebuilts/go/darwin-x86/src/go/format/
format_test.go 78 var tests = []string{
120 func String(s string) (string, error) {
125 return string(res), nil
133 res, err := String(src)
139 res, err := String(src)
169 fmt.Println(buf.String())
  /prebuilts/go/darwin-x86/src/html/template/
content_test.go 29 input string
30 want []string
34 []string{
47 []string{
60 []string{
73 []string{
86 []string{
99 []string{
112 []string{
125 []string{
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
ratconv.go 5 // This file implements rat-to-string conversion functions.
34 if _, ok := z.SetString(string(tok)); !ok {
42 // optionally followed by an exponent. The entire string (not just a prefix)
45 func (z *Rat) SetString(s string) (*Rat, bool) {
61 // entire string must have been consumed
199 exp, err = strconv.ParseInt(string(digits), 10, 64)
203 // String returns a string representation of x in the form "a/b" (even if b == 1).
204 func (x *Rat) String() string {
    [all...]
  /prebuilts/go/darwin-x86/src/sort/
example_interface_test.go 13 Name string
17 func (p Person) String() string {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
address_test.go 16 func (af addrFamily) String() string {
33 func (a llAddr) String() string {
45 return string(buf)
50 func (a ipAddr) String() string {
64 return string(s)
67 func (a *Inet4Addr) String() string {
    [all...]
  /prebuilts/go/darwin-x86/test/
const3.go 15 func (t T) String() string { return fmt.Sprintf("T%d", int(t)) }
named1.go 24 func asString(String) {}
26 type String string
61 asString(String(slice)) // ok
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 60 type Prefix []string
62 // String returns the Prefix as a string (for use as a map key).
63 func (p Prefix) String() string {
68 func (p Prefix) Shift(word string) {
74 // A prefix is a string of prefixLen words joined with spaces.
77 chain map[string][]string
83 return &Chain{make(map[string][]string), prefixLen
    [all...]
  /prebuilts/go/linux-x86/doc/play/
life.go 90 // String returns the game board as a string.
91 func (l *Life) String() string {
103 return buf.String()
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
redblack32_test.go 12 type sstring string
14 func (s sstring) String() string {
15 return string(s)
19 // all of its invariants and returns a string identifying
21 // then the returned string is empty. The size is also
24 func (t *RBTint32) wellFormed() (s string, i int) {
34 // all of its invariants and returns a string identifying
36 // then the returned string is empty. The size is also
39 func (t *node32) wellFormedSubtree(parent *node32, min, max int32) (s string, i int)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
main.go 16 name string
65 func (c *count) String() string {
69 func (c *count) Set(s string) error {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
field.go 19 func (b BitField) String() string {
48 func (bs BitFields) String() string {
49 ss := make([]string, len(bs))
51 ss[i] = bf.String()
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
cfg.go 72 comment string // for debugging
105 func (b *Block) String() string {
118 func (g *CFG) Format(fset *token.FileSet) string {
134 return buf.String()
137 func formatNode(fset *token.FileSet, n ast.Node) string {
141 return string(bytes.Replace(buf.Bytes(), []byte("\n"), []byte("\n\t"), -1))

Completed in 1494 milliseconds

1 2 34 5 6 7 8 91011>>