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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/
CodeInjector.h 29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
  /libcore/ojluni/src/main/java/java/net/
CacheRequest.java 55 public abstract OutputStream getBody() throws IOException;
CacheResponse.java 63 public abstract InputStream getBody() throws IOException;
  /external/clang/lib/Analysis/
BodyFarm.h 37 Stmt *getBody(const FunctionDecl *D);
40 Stmt *getBody(const ObjCMethodDecl *D);
  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.h 46 Stmt *getBody(const FunctionDecl *D) override;
47 Stmt *getBody(const ObjCMethodDecl *D) override;
ModelConsumer.cpp 38 Bodies.insert(std::make_pair(func->getName(), func->getBody()));
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsDescriptionPresenter.java 24 vh.getBody().setText("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do "
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
BodyPart.java 40 getBody().writeTo(out);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
DetailsDescriptionPresenter.java 28 viewHolder.getBody().setText(movie.getDescription());
  /external/deqp/framework/randomshaders/
rsgFunctionGenerator.cpp 48 statementStack.push_back(&m_function.getBody());
49 m_function.getBody().init(m_state);
79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange.asAccess()));
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfEditTexts.java 73 getBody("zero hello, my name is android"),
74 getBody("one i'm a paranoid android"),
75 getBody("two i robot. huh huh."),
76 getBody("three not the g-phone!"));
93 String getBody(String line) {
  /cts/tests/tests/net/src/android/net/cts/
MailToTest.java 50 assertNull(mailTo_1.getBody());
61 assertNull(mailTo_2.getBody());
73 assertEquals("send current-issue", mailTo_3.getBody());
83 Log.d("Trace", mailTo_4.toString() + " " + mailTo_4.getBody());
86 assertEquals("send current-issue\r\nsend index", mailTo_4.getBody());
102 assertEquals("hello", mailTo_5.getBody());
117 assertEquals("hello", mailTo_6.getBody());
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/presenter/
DetailsDescriptionPresenter.java 32 viewHolder.getBody().setText(movie.getDescription());
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsArticle.java 60 public String getBody() {
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
Action.java 30 public CharSequence getBody();
  /external/volley/src/main/java/com/android/volley/toolbox/
JsonRequest.java 82 * @deprecated Use {@link #getBody()}.
87 return getBody();
96 public byte[] getBody() {
  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 72 if (!FD || !FD->getBody())
91 assert(FD && FD->getBody());
97 Visit(FD->getBody());
228 if (Stmt *Body = I->getBody()) {
236 if (Stmt *Body = DD->getBody()) {

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 91011>>