Searched defs:forward (Results 1 - 25 of 124) sorted by relevance

12345

/external/webkit/Source/WebKit/chromium/public/
H A DWebFindOptions.h40 // Whether to search forward or backward within the page.
41 bool forward; member in struct:WebKit::WebFindOptions
50 : forward(true)
H A DWebPlugin.h115 // Tells the plugin to jump forward or backward in the list of find results.
116 virtual void selectFindResult(bool forward) { } argument
/external/javassist/src/main/javassist/tools/rmi/
H A DSample.java27 public Object forward(Object[] args, int identifier) { method in class:Sample
/external/webkit/Source/WebCore/platform/text/qt/
H A DTextBoundariesQt.cpp43 int findNextWordFromIndex(UChar const* buffer, int len, int position, bool forward) argument
48 if (forward) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingListIteratorTest.java28 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
[all...]
H A DForwardingMultimapTest.java29 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
[all...]
H A DForwardingTableTest.java26 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
[all...]
H A DForwardingCollectionTest.java97 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
[all...]
H A DForwardingSetTest.java105 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()
222 Set<String> forward() { method in class:ForwardingSetTest
[all...]
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextBoundariesBrew.cpp37 int findNextWordFromIndex(const UChar* buffer, int len, int position, bool forward) argument
/external/chromium/base/
H A Dlinked_list_unittest.cc35 // tail to head, as determined by |forward|), we get back |node_ids|,
38 int num_nodes, const int* node_ids, bool forward) {
40 for (const LinkNode<Node>* node = (forward ? list.head() : list.tail());
42 node = (forward ? node->next() : node->previous())) {
44 int index_of_id = forward ? i : num_nodes - i - 1;
55 SCOPED_TRACE("Iterating forward (from head to tail)");
37 ExpectListContentsForDirection(const LinkedList<Node>& list, int num_nodes, const int* node_ids, bool forward) argument
/external/guava/guava/src/com/google/common/primitives/
H A DPrimitives.java62 private static void add(Map<Class<?>, Class<?>> forward, argument
64 forward.put(key, value);
/external/guava/guava-tests/test/com/google/common/cache/
H A DForwardingCacheTest.java37 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
[all...]
H A DForwardingLoadingCacheTest.java37 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
[all...]
/external/smack/src/org/jivesoftware/smackx/forward/
H A DForwarded.java17 package org.jivesoftware.smackx.forward;
41 public static final String NAMESPACE = "urn:xmpp:forward:0";
/external/webkit/Source/WebCore/page/
H A DHistory.cpp74 void History::forward() function in class:WebCore::History
79 void History::forward(ScriptExecutionContext* context) function in class:WebCore::History
/external/webkit/Source/WebCore/platform/text/
H A DTextBoundaries.cpp65 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument
69 if (forward) {
/external/clang/test/SemaCXX/
H A Drval-references-examples.cpp47 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/guava/guava/src/com/google/common/collect/
H A DDescendingImmutableSortedMultiset.java25 private final transient ImmutableSortedMultiset<E> forward; field in class:DescendingImmutableSortedMultiset
27 DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) { argument
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
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestPhysicsCharacter.java57 boolean leftStrafe = false, rightStrafe = false, forward = false, backward = false, field in class:TestPhysicsCharacter
115 // set forward camera node that follows the character
147 if (forward) {
184 forward = true;
186 forward = false;
/external/quake/quake/src/WinQuake/
H A Dchase.cpp64 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/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKView.cpp70 void WKViewSetInitialFocus(WKViewRef viewRef, bool forward) argument
72 toImpl(viewRef)->setInitialFocus(forward);
/external/v8/test/mjsunit/harmony/
H A Dproxies-example-membrane.js182 function forward(args) { return obj.apply(this, args) }
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
344 function forward(args) { return wet.apply(this, args) }
345 return asDry(new forward(Array.prototype.map.call(arguments, asWet)));
411 function forward(args) { return dry.apply(this, args) }
412 return asWet(new forward(Array.prototype.map.call(arguments, asDry)));
/external/bluetooth/bluedroid/btif/co/
H A Dbta_pan_co.c169 BOOLEAN forward; local
184 &ext, &forward)))
200 (char*)(p_buf + 1) + p_buf->offset, p_buf->len, ext, forward);
239 UINT16 len, BOOLEAN ext, BOOLEAN forward)
259 BOOLEAN ext, BOOLEAN forward)
237 bta_pan_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data, UINT16 len, BOOLEAN ext, BOOLEAN forward) argument
257 bta_pan_co_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf, BOOLEAN ext, BOOLEAN forward) argument
/external/bluetooth/bluedroid/stack/pan/
H A Dpan_main.c443 BOOLEAN forward; local
507 forward = TRUE;
509 forward = FALSE;
513 (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, forward);
549 BOOLEAN forward = FALSE; local
575 forward = TRUE;
577 forward = FALSE;
597 (*pan_cb.pan_data_buf_ind_cb) (pcb->handle, src, dst, protocol, p_buf, ext, forward);
600 (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, forward);
621 (*pan_cb.pan_data_buf_ind_cb) (pcb->handle, src, dst, protocol, p_buf, ext, forward);
[all...]

Completed in 557 milliseconds

12345