HomeSort by relevance Sort by last modified time
    Searched refs:Body (Results 1 - 25 of 592) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/libs/input/tests/
StructLayout_test.cpp 35 CHECK_OFFSET(InputMessage, body, 8);
37 CHECK_OFFSET(InputMessage::Body::Key, seq, 0);
38 CHECK_OFFSET(InputMessage::Body::Key, eventTime, 8);
39 CHECK_OFFSET(InputMessage::Body::Key, deviceId, 16);
40 CHECK_OFFSET(InputMessage::Body::Key, source, 20);
41 CHECK_OFFSET(InputMessage::Body::Key, displayId, 24);
42 CHECK_OFFSET(InputMessage::Body::Key, action, 28);
43 CHECK_OFFSET(InputMessage::Body::Key, flags, 32);
44 CHECK_OFFSET(InputMessage::Body::Key, keyCode, 36);
45 CHECK_OFFSET(InputMessage::Body::Key, scanCode, 40)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceLoopAnalyzer.h 22 Loop(CfgNode *Header, CfgNode *PreHeader, CfgUnorderedSet<SizeT> Body)
23 : Header(Header), PreHeader(PreHeader), Body(Body) {}
26 CfgUnorderedSet<SizeT> Body; // Node IDs
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
AbstractBody.java 24 * Abstract <code>Body</code> implementation providing the parent
30 public abstract class AbstractBody implements Body {
34 * @see org.apache.james.mime4j.message.Body#getParent()
41 * @see org.apache.james.mime4j.message.Body#setParent(org.apache.james.mime4j.message.Entity)
BinaryBody.java 32 public interface BinaryBody extends Body {
36 * body.
TextBody.java 27 * Encapsulates the contents of a <code>text/*</code> entity body.
32 public interface TextBody extends Body {
36 * of this body.
Body.java 26 * Encapsulates the body of an entity (see RFC 2045).
29 * @version $Id: Body.java,v 1.4 2004/10/04 15:36:43 ntherning Exp $
31 public interface Body {
34 * Gets the parent of this body.
41 * Sets the parent of this body.
48 * Writes this body to the given stream in MIME message format.
  /prebuilts/go/darwin-x86/doc/articles/wiki/
part1-noerror.go 14 Body []byte
19 return ioutil.WriteFile(filename, p.Body, 0600)
24 body, _ := ioutil.ReadFile(filename)
25 return &Page{Title: title, Body: body}
29 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample page.")}
32 fmt.Println(string(p2.Body))
part1.go 14 Body []byte
19 return ioutil.WriteFile(filename, p.Body, 0600)
24 body, err := ioutil.ReadFile(filename)
28 return &Page{Title: title, Body: body}, nil
32 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample Page.")}
35 fmt.Println(string(p2.Body))
part2.go 16 Body []byte
21 return ioutil.WriteFile(filename, p.Body, 0600)
26 body, err := ioutil.ReadFile(filename)
30 return &Page{Title: title, Body: body}, nil
36 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
notemplate.go 16 Body []byte
21 return ioutil.WriteFile(filename, p.Body, 0600)
26 body, err := ioutil.ReadFile(filename)
30 return &Page{Title: title, Body: body}, nil
36 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
47 "<textarea name=\"body\">%s</textarea><br>"+
50 p.Title, p.Title, p.Body)
  /prebuilts/go/linux-x86/doc/articles/wiki/
part1-noerror.go 14 Body []byte
19 return ioutil.WriteFile(filename, p.Body, 0600)
24 body, _ := ioutil.ReadFile(filename)
25 return &Page{Title: title, Body: body}
29 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample page.")}
32 fmt.Println(string(p2.Body))
part1.go 14 Body []byte
19 return ioutil.WriteFile(filename, p.Body, 0600)
24 body, err := ioutil.ReadFile(filename)
28 return &Page{Title: title, Body: body}, nil
32 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample Page.")}
35 fmt.Println(string(p2.Body))
part2.go 16 Body []byte
21 return ioutil.WriteFile(filename, p.Body, 0600)
26 body, err := ioutil.ReadFile(filename)
30 return &Page{Title: title, Body: body}, nil
36 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
notemplate.go 16 Body []byte
21 return ioutil.WriteFile(filename, p.Body, 0600)
26 body, err := ioutil.ReadFile(filename)
30 return &Page{Title: title, Body: body}, nil
36 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
47 "<textarea name=\"body\">%s</textarea><br>"+
50 p.Title, p.Title, p.Body)
  /external/clang/unittests/Analysis/
CFGTest.cpp 37 Stmt *Body = Func->getBody();
38 if (!Body)
42 CFG::buildCFG(nullptr, Body, Result.Context, CFG::BuildOptions());
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Body.java 22 public interface Body {
Part.java 28 public Body getBody() throws MessagingException;
48 public void setBody(Body body) throws MessagingException;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Body.java 23 public interface Body {
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
httpresponse.go 13 defer res.Body.Close()
18 defer res.Body.Close() // ERROR "using res before checking for errors"
26 defer res.Body.Close() // ERROR "using res before checking for errors"
38 defer res.Body.Close()
44 defer resp.Body.Close() // ERROR "using resp before checking for errors"
53 defer resp.Body.Close() // ERROR "using resp before checking for errors"
67 defer resp.Body.Close() // ERROR "using resp before checking for errors"
81 defer resp.Body.Close() // ERROR "using resp before checking for errors"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
httpresponse.go 13 defer res.Body.Close()
18 defer res.Body.Close() // ERROR "using res before checking for errors"
26 defer res.Body.Close() // ERROR "using res before checking for errors"
38 defer res.Body.Close()
44 defer resp.Body.Close() // ERROR "using resp before checking for errors"
53 defer resp.Body.Close() // ERROR "using resp before checking for errors"
67 defer resp.Body.Close() // ERROR "using resp before checking for errors"
81 defer resp.Body.Close() // ERROR "using resp before checking for errors"
  /prebuilts/go/darwin-x86/doc/progs/
json1.go 15 Body string
29 expected := []byte(`{"Name":"Alice","Body":"Hello","Time":1294706395881547000}`)
37 b := []byte(`{"Name":"Alice","Body":"Hello","Time":1294706395881547000}`)
47 Body: "Hello",
57 Body: "Hello",
  /prebuilts/go/linux-x86/doc/progs/
json1.go 15 Body string
29 expected := []byte(`{"Name":"Alice","Body":"Hello","Time":1294706395881547000}`)
37 b := []byte(`{"Name":"Alice","Body":"Hello","Time":1294706395881547000}`)
47 Body: "Hello",
57 Body: "Hello",
  /prebuilts/go/darwin-x86/src/go/types/
return.go 55 check.isTerminating(s.Body, "") &&
61 return check.isTerminatingSwitch(s.Body, label)
64 return check.isTerminatingSwitch(s.Body, label)
67 for _, s := range s.Body.List {
69 if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true) {
77 if s.Cond == nil && !hasBreak(s.Body, label, true) {
95 func (check *Checker) isTerminatingSwitch(body *ast.BlockStmt, label string) bool {
97 for _, s := range body.List {
102 if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
return.go 55 check.isTerminating(s.Body, "") &&
61 return check.isTerminatingSwitch(s.Body, label)
64 return check.isTerminatingSwitch(s.Body, label)
67 for _, s := range s.Body.List {
69 if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true) {
77 if s.Cond == nil && !hasBreak(s.Body, label, true) {
95 func (check *Checker) isTerminatingSwitch(body *ast.BlockStmt, label string) bool {
97 for _, s := range body.List {
102 if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
TextBody.java 19 import com.android.voicemail.impl.mail.Body;
27 public class TextBody implements Body {
28 String body; field in class:TextBody
30 public TextBody(String body) {
31 this.body = body;
36 byte[] bytes = body.getBytes("UTF-8");
41 * Get the text of the body in it's unencoded format.
46 return body;
49 /** Returns an InputStream that reads this body's text in UTF-8 format. *
    [all...]

Completed in 262 milliseconds

1 2 3 4 5 6 7 8 91011>>