HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 276 - 300 of 3630) sorted by null

<<11121314151617181920>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
DeviceBridge.java 153 "Adb rejected forward command for device %1$s: %2$s",
157 "Failed to create forward for device %1$s: %2$s",
175 "Adb rejected remove-forward command for device %1$s: %2$s",
179 "Failed to remove forward for device %1$s: %2$s",
  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 52 void forward();
133 * Check QWebHistory::forward() method
135 void tst_QWebHistory::forward() function in class:tst_QWebHistory
145 hist->forward();
149 hist->forward();
362 QTest::newRow("forward") << "history.forward();";
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 85 if (AS->Forward) {
111 AliasSet *Forward; // Forwarding pointer.
168 bool isForwardingAliasSet() const { return Forward; }
184 /// Define an iterator for alias sets... this is just a forward iterator.
225 AliasSet() : PtrList(0), PtrListEnd(&PtrList), Forward(0), RefCount(0),
240 if (!Forward) return this;
242 AliasSet *Dest = Forward->getForwardedTarget(AST);
243 if (Dest != Forward) {
245 Forward->dropRef(AST);
246 Forward = Dest
    [all...]
  /external/bluetooth/glib/tests/
date-test.c 325 TEST("Forward days then backward days returns us to current day",
334 TEST("Forward days then backward days returns us to current month",
343 TEST("Forward days then backward days returns us to current year",
360 TEST("Forward months then backward months returns us to current month",
369 TEST("Forward months then backward months returns us to current year",
383 TEST("Forward months then backward months returns us to current day",
408 TEST("Forward years then backward years returns us to current month",
417 TEST("Forward years then backward years returns us to current year",
428 TEST("Forward years then backward years returns us to current day",
testgdate.c 332 TEST("Forward days then backward days returns us to current day",
341 TEST("Forward days then backward days returns us to current month",
350 TEST("Forward days then backward days returns us to current year",
367 TEST("Forward months then backward months returns us to current month",
376 TEST("Forward months then backward months returns us to current year",
390 TEST("Forward months then backward months returns us to current day",
415 TEST("Forward years then backward years returns us to current month",
424 TEST("Forward years then backward years returns us to current year",
435 TEST("Forward years then backward years returns us to current day",
  /external/clang/www/
libstdc++4.4-clang0x.patch 28 - forward(typename std::identity<_Tp>::type&& __t)
29 + forward(typename std::remove_reference<_Tp>::type& __t)
38 + forward(typename std::remove_reference<_Tp>::type&& __t)
42 + "Can't instantiate this forward() with an"
283 + : first(std::forward<_U1>(__x)), second(__y) { }
288 + : first(__x), second(std::forward<_U2>(__y)) { }
294 - : first(std::forward<_U1>(__x)),
295 - second(std::forward<_U2>(__y)) { }
296 + : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) {
    [all...]
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 32 assert(!AS.Forward && "Alias set is already forwarding!");
33 assert(!Forward && "This set is a forwarding set!!");
67 AS.Forward = this; // Forward across AS now...
83 if (AliasSet *Fwd = AS->Forward) {
85 AS->Forward = 0;
221 if (I->Forward || !I->aliasesPointer(Ptr, Size, TBAAInfo, AA)) continue;
239 if (!I->Forward && I->aliasesPointer(Ptr, Size, TBAAInfo, AA))
249 if (I->Forward || !I->aliasesUnknownInst(Inst, AA))
254 else if (!I->Forward) // Otherwise, we must merge the sets
    [all...]
  /external/kernel-headers/original/linux/
qic117.h 138 /*10*/ {"logical forward", 0x37, 0x25, motion, 0, required},\
140 /*12*/ {"physical forward", 0x17, 0x05, motion, 0, required},\
154 /*26*/ {"skip segments forward", 0x36, 0x24, motion, 1, required},\
163 /*35*/ {"skip extended forward", 0x36, 0x24, motion, 1, ccs1},\
261 /*17*/ { "Logical Forward Not at Logical BOT or no Format Segments in Format Mode", 1, },\
268 /*24*/ { "Data Segment Too Long -- Logical Forward or Pause", 1, },\
  /external/icu4c/i18n/
tridpars.cpp 40 static const int32_t FORWARD = UTRANS_FORWARD;
146 if (dir == FORWARD) {
147 SingleID* b = specsToID(specsB, FORWARD);
148 single = specsToID(specsA, FORWARD);
163 SingleID* a = specsToID(specsA, FORWARD);
164 single = specsToID(specsB, FORWARD);
181 if (dir == FORWARD) {
182 single = specsToID(specsA, FORWARD);
224 SingleID* single = specsToID(specs, FORWARD);
245 * added to the canonID, either at the end, if dir is FORWARD, o
    [all...]
quant.h 58 * than offset for a forward direction match, less than offset for
61 * forward direction or text.charAt(limit+1) in the backward
  /external/chromium/net/base/
network_delegate.h 24 // of net/base here, because we have a net_base library. Forward declarations
35 // functions mostly forward to the private virtuals. They also add some sanity
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p3.cpp 12 struct X0; // expected-note {{forward declaration}}
28 struct InnerClass; // expected-note{{forward declaration}}
  /external/clang/test/Sema/
init.c 79 // expected-note {{forward declaration of 'struct s1'}}
81 // expected-note{{forward declaration of 'struct s3'}}
  /external/fdlibm/
w_jn.c 25 * for n<x, forward recursion us used starting
35 * that forward recursion is used for all
  /external/proguard/src/proguard/io/
DataEntryRewriter.java 125 // Replace dots by forward slashes.
138 // Replace forward slashes by dots.
  /external/qemu/android/utils/
dll.c 38 /* This function is used to revert all forward slashes (/) in a path
40 * LoadLibrary() and AddDllDirectory() do not support forward slashes.
  /external/stlport/stlport/stl/
_iosfwd.h 8 // This file provides forward declarations of the most important I/O
84 // Forward declaration of class locale, and of the most important facets.
  /external/webkit/Source/WebCore/page/
History.cpp 74 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/
TextBoundaries.cpp 65 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward)
69 if (forward) {
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.cpp 223 into those that can be visited by navigating \e back and \e forward using the
224 back() and forward() functions. The current item can be obtained by calling
322 Returns the list of items in the forward history list.
352 Returns true if we have an item to go forward to; otherwise returns false.
365 \sa forward(), goToItem()
377 corresponding page; i.e., goes forward one history item.
381 void QWebHistory::forward() function in class:QWebHistory
392 \sa back(), forward()
  /external/wpa_supplicant/wpa_gui/
scanresults.ui 160 <forward>class WpaGui;</forward>
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
scanresults.ui 160 <forward>class WpaGui;</forward>
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
scanresults.ui 160 <forward>class WpaGui;</forward>
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListEmptyViewTest.java 72 // Navigate forward
115 // Navigate forward
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iosfwd.h 8 // This file provides forward declarations of the most important I/O
84 // Forward declaration of class locale, and of the most important facets.

Completed in 519 milliseconds

<<11121314151617181920>>