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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-3859424/tools/scan-build/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4053586/tools/scan-build/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4393122/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4479392/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4579689/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4630689/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4639204/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/clang/host/linux-x86/clang-4691093/share/scan-build/
sorttable.js 466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
468 block.call(context, chr, index, string);
483 } else if (typeof object == "string") {
484 // the object is a string
485 resolve = String;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
block.go 108 func (b *Block) String() string {
113 func (b *Block) LongString() string {
114 s := b.Kind.String()
124 s += " " + c.b.String()
224 func (b *Block) Logf(msg string, args ...interface{}) { b.Func.Logf(msg, args...) }
226 func (b *Block) Fatalf(msg string, args ...interface{}) { b.Func.Fatalf(msg, args...) }
sparsetree.go 28 func (s *SparseTreeNode) String() string {
91 // treestructure provides a string description of the dominator
94 func (t SparseTree) treestructure(b *Block) string {
97 func (t SparseTree) treestructure1(b *Block, i int) string {
98 s := "\n" + strings.Repeat("\t", i) + b.String() + "->["
103 s = s + e.b.String()
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
config.go 30 func (mode *BuildMode) Set(s string) error {
106 func (mode *BuildMode) String() string {
135 func (mode *LinkMode) Set(s string) error {
149 func (mode *LinkMode) String() string {
163 func mustLinkExternal(ctxt *Link) (res bool, reason string) {
  /prebuilts/go/darwin-x86/src/cmd/vet/all/
main.go 31 flagPlatforms = flag.String("p", "", "platform(s) to use e.g. linux/amd64,darwin/386")
36 var cmdGoPath string
85 pp = append(pp, parsePlatform(string(line)))
99 func parsePlatform(s string) platform {
107 type whitelist map[string]int
110 func (w whitelist) load(goos string, goarch string) {
125 filenames := []string{
172 os string
173 arch string
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/driver/
types.go 60 func (boolType) String() string { return "Bool" }
66 case string:
73 b, err := strconv.ParseBool(string(s))
122 case reflect.String:
123 i, err := strconv.Atoi(rv.String())
132 // String is a ValueConverter that converts its input to a string.
133 // If the value is already a string or []byte, it's unchanged.
134 // If the value is of another type, conversion to string is don
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
stringer_test.go 27 type TS string
29 func (v TI) String() string { return Sprintf("I: %d", int(v)) }
30 func (v TI8) String() string { return Sprintf("I8: %d", int8(v)) }
31 func (v TI16) String() string { return Sprintf("I16: %d", int16(v)) }
32 func (v TI32) String() string { return Sprintf("I32: %d", int32(v)) }
33 func (v TI64) String() string { return Sprintf("I64: %d", int64(v))
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
scope.go 21 Objects map[string]*Object
27 return &Scope{outer, make(map[string]*Object, n)}
34 func (s *Scope) Lookup(name string) *Object {
51 func (s *Scope) String() string {
61 return buf.String()
78 Name string // declared name
85 func NewObj(kind ObjKind, name string) *Object {
150 var objKindStrings = [...]string{
160 func (kind ObjKind) String() string { return objKindStrings[kind]
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
operand.go 31 var operandModeString = [...]string{
68 // Operand string formats
96 func operandString(x *operand, qf Qualifier) string {
99 var expr string
109 expr = x.val.String()
141 if s := x.val.String(); s != expr {
162 return buf.String()
165 func (x *operand) String() string {
170 func (x *operand) setConst(tok token.Token, lit string) {
    [all...]
scope.go 28 elems map[string]Object // lazily allocated
30 comment string // for debugging only
36 func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
52 func (s *Scope) Names() []string {
53 names := make([]string, len(s.elems))
71 func (s *Scope) Lookup(name string) Object {
85 func (s *Scope) LookupParent(name string, pos token.Pos) (*Scope, Object) {
105 s.elems = make(map[string]Object)
155 // WriteTo writes a string representation of the scope to w,
186 // String returns a string representation of the scope, for debugging
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
cookie.go 21 Name string
22 Value string
24 Path string // optional
25 Domain string // optional
27 RawExpires string // for reading cookies only
35 Raw string
36 Unparsed []string // Raw text of unparsed attribute-value pairs
133 if v := cookie.String(); v != "" {
138 // String returns the serialization of the cookie for use in a Cookie
141 // If c is nil or c.Name is invalid, the empty string is returned
    [all...]
http.go 31 name string
34 func (k *contextKey) String() string { return "net/http context value " + k.name }
36 // Given a string of the form "host", "host:port", or "[ipv6::address]:port",
37 // return true if the string includes a port.
38 func hasPort(s string) bool { return strings.LastIndex(s, ":") > strings.LastIndex(s, "]") }
42 func removeEmptyPort(host string) string {
53 func isASCII(s string) bool {
62 func hexEscapeNonASCII(s string) string
    [all...]
  /prebuilts/go/darwin-x86/src/net/
iprawsock.go 33 Zone string // IPv6 scoped addressing zone
37 func (a *IPAddr) Network() string { return "ip" }
39 func (a *IPAddr) String() string {
77 func ResolveIPAddr(network, address string) (*IPAddr, error) {
211 func DialIP(network string, laddr, raddr *IPAddr) (*IPConn, error) {
226 func ListenIP(network string, laddr *IPAddr) (*IPConn, error) {
udpsock.go 25 Zone string // IPv6 scoped addressing zone
29 func (a *UDPAddr) Network() string { return "udp" }
31 func (a *UDPAddr) String() string {
71 func ResolveUDPAddr(network, address string) (*UDPAddr, error) {
202 func DialUDP(network string, laddr, raddr *UDPAddr) (*UDPConn, error) {
227 func ListenUDP(network string, laddr *UDPAddr) (*UDPConn, error) {
260 func ListenMulticastUDP(network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
  /prebuilts/go/darwin-x86/src/os/
exec_plan9.go 23 func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
42 func (p *Process) writeProcFile(file string, data string) error {
56 if e := p.writeProcFile("note", sig.String()); e != nil {
133 func (p *ProcessState) String() string {
  /prebuilts/go/darwin-x86/src/strconv/
decimal.go 22 func (a *decimal) String() string {
58 return string(buf[0:w])
168 // when the string prefix is "625" through "999", and one fewer digit
169 // if the string prefix is "000" through "624".
175 cutoff string // minus one digit if original < a.
256 func prefixIsLessThan(b []byte, s string) bool {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
route_test.go 16 func (m *RouteMessage) String() string {
20 func (m *InterfaceMessage) String() string {
30 func (m *InterfaceAddrMessage) String() string {
40 func (m *InterfaceMulticastAddrMessage) String() string {
44 func (m *InterfaceAnnounceMessage) String() string {
    [all...]
  /prebuilts/go/darwin-x86/test/
fibo.go 175 func (x nat) String() string {
177 s := new(big.Int).SetBits(x).String()
225 want string
244 got := fibo(test.n, half, opt).String()

Completed in 654 milliseconds

<<11121314151617181920>>