/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_algo.h | 372 * overloaded for forward iterators. 457 * overloaded for forward iterators. 544 // find_end for forward iterators. [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_algo.h | 372 * overloaded for forward iterators. 457 * overloaded for forward iterators. 544 // find_end for forward iterators. [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
stl_algo.h | 372 * overloaded for forward iterators. 457 * overloaded for forward iterators. 544 // find_end for forward iterators. [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
forward_list.h | 106 _M_value(std::forward<_Args>(__args)...) { } 252 * @brief Forward list iterator equality comparison. 261 * @brief Forward list iterator inequality comparison. 349 std::forward<_Args>(__args)...); 778 * with Tp(std::forward<Args>(args)...) at the front of the list 787 std::forward<_Args>(__args)...); } 834 * with T(std::forward<Args>(args)...) after the specified 843 std::forward<_Args>(__args)...)); } [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
forward_list.h | 99 _M_value(std::forward<_Args>(__args)...) { } 245 * @brief Forward list iterator equality comparison. 254 * @brief Forward list iterator inequality comparison. 346 std::forward<_Args>(__args)...); 776 * with Tp(std::forward<Args>(args)...) at the front of the list 785 std::forward<_Args>(__args)...); } 832 * with T(std::forward<Args>(args)...) after the specified 841 std::forward<_Args>(__args)...)); } [all...] |
vector.tcc | 98 std::forward<_Args>(__args)...); 102 _M_emplace_back_aux(std::forward<_Args>(__args)...); 300 std::forward<_Args>(__args)...); 304 _M_insert_aux(__position, std::forward<_Args>(__args)...); 335 *__position = _Tp(std::forward<_Args>(__args)...); 354 std::forward<_Args>(__args)...); 407 std::forward<_Args>(__args)...);
|
/external/openssh/ |
mux.c | 116 int fid; /* forward id */ 516 format_forward(u_int ftype, Forward *fwd) 522 xasprintf(&ret, "local forward %.200s:%d -> %.200s:%d", 529 xasprintf(&ret, "dynamic forward %.200s:%d -> *", 535 xasprintf(&ret, "remote forward %.200s:%d -> %.200s:%d", 542 fatal("%s: unknown forward type %u", __func__, ftype); 558 compare_forward(Forward *a, Forward *b) 577 Forward *rfwd; 598 logit("Allocated port %u for mux remote forward" [all...] |
/ndk/sources/cxx-stl/llvm-libc++/include/ |
map | [all...] |
unordered_map | [all...] |
/external/dropbear/libtomcrypt/demos/ |
tv_gen.c | 274 /* forward the key */ 328 /* forward the key */ 383 /* forward the key */ 443 /* forward the key */ 506 /* forward the key */ 570 /* forward the key */ 627 /* forward the key */
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableList.java | 456 final UnmodifiableListIterator<E> forward = local 460 return forward.hasPrevious(); 464 return forward.hasNext(); 468 return forward.previous(); 472 return reverseIndex(forward.previousIndex()); 476 return forward.next(); 480 return reverseIndex(forward.nextIndex());
|
/external/icu4c/common/ |
rbbidata.cpp | 252 printTable("Forward State Transition Table", fForwardTable); 254 printTable("Safe Forward State Transition Table", fSafeFwdTable); 379 // Forward state table. 390 // Reverse state table. Same layout as forward table, above. 401 // Safe Forward state table. Same layout as forward table, above. 412 // Safe Reverse state table. Same layout as forward table, above.
|
/external/quake/quake/src/WinQuake/ |
r_part.cpp | 131 vec3_t forward; local 156 forward[0] = cp*cy; 157 forward[1] = cp*sy; 158 forward[2] = -sp; 171 p->org[0] = ent->origin[0] + r_avertexnormals[i][0]*dist + forward[0]*beamlength; 172 p->org[1] = ent->origin[1] + r_avertexnormals[i][1]*dist + forward[1]*beamlength; 173 p->org[2] = ent->origin[2] + r_avertexnormals[i][2]*dist + forward[2]*beamlength;
|
view.cpp | 79 vec3_t forward, right, up; variable 87 AngleVectors (angles, forward, right, up); 321 vec3_t forward, right, up; 370 AngleVectors (ent->angles, forward, right, up); 375 side = DotProduct (from, forward); 868 vec3_t forward, right, up; local 912 AngleVectors (angles, forward, right, up); 915 r_refdef.vieworg[i] += scr_ofsx.value*forward[i] 932 view->origin[i] += forward[i]*bob*0.4;
|
cl_tent.cpp | 333 float forward;
local 366 forward = sqrt (dist[0]*dist[0] + dist[1]*dist[1]);
367 pitch = (int) (atan2(dist[2], forward) * 180 / M_PI);
|
/frameworks/compile/libbcc/gdb_plugin/ |
android-commands.py | 288 # adb forward <source> <destination> 289 def forward(self, source, destination): member in class:ADB 290 self._call_adb(*["forward", source, destination]) 472 # Forward port for java debugger to Dalvik 473 self.adb.forward("tcp:" + str(self.jdwp_port), \ 500 # Forward port for gdbserver 501 self.adb.forward("tcp:" + str(self.gdbserver_port), \
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/ |
EasOutboxService.java | 74 // This is a smart forward email 163 // If we're using smart reply/forward, we need info about the original message 280 // First, we need to get the id of the reply/forward message 302 // a smart reply or a smart forward 342 boolean forward = (flags & Message.FLAG_TYPE_FORWARD) != 0; 348 if (includeQuotedText && (reply || forward)) { 356 if (forward && ((mAccount.mFlags & Account.FLAGS_SUPPORTS_SMART_FORWARD) == 0)) {
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
GalleryThumbnailView.java | 233 * @param forward If true, align left edge to x and increase position. 237 private int makeAndAddColumn(int startPosition, int x, boolean forward) { 242 i += forward ? 1 : -1, addViews++) { 257 int position = startPosition + (forward ? i : -i); 261 addViewInLayout(child, forward ? -1 : 0, child.getLayoutParams()); 263 addView(child, forward ? -1 : 0); 272 int childLeft = forward ? x : x - columnWidth;
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
tab_contents_drag_win.cc | 51 // Forward the message from the UI thread to the drag-and-drop thread. 57 // If the left button is up, we do not need to forward the message any 153 // Install a hook procedure to monitor the messages so that we can forward
|
/external/eigen/Eigen/src/SparseCore/ |
TriangularSolver.h | 26 // forward substitution, row-major 98 // forward substitution, col-major 206 // forward substitution, col-major
|
/external/quake/quake/src/QW/client/ |
cl_tent.c | 358 float forward; local 390 forward = sqrt (dist[0]*dist[0] + dist[1]*dist[1]); 391 pitch = (int) (atan2(dist[2], forward) * 180 / M_PI);
|
/external/skia/src/gpu/ |
GrReducedClip.cpp | 144 // TODO: track these per saved clip so that we can consider them on the forward pass. 240 // able to take advantage of this in the forward pass. If the xor-ed shape 284 // Replace will always terminate our walk. We will either begin the forward walk
|
/external/srec/tools/grxmlcompile/ |
netw_dump.cpp | 46 // Creates file of forward graph - the {name}.G.txt file 185 // Creates file of forward graph - the {name}.G.txt file 268 // Creates file of forward graph - the {name}.G.txt file
|
/frameworks/base/core/java/android/net/ |
LinkCapabilities.java | 65 * Desired minimum forward link (download) bandwidth for the 72 * Required minimum forward link (download) bandwidth, in 79 * Available forward link (download) bandwidth for the socket.
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
FileRotatorTest.java | 122 // push time a few minutes forward; shouldn't rotate file 129 // push time forward enough to rotate file; should still have same data 337 // walk forward through time, ensuring that files are cleaned properly
|