HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 401 - 425 of 4710) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
iosfwd 32 // ISO C++ 14882: 27.2 Forward declarations
41 #include <bits/stringfwd.h> // For string forward declarations.
65 * Because properly forward-declaring these classes can be difficult, you
68 * well as the typedefs. Trying to forward-declare the typedefs
thread 113 _Impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
136 std::forward<_Callable>(__f),
137 std::forward<_Args>(__args)...)));
194 return make_shared<_Impl<_Callable>>(std::forward<_Callable>(__f));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
iosfwd 32 // ISO C++ 14882: 27.2 Forward declarations
41 #include <bits/stringfwd.h> // For string forward declarations.
65 * Because properly forward-declaring these classes can be difficult, you
68 * well as the typedefs. Trying to forward-declare the typedefs
thread 111 _Impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
134 std::forward<_Callable>(__f),
135 std::forward<_Args>(__args)...)));
191 return std::make_shared<_Impl<_Callable>>(std::forward<_Callable>(__f));
functional 235 return __f(std::forward<_Args>(__args)...);
248 return mem_fn(__f)(std::forward<_Args>(__args)...);
261 return __f(std::forward<_Args>(__args)...);
468 return __invoke(get(), std::forward<_Args>(__args)...);
534 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
539 { return ((*__ptr).*__pmf)(std::forward<_ArgTypes>(__args)...); }
549 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...); }
554 { return (__object->*__pmf)(std::forward<_ArgTypes>(__args)...); }
562 std::forward<_ArgTypes>(__args)...);
581 { return (__object.*__pmf)(std::forward<_ArgTypes>(__args)...);
    [all...]
scoped_allocator 150 : _M_inner(std::forward<_Args>(__args)...) { }
201 __o_traits::construct(__outer, __p, std::forward<_Args>(__args)...);
215 std::forward<_Args>(__args)...);
225 __o_traits::construct(__outer, __p, std::forward<_Args>(__args)...,
280 : _OuterAlloc(std::forward<_Outer2>(__outer)),
338 _M_construct(__use_tag, __p, std::forward<_Args>(__args)...);
  /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.
167 bool isForwardingAliasSet() const { return Forward; }
183 /// Define an iterator for alias sets... this is just a forward iterator.
224 AliasSet() : PtrList(0), PtrListEnd(&PtrList), Forward(0), RefCount(0),
239 if (!Forward) return this;
241 AliasSet *Dest = Forward->getForwardedTarget(AST);
242 if (Dest != Forward) {
244 Forward->dropRef(AST);
245 Forward = Dest
    [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_pan_co.c 169 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)
  /ndk/sources/cxx-stl/llvm-libc++/include/
scoped_allocator 199 : outer_allocator_type(_VSTD::forward<_OuterA2>(__outerAlloc)),
229 : outer_allocator_type(_VSTD::forward<_OuterA2>(__o)),
279 : outer_allocator_type(_VSTD::forward<_OuterA2>(__outerAlloc)) {}
419 : base(_VSTD::forward<_OuterA2>(__outerAlloc), __innerAllocs...) {}
476 __p, _VSTD::forward<_Args>(__args)...);}
499 : base(_VSTD::forward<_OuterA2>(__o), __i) {}
510 _VSTD::forward<_Args>(__args)...
525 _VSTD::forward<_Args>(__args)...
538 _VSTD::forward<_Args>(__args)...,
  /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;
223 if (I->Forward || !I->aliasesPointer(Ptr, Size, TBAAInfo, AA)) continue;
241 if (!I->Forward && I->aliasesPointer(Ptr, Size, TBAAInfo, AA))
251 if (I->Forward || !I->aliasesUnknownInst(Inst, AA))
256 else if (!I->Forward) // Otherwise, we must merge the sets
    [all...]
  /bionic/libc/kernel/common/linux/
