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

123456

/external/chromium_org/third_party/WebKit/public/web/
H A DWebFindOptions.h40 // Whether to search forward or backward within the page.
41 bool forward; member in struct:blink::WebFindOptions
57 : forward(true)
/external/javassist/src/main/javassist/tools/rmi/
H A DSample.java27 public Object forward(Object[] args, int identifier) { method in class:Sample
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_bar_host_interactive_uitest.cc35 bool forward,
43 web_contents, search_str16, forward, case_sensitive, ordinal, NULL);
33 FindInPageWchar(WebContents* web_contents, const wchar_t* search_str, bool forward, bool case_sensitive, int* ordinal) argument
/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...]
/external/chromium_org/android_webview/browser/
H A Dfind_helper.cc46 options.forward = true;
66 void FindHelper::FindNext(bool forward) { argument
71 options.forward = forward;
/external/chromium_org/chrome_elf/
H A Dntdll_cache.cc34 LPCSTR forward,
29 EnumExportsCallback(const base::win::PEImage& image, DWORD ordinal, DWORD hint, LPCSTR name, PVOID function_addr, LPCSTR forward, PVOID cookie) argument
/external/chromium_org/ppapi/proxy/
H A Dppp_find_proxy.cc30 PP_Bool forward) {
33 instance, forward));
92 PP_Bool forward) {
94 CallWhileUnlocked(ppp_find_->SelectFindResult, instance, forward);
29 SelectFindResult(PP_Instance instance, PP_Bool forward) argument
91 OnPluginMsgSelectFindResult(PP_Instance instance, PP_Bool forward) argument
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBoundaries.cpp62 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument
66 if (forward) {
/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/ltrace/
H A Dprototype.h26 #include "forward.h"
73 int forward : 1; member in struct:named_type
/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/chromium_org/base/containers/
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/chromium_org/chrome/browser/ui/ash/
H A Dsession_state_delegate_chromeos_unittest.cc146 const ash::SessionStateDelegate::CycleUser forward = local
149 // Cycle forward.
151 session_state_delegate()->CycleActiveUser(forward);
153 session_state_delegate()->CycleActiveUser(forward);
155 session_state_delegate()->CycleActiveUser(forward);
/external/chromium_org/ppapi/cpp/private/
H A Dfind_private.cc34 void SelectFindResult(PP_Instance instance, PP_Bool forward) { argument
37 static_cast<Find_Private*>(object)->SelectFindResult(PP_ToBool(forward));
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DHistory.cpp97 void History::forward(ExecutionContext* context) function in class:blink::History
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRadioInputType.cpp40 HTMLElement* nextElement(const HTMLElement& element, bool forward) argument
42 return forward ? Traversal<HTMLElement>::next(element) : Traversal<HTMLElement>::previous(element);
92 bool forward = (key == "Down" || key == "Right");
96 for (HTMLElement* htmlElement = nextElement(element(), forward); htmlElement; htmlElement = nextElement(*htmlElement, forward)) {
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEOffset.cpp68 FloatRect FEOffset::mapRect(const FloatRect& rect, bool forward) argument
71 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/chromium_org/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.c167 BOOLEAN forward; local
182 &ext, &forward)))
198 (char*)(p_buf + 1) + p_buf->offset, p_buf->len, ext, forward);
240 UINT16 len, BOOLEAN ext, BOOLEAN forward)
250 UNUSED(forward);
270 BOOLEAN ext, BOOLEAN forward)
279 UNUSED(forward);
238 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
268 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

Completed in 2925 milliseconds

123456