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

1 2 3 4 5

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue55/
Blog.java 22 private List<Post> posts = new LinkedList<Post>();
27 public void addPost(Post p) {
32 public List<Post> getPosts() {
Post.java 18 class Post {
25 protected Post() {
30 public Post(String title, String text) {
YamlFieldAccessCollectionTest.java 84 Post post1 = new Post("Test", "Dummy");
85 Post post2 = new Post("Highly", "Creative");
93 Collection<Post> posts = blog.getPosts();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
Post.java 18 class Post implements Comparable<Post> {
23 protected Post() {
26 public Post(String title, String text) {
40 public int compareTo(Post o) {
46 if (obj instanceof Post) {
60 return "Post " + title + " " + text;
Blog.java 25 private Set<Post> posts = new TreeSet<Post>();
37 public void addPost(Post p) {
41 public Set<Post> getPosts() {
53 public void setPosts(Set<Post> posts) {
SetAsSequenceTest.java 34 blog.addPost(new Post("Title1", "text 1"));
35 blog.addPost(new Post("Title2", "text text 2"));
60 for (Post post : blog.getPosts()) {
61 assertEquals(Post.class, post.getClass());
75 Set<Post> posts = blog.getPosts();
77 assertTrue(posts.contains(new Post("Test", "Dummy")));
78 assertTrue(posts.contains(new Post("Highly", "Creative")));
DumpSetAsSequenceExampleTest.java 75 blog.addPost(new Post("Title1", "text 1"));
76 blog.addPost(new Post("Title2", "text text 2"));
94 for (Post post : blog.getPosts()) {
95 assertEquals(Post.class, post.getClass());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue97/
Blog.java 21 private SortedSet<Post> posts;
23 public void addPost(Post p) {
27 public SortedSet<Post> getPosts() {
Post.java 18 public class Post implements Comparable<Post> {
31 public int compareTo(Post o) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeVisitorAction.cs 37 * pre() before visiting children and execute post() after visiting children.
57 object Post(object t);
80 public object Post(object t)
TreeVisitor.cs 35 /** <summary>Do a depth first walk of a tree, applying pre() and post() actions as we go.</summary> */
55 * applying post action to this node.
72 t = action.Post(t);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 39 * pre() before visiting children and execute post() after visiting children.
59 object Post( object t );
82 public object Post( object t )
TreeVisitor.cs 37 /** <summary>Do a depth first walk of a tree, applying pre() and post() actions as we go.</summary> */
57 * applying post action to this node.
74 t = action.Post( t );
  /external/skia/tests/
MessageBusTest.cpp 24 SkMessageBus<TestMessage>::Post(m1);
25 SkMessageBus<TestMessage>::Post(m2);
36 SkMessageBus<TestMessage>::Post(m3);
  /external/webrtc/talk/session/media/
mediamonitor.cc 57 worker_thread_->Post(this, MSG_MONITOR_START);
61 worker_thread_->Post(this, MSG_MONITOR_STOP);
104 monitor_thread_->Post(this, MSG_MONITOR_SIGNAL);
audiomonitor.cc 55 voice_channel_->worker_thread()->Post(this, MSG_MONITOR_START);
59 voice_channel_->worker_thread()->Post(this, MSG_MONITOR_STOP);
109 monitoring_thread_->Post(this, MSG_MONITOR_SIGNAL);
  /external/webrtc/webrtc/p2p/client/
socketmonitor.cc 42 worker_thread_->Post(this, MSG_MONITOR_START);
46 worker_thread_->Post(this, MSG_MONITOR_STOP);
92 monitoring_thread_->Post(this, MSG_MONITOR_SIGNAL);
  /external/webrtc/webrtc/base/
nullsocketserver_unittest.cc 33 thread.Post(this, 0);
networkmonitor.cc 34 thread_->Post(this, UPDATE_NETWORKS_MESSAGE);
worker.cc 66 worker_thread_->Post(this, MSG_HAVEWORK);
  /system/core/libmemunreachable/
Semaphore.h 40 void Post() {
  /external/webrtc/webrtc/libjingle/xmpp/
xmppthread.cc 45 Post(this, MSG_LOGIN, new LoginData(xcs));
49 Post(this, MSG_DISCONNECT);
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 57 /** Test example of a POST request in the deprecated style. */
81 * Test example of a POST request in the new style. In the new style, it is possible
82 * to have a POST with no body.
84 public static class Post extends Base {
85 public Post() {
86 super(Method.POST, TEST_URL, null);
90 /** Test example of a POST request in the new style with a body. */
91 public static class PostWithBody extends Post {
  /external/skia/src/animator/
SkDisplayPost.h 23 DECLARE_MEMBER_INFO(Post);
  /external/v8/src/base/platform/
condition-variable.h 72 void Post(Event* event, bool result);

Completed in 331 milliseconds

1 2 3 4 5