qic117.h 89 #define QIC117_COMMANDS { {NULL, 0x00, 0x00, mode, 0, discretional}, {"soft reset", 0x00, 0x00, motion, 1, required}, {"report next bit", 0x00, 0x00, report, 0, required}, {"pause", 0x36, 0x24, motion, 1, required}, {"micro step pause", 0x36, 0x24, motion, 1, required}, {"alternate command timeout", 0x00, 0x00, mode, 0, required}, {"report drive status", 0x00, 0x00, report, 0, required}, {"report error code", 0x01, 0x01, report, 0, required}, {"report drive configuration",0x00, 0x00, report, 0, required}, {"report rom version", 0x00, 0x00, report, 0, required}, {"logical forward", 0x37, 0x25, motion, 0, required}, {"physical reverse", 0x17, 0x05, motion, 0, required}, {"physical forward", 0x17, 0x05, motion, 0, required}, {"seek head to track", 0x37, 0x25, motion, 0, required}, {"seek load point", 0x17, 0x05, motion, 1, required}, {"enter format mode", 0x1f, 0x05, mode, 0, required}, {"write reference burst", 0x1f, 0x05, motion, 1, required}, {"enter verify mode", 0x37, 0x25, mode, 0, required}, {"stop tape", 0x00, 0x00, motion, 1, required}, {"reserved (19)", 0x00, 0x00, unused, 0, discretional}, {"reserved (20)", 0x00, 0x00, unused, 0, discretional}, {"micro step head up", 0x02, 0x00, motion, 0, required}, {"micro step head down", 0x02, 0x00, motion, 0, required}, {"soft select", 0x00, 0x00, mode, 0, discretional}, {"soft deselect", 0x00, 0x00, mode, 0, discretional}, {"skip segments reverse", 0x36, 0x24, motion, 1, required}, {"skip segments forward", 0x36, 0x24, motion, 1, required}, {"select rate or format", 0x03, 0x01, mode, 0, required }, {"enter diag mode 1", 0x00, 0x00, mode, 0, discretional}, {"enter diag mode 2", 0x00, 0x00, mode, 0, discretional}, {"enter primary mode", 0x00, 0x00, mode, 0, required}, {"vendor unique (31)", 0x00, 0x00, unused, 0, discretional}, {"report vendor id", 0x00, 0x00, report, 0, required}, {"report tape status", 0x04, 0x04, report, 0, ccs1}, {"skip extended reverse", 0x36, 0x24, motion, 1, ccs1}, {"skip extended forward", 0x36, 0x24, motion, 1, ccs1}, {"calibrate tape length", 0x17, 0x05, motion, 1, ccs2}, {"report format segments", 0x17, 0x05, report, 0, ccs2}, {"set format segments", 0x17, 0x05, mode, 0, ccs2}, {"reserved (39)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (40)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (41)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (42)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (43)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (44)", 0x00, 0x00, unused, 0, discretional}, {"vendor unique (45)", 0x00, 0x00, unused, 0, discretional}, {"phantom select", 0x00, 0x00, mode, 0, discretional}, {"phantom deselect", 0x00, 0x00, mode, 0, discretional}, }
132 #define QIC117_ERRORS { { "No error", 0, }, { "Command Received while Drive Not Ready", 0, }, { "Cartridge Not Present or Removed", 1, }, { "Motor Speed Error (not within 1%)", 1, }, { "Motor Speed Fault (jammed, or gross speed error", 1, }, { "Cartridge Write Protected", 1, }, { "Undefined or Reserved Command Code", 1, }, { "Illegal Track Address Specified for Seek", 1, }, { "Illegal Command in Report Subcontext", 0, }, { "Illegal Entry into a Diagnostic Mode", 1, }, { "Broken Tape Detected (based on hole sensor)", 1, }, { "Warning--Read Gain Setting Error", 1, }, { "Command Received While Error Status Pending (obs)", 1, }, { "Command Received While New Cartridge Pending", 1, }, { "Command Illegal or Undefined in Primary Mode", 1, }, { "Command Illegal or Undefined in Format Mode", 1, }, { "Command Illegal or Undefined in Verify Mode", 1, }, { "Logical Forward Not at Logical BOT or no Format Segments in Format Mode", 1, }, { "Logical EOT Before All Segments generated", 1, }, { "Command Illegal When Cartridge Not Referenced", 1, }, { "Self-Diagnostic Failed (cannot be cleared)", 1, }, { "Warning EEPROM Not Initialized, Defaults Set", 1, }, { "EEPROM Corrupted or Hardware Failure", 1, }, { "Motion Time-out Error", 1, }, { "Data Segment Too Long -- Logical Forward or Pause", 1, }, { "Transmit Overrun (obs)", 1, }, { "Power On Reset Occurred", 0, }, { "Software Reset Occurred", 0, }, { "Diagnostic Mode 1 Error", 1, }, { "Diagnostic Mode 2 Error", 1, }, { "Command Received During Non-Interruptible Process", 1, }, { "Rate or Format Selection Error", 1, }, { "Illegal Command While in High Speed Mode", 1, }, { "Illegal Seek Segment Value", 1, }, { "Invalid Media", 1, }, { "Head Positioning Failure", 1, }, { "Write Reference Burst Failure", 1, }, { "Prom Code Missing", 1, }, { "Invalid Format", 1, }, { "EOT/BOT System Failure", 1, }, { "Prom A Checksum Error", 1, }, { "Drive Wakeup Reset Occurred", 1, }, { "Prom B Checksum Error", 1, }, { "Illegal Entry into Format Mode", 1, }, }
  /external/aac/libAACdec/src/
