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

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/go/doc/testdata/
benchmark.go 15 var matchBenchmarks = flag.String("test.bench", "", "regular expression to select benchmarks to run")
21 Name string
195 func (r BenchmarkResult) String() string {
217 func RunBenchmarks(matchString func(pat, str string) (bool, error), benchmarks []InternalBenchmark) {
  /prebuilts/go/linux-x86/src/go/types/
api.go 44 Msg string // error message
48 // Error returns an error string formatted as follows:
50 func (err Error) Error() string {
64 Import(path string) (*Package, error)
87 ImportFrom(path, srcDir string, mode ImportMode) (*Package, error)
323 func (init *Initializer) String() string {
333 return buf.String()
347 func (conf *Config) Check(path string, fset *token.FileSet, files []*ast.File, info *Info) (*Package, error) {
  /prebuilts/go/linux-x86/src/image/
geom.go 17 // String returns a string representation of p like "(3,4)".
18 func (p Point) String() string {
89 // String returns a string representation of r like "(3,4)-(6,5)".
90 func (r Rectangle) String() string {
91 return r.Min.String() + "-" + r.Max.String()
    [all...]
ycbcr.go 23 func (s YCbCrSubsampleRatio) String() string {
  /prebuilts/go/linux-x86/src/net/
interface.go 33 Name string // e.g., "en0", "lo0", "eth0.100"
48 var flagNames = []string{
56 func (f Flags) String() string {
153 func InterfaceByName(name string) (*Interface, error) {
181 toIndex map[string]int // interface name to its index
182 toName map[int]string // interface index to its name
186 toIndex: make(map[string]int),
187 toName: make(map[int]string),
204 zc.toIndex = make(map[string]int, len(ift)
    [all...]
tcpsock.go 22 Zone string // IPv6 scoped addressing zone
26 func (a *TCPAddr) Network() string { return "tcp" }
28 func (a *TCPAddr) String() string {
62 func ResolveTCPAddr(net, addr string) (*TCPAddr, error) {
187 func DialTCP(net string, laddr, raddr *TCPAddr) (*TCPConn, error) {
286 func ListenTCP(net string, laddr *TCPAddr) (*TCPListener, error) {
unixsock.go 17 Name string
18 Net string
23 func (a *UnixAddr) Network() string {
27 func (a *UnixAddr) String() string {
46 // The string net gives the network name, "unix", "unixgram" or
48 func ResolveUnixAddr(net, addr string) (*UnixAddr, error) {
193 func DialUnix(net string, laddr, raddr *UnixAddr) (*UnixConn, error) {
211 path string
293 func ListenUnix(net string, laddr *UnixAddr) (*UnixListener, error)
    [all...]
  /prebuilts/go/linux-x86/src/net/internal/socktest/
switch.go 79 func (so Status) String() string {
102 func (st Stat) String() string {
  /prebuilts/go/linux-x86/src/os/
types.go 22 Name() string // base name of the file
44 // used by the String method's formatting.
64 func (m FileMode) String() string {
87 return string(buf[:w])
107 func (fs *fileStat) Name() string { return fs.name }
  /prebuilts/go/linux-x86/src/time/
zoneinfo.go 18 name string
38 name string // abbreviated name, "CET"
83 // String returns a descriptive name for the time zone information,
85 func (l *Location) String() string {
91 func FixedZone(name string, offset int) *Location {
110 func (l *Location) lookup(sec int64) (name string, offset int, isDST bool, start, end int64) {
225 func (l *Location) lookupName(name string, unix int64) (offset int, isDST bool, ok bool) {
275 func LoadLocation(name string) (*Location, error) {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/width/
width.go 81 func LookupString(s string) (p Properties, size int) {
178 // String returns a string with the result of applying t to s.
179 func (t Transformer) String(s string) string {
180 s, _, _ = transform.String(t, s)
  /prebuilts/go/linux-x86/test/
named.go 19 type String string
30 func asString(String) {}
45 func isString(x interface{}) { _ = x.(String) }
56 str String = "hello"
268 asString(String('a'))
269 isString(String('a'))
270 asString(String([]byte(slice)))
271 isString(String([]byte(slice)))
272 asString(String([]byte(nil))
    [all...]
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
AbstractSectionParserTest.java 36 public IItem parse(List<String> lines) {
37 for (String line : lines) {
47 private String mExpected = null;
50 public FakeBlockParser(String expected) {
59 public IItem parse(List<String> input) {
71 final String lineFormat = "howdy, parser %d!";
72 final String linePattern = "I spy %d candles";
75 final List<String> lines = new ArrayList<String>(2*nParsers);
78 String line = String.format(lineFormat, i)
    [all...]
  /art/tools/ahat/src/
DocString.java 24 * A class representing a small string of document content consisting of text,
37 public static DocString text(String str) {
45 public static DocString format(String format, Object... args) {
61 public static DocString image(URI uri, String alt) {
66 * Append literal text to the given doc string.
69 public DocString append(String text) {
75 * Append formatted text to the given doc string.
78 public DocString appendFormat(String format, Object... args) {
79 append(String.format(format, args));
89 * Adorn the given string to indicate it represents something added relativ
93 DocString string = new DocString(); local
113 DocString string = new DocString(); local
    [all...]
  /build/blueprint/parser/
parser.go 36 func (e *ParseError) Error() string {
41 Name string
86 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
94 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
114 p.scanner.Error = func(sc *scanner.Scanner, msg string) {
138 func (p *parser) errorf(format string, args ...interface{}) {
205 func (p *parser) parseAssignment(name string, namePos scanner.Position,
206 assigner string) (assignment *Assignment) {
250 func (p *parser) parseModule(typ string, typPos scanner.Position) *Module {
356 case *String
    [all...]
  /build/blueprint/
scope.go 29 name() string // "foo"
30 fullName(pkgNames map[*packageContext]string) string // "pkg.foo" or "path.to.pkg.foo"
32 String() string
39 name() string // "foo"
40 fullName(pkgNames map[*packageContext]string) string // "pkg.foo" or "path.to.pkg.foo"
42 String() string
    [all...]
  /build/kati/
eval.go 39 Filename string
46 m map[string]*accessedMakefile
51 m: make(map[string]*accessedMakefile),
55 func (ac *accessCache) update(fn string, hash [sha1.Size]byte, st fileState) string {
106 ruleVars map[string]Vars
108 exports map[string]bool
113 filename string
117 func (p srcpos) String() string {
    [all...]
expr.go 39 writeWordString(string)
45 String() string
52 type literal string
54 func (s literal) String() string { return string(s) }
56 io.WriteString(w, string(s))
60 return serializableVar{Type: "literal", V: string(s)}
70 func (t tmpval) String() string { return string(t)
    [all...]
ninja.go 42 func (s nodeState) String() string {
64 Args []string
66 Suffix string
68 GomaDir string
74 exports map[string]bool
79 done map[string]nodeState
87 n.done = make(map[string]nodeState)
90 func getDepfileImpl(ss string) (string, error)
    [all...]
  /build/soong/cmd/soong_zip/
soong_zip.go 58 rootPrefix, relativeRoot, file string
62 dest, src string
67 func (l *fileArgs) String() string {
71 func (l *fileArgs) Set(s string) error {
88 out = flag.String("o", "", "file to write zip file to")
89 manifest = flag.String("m", "", "input jar manifest file name")
91 rootPrefix = flag.String("P", "", "path prefix within the zip at which to place files")
92 relativeRoot = flag.String("C", "", "path to use as relative root of files in next -f or -l argument")
99 cpuProfile = flag.String("cpuprofile", "", "write cpu profile to file"
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
OptionHelper.java 63 static Set<String> getOptionNames(Object object) {
64 Set<String> options = new HashSet<String>();
80 static Set<String> getOptionShortNames(Object object) {
81 Set<String> shortNames = new HashSet<String>();
87 shortNames.add(String.valueOf(option.shortName()));
94 * Retrieve a {@link List} of {@link String} entries of the valid
96 * input {@link String}.
98 public static List<String> getValidCliArgs(String commandString, Object object)
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ServicePermissionsTest.java 40 private static final String TAG = "ServicePermissionsTest";
60 * Test that {@link IBinder#dump(java.io.FileDescriptor, String[])} on all
66 String[] services = null;
68 services = (String[]) Class.forName("android.os.ServiceManager")
82 for (String service : services) {
88 .getDeclaredMethod("getService", String.class).invoke(null, service);
104 serviceBinder.dump(out.getFD(), new String[0]);
106 String msg = e.getMessage();
124 final ArrayList<String> lines = new ArrayList<String>();
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
BackgroundPickers.java 64 label.setText(String.format(res.getString(R.string.bg_picker_label), i+1));
81 String tag = (String) mPickers.get(position).getTag();
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
BackgroundPickers.java 64 label.setText(String.format(res.getString(R.string.bg_picker_label), i+1));
81 String tag = (String) mPickers.get(position).getTag();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 105 canvas.drawText(String.valueOf(mDecodingCount), WIDTH / 2 - 20,

Completed in 1160 milliseconds

<<11121314151617181920>>