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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedMultiset.java 25 private final transient ImmutableSortedMultiset<E> forward; field in class:DescendingImmutableSortedMultiset
27 DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) {
28 super(forward.reverseComparator());
29 this.forward = forward;
34 return forward.count(element);
39 return forward.lastEntry();
44 return forward.firstEntry();
49 return forward.size();
54 return forward.createDescendingElementSet()
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFindOptions.h 40 // Whether to search forward or backward within the page.
41 bool forward; member in struct:WebKit::WebFindOptions
50 : forward(true)
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingMultimapTest.java 29 Multimap<String, Boolean> forward; field in class:ForwardingMultimapTest
41 forward = new ForwardingMultimap<String, Boolean>() {
49 forward.size();
54 forward.isEmpty();
59 forward.containsKey("asdf");
64 forward.containsValue("asdf");
69 forward.containsEntry("asdf", false);
74 forward.put("asdf", true);
79 forward.remove("asdf", false);
84 forward.remove("asfd", Collections.<Boolean>emptyList())
    [all...]
ForwardingTableTest.java 26 private Table<String, Integer, Boolean> forward; field in class:ForwardingTableTest
38 forward = new ForwardingTable<String, Integer, Boolean>() {
46 forward.hashCode();
51 forward.cellSet();
56 forward.clear();
61 forward.column(1);
66 forward.columnKeySet();
71 forward.columnMap();
76 forward.contains("blah", 1);
81 forward.containsColumn(1)
    [all...]
ForwardingListIteratorTest.java 28 private ForwardingListIterator<String> forward; field in class:ForwardingListIteratorTest
39 forward = new ForwardingListIterator<String>() {
47 forward.add("asdf");
52 forward.hasNext();
57 forward.hasPrevious();
62 forward.next();
67 forward.nextIndex();
72 forward.previous();
77 forward.previousIndex();
82 forward.remove()
    [all...]
ForwardingObjectTest.java 32 ForwardingObject forward = new ForwardingObject() { local
37 assertTrue(forward.equals(forward));
42 ForwardingObject forward = new ForwardingObject() { local
47 assertEquals(forward.equals(delegate), delegate.equals(forward));
ForwardingQueueTest.java 106 private Queue<String> forward; field in class:ForwardingQueueTest
138 forward = new ForwardingQueue<String>() {
146 forward.add("asdf");
151 forward.addAll(Collections.singleton("asdf"));
156 forward.clear();
161 forward.contains("asdf");
166 forward.containsAll(Collections.singleton("asdf"));
171 forward.element();
176 forward.iterator();
181 forward.isEmpty()
    [all...]
ForwardingListTest.java 138 private List<String> forward; field in class:ForwardingListTest
175 forward = new ForwardingList<String>() {
183 forward.add("asdf");
188 forward.add(0, "asdf");
193 forward.addAll(EMPTY_LIST);
198 forward.addAll(0, Collections.singleton("asdf"));
203 forward.clear();
208 forward.contains(null);
213 forward.containsAll(EMPTY_LIST);
218 forward.get(0)
    [all...]
ForwardingCollectionTest.java 97 private Collection<String> forward; field in class:ForwardingCollectionTest
138 forward = new ForwardingCollection<String>() {
146 forward.add("asdf");
151 forward.addAll(EMPTY_COLLECTION);
156 forward.clear();
161 forward.contains(null);
166 forward.containsAll(EMPTY_COLLECTION);
171 forward.isEmpty();
176 forward.iterator();
181 forward.remove(null)
    [all...]
ForwardingSetTest.java 105 Set<String> forward; field in class:ForwardingSetTest
145 forward = new ForwardingSet<String>() {
153 forward().add("asdf");
158 forward().addAll(EMPTY_LIST);
163 forward().clear();
168 forward().contains(null);
173 forward().containsAll(EMPTY_LIST);
178 forward().isEmpty();
183 forward().iterator();
188 forward().remove(null)
222 Set<String> forward() { method in class:ForwardingSetTest
    [all...]
ForwardingMultisetTest.java 139 protected Multiset<String> forward; field in class:ForwardingMultisetTest
276 forward = new ForwardingMultiset<String>() {
284 forward().add("asdf");
289 forward().addAll(EMPTY_COLLECTION);
294 forward().clear();
299 forward().contains(null);
304 forward().containsAll(EMPTY_COLLECTION);
309 forward().isEmpty();
314 forward().iterator();
319 forward().remove(null)
398 protected Multiset<String> forward() { method in class:ForwardingMultisetTest
    [all...]
ForwardingMapTest.java 115 Map<String, Boolean> forward;
165 forward = new ForwardingMap<String, Boolean>() {
173 forward().size();
178 forward().isEmpty();
183 forward().remove(null);
188 forward().clear();
193 forward().containsKey("asdf");
198 forward().containsValue(false);
203 forward().get("asdf");
208 forward().put("key", false)
    [all...]
ForwardingListMultimapTest.java 36 forward = new ForwardingListMultimap<String, Boolean>() {
ForwardingSetMultimapTest.java 36 forward = new ForwardingSetMultimap<String, Boolean>() {
ForwardingSortedSetMultimapTest.java 36 forward = new ForwardingSortedSetMultimap<String, Boolean>() {
ForwardingSortedSetTest.java 137 forward = new ForwardingSortedSet<String>() {
145 forward().comparator();
150 forward().first();
155 forward().headSet("asdf");
160 forward().last();
165 forward().subSet("first", "last");
170 forward().tailSet("last");
174 @Override SortedSet<String> forward() { method in class:ForwardingSortedSetTest
175 return (SortedSet<String>) super.forward();
  /external/guava/guava-tests/test/com/google/common/cache/
ForwardingLoadingCacheTest.java 37 private LoadingCache<String, Boolean> forward; field in class:ForwardingLoadingCacheTest
49 forward = new ForwardingLoadingCache<String, Boolean>() {
59 assertSame(Boolean.TRUE, forward.get("key"));
66 assertSame(Boolean.TRUE, forward.getUnchecked("key"));
73 assertEquals(ImmutableMap.of("key", Boolean.TRUE), forward.getAll(ImmutableList.of("key")));
80 assertSame(Boolean.TRUE, forward.apply("key"));
87 forward.invalidate("key");
94 forward.refresh("key");
101 forward.invalidateAll();
108 forward.size()
    [all...]
ForwardingCacheTest.java 37 private Cache<String, Boolean> forward; field in class:ForwardingCacheTest
49 forward = new ForwardingCache<String, Boolean>() {
59 assertSame(Boolean.TRUE, forward.getIfPresent("key"));
68 forward.getAllPresent(ImmutableList.of("key")));
75 forward.invalidate("key");
82 forward.invalidateAll(ImmutableList.of("key"));
89 forward.invalidateAll();
96 forward.size();
103 assertNull(forward.stats());
110 assertNull(forward.asMap())
    [all...]
  /external/quake/quake/src/WinQuake/
chase.cpp 64 vec3_t forward, up, right; local
69 AngleVectors (cl.viewangles, forward, right, up);
74 - forward[i]*chase_back.value
79 VectorMA (r_refdef.vieworg, 4096, forward, dest);
84 dist = DotProduct (stop, forward);
  /gdk/samples/quake/jni/
chase.cpp 64 vec3_t forward, up, right; local
69 AngleVectors (cl.viewangles, forward, right, up);
74 - forward[i]*chase_back.value
79 VectorMA (r_refdef.vieworg, 4096, forward, dest);
84 dist = DotProduct (stop, forward);
  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 27 public Object forward(Object[] args, int identifier) { method in class:Sample
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 47 template <class T> T&& forward(typename remove_reference<T>::type& t) { function
51 template <class T> T&& forward(typename remove_reference<T>::type&& t) { function
57 return unique_ptr<T>(new T(forward<Args>(args)...));
100 void forward(F f, Args &&...args) { function in namespace:perfect_forwarding
107 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(),
109 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(), // expected-note{{in instantiation of function template specialization 'perfect_forwarding::forward<perfect_forwarding::F0, perfect_forwarding::A &, const perfect_forwarding::A &, perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A>' requested here}}
  /external/webkit/Source/WebCore/platform/text/mac/
TextBoundaries.mm 45 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward)
50 int result = [attr nextWordFromIndex:position forward:forward];
  /external/dnsmasq/src/
forward.c 185 /* don't forward simple names, make exception for NS queries and empty name. */
206 HEADER *header, size_t plen, time_t now, struct frec *forward)
218 forward = NULL;
219 else if (forward || (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, crc)))
222 domain = forward->sentto->domain;
223 forward->sentto->failed_queries++;
226 forward->forwardall = 1;
229 type = forward->sentto->flags & SERV_TYPE;
230 if (!(start = forward->sentto->next)
465 struct frec *forward; local
    [all...]
  /external/clang/test/Parser/
recovery.c 68 struct forward; // expected-note{{forward declaration of 'struct forward'}}
69 void x(struct forward* x) {switch(x->a) {}} // expected-error {{incomplete definition of type}}

Completed in 443 milliseconds

1 2 3 4 5 6 7 8 91011>>