rvlc_info.h 94 #define FWD 0 /* bitstream decoding direction forward (RVL coded part) */
126 SHORT length_of_rvlc_sf_fwd; /* length_of_rvlc_sf used for forward decoding */
140 USHORT bitstreamIndexRvlFwd; /* base address of RVL-coded-scalefactor data (ESC 2) for forward decoding */
149 UCHAR numDecodedEscapeWordsFwd; /* when decoding RVL-codes forward */
167 SHORT conceal_max; /* is set at forward decoding */
169 SHORT conceal_max_esc; /* is set at forward decoding */
  /external/ceres-solver/include/ceres/
numeric_diff_cost_function.h 55 // twice as many function evaluations than forward difference. Consider using
56 // central differences begin with, and only after that works, trying forward
75 FORWARD
148 // 1. Store residuals for the forward part.
167 // Forward difference only; reuse existing residuals evaluation.
226 // Nothing to do; just forward.
  /external/ceres-solver/internal/ceres/
numeric_diff_cost_function_test.cc 76 // Try both central and forward difference.
88 FORWARD,
117 const double kEps = c == 0 ? /* central */ 3e-9 : /* forward */ 2e-5;
157 // Try both central and forward difference.
169 FORWARD,
223 const double kEps = c == 0 ? /* central */ 3e-9 : /* forward */ 2e-5;
  /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...]
  /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/Parser/
cxx-class.cpp 98 struct A::B; // expected-error {{forward declaration of struct cannot have a nested name specifier}}
99 union N::C; // expected-error {{forward declaration of union cannot have a nested name specifier}}
  /external/clang/test/Sema/
init.c 88 // expected-note {{forward declaration of 'struct s1'}}
90 // expected-note{{forward declaration of 'struct s3'}}
  /external/clang/test/SemaCXX/
exceptions.cpp 3 struct A; // expected-note 4 {{forward declaration of 'A'}}
143 struct E; // expected-note {{forward declaration}}
  /external/clang/test/SemaObjC/
category-1.m 34 @class MyClass2; // expected-note{{forward declaration of class here}}
99 @class I; // expected-note {{forward declaration}}

Completed in 791 milliseconds

<<11121314151617181920>>