HomeSort by relevance Sort by last modified time
    Searched refs:forward (Results 151 - 175 of 1441) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/linux-x86/src/runtime/
memmove_nacl_amd64p32.s 18 forward: label
31 JLS forward
  /prebuilts/go/linux-x86/test/fixedbugs/
bug480.go 7 // Gccgo mishandled an import of a forward declared type.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
fwdexp.d 2 #name: forward expression
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb-b-bad.s 5 b . - 0xfffffe @ gas mis-assembles as a forward branch
15 g: b f @ gas mis-assembles as a forward branch
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/
jr-forw.d 3 #name: jr forward
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
variant.h 141 : first_(std::forward<T>(value)) {
146 : first_(std::forward<T>(value)) {
169 new (&first_) Type(std::forward<Args>(args)...);
174 new (&first_) Type(std::forward<Args>(args)...);
187 first_ = std::forward<T>(value);
197 first_ = std::forward<T>(value);
212 return std::forward<Op>(op)(get(TypeTag<Type>{}));
214 return std::forward<Op>(op)(get(TypeTag<EmptyVariant>{}));
219 return std::forward<Op>(op)(get(TypeTag<Type>{}));
221 return std::forward<Op>(op)(get(TypeTag<EmptyVariant>{}))
    [all...]
  /external/skia/src/core/
SkMakeUnique.h 18 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
RegisterScavenging.h 84 /// forward - Move the internal MBB iterator and update register states.
85 void forward();
87 /// forward - Move the internal MBB iterator and update register states until
89 void forward(MachineBasicBlock::iterator I) { function in class:llvm::RegScavenger
90 if (!Tracking && MBB->begin() != I) forward();
91 while (MBBI != I) forward();
  /system/libhidl/transport/include/hidl/
ConcurrentMap.h 35 mMap[std::forward<K>(k)] = std::forward<V>(v);
69 void setLocked(K&& k, V&& v) { mMap[std::forward<K>(k)] = std::forward<V>(v); }
  /device/google/wahoo/wifi_offload/
hidl_return_util.h 32 hidl_cb((obj->*work)(std::forward<Args>(args)...));
42 const auto& ret_pair = (obj->*work)(std::forward<Args>(args)...);
56 const auto& ret_tuple = (obj->*work)(std::forward<Args>(args)...);
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMultisetTest.java 215 forward = new ForwardingSortedMultiset<String>() {
224 forward().comparator();
229 forward().firstEntry();
234 forward().lastEntry();
239 forward().pollFirstEntry();
244 forward().pollLastEntry();
249 forward().descendingMultiset();
254 forward().headMultiset("abcd", CLOSED);
259 forward().subMultiset("abcd", CLOSED, "dcba", OPEN);
264 forward().tailMultiset("last", OPEN)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
83 return asyncImpl(std::forward<Function>(F));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_pair.h 59 #include <bits/move.h> // for std::move / std::forward, and std::swap
81 // Forward declarations.
134 : first(std::forward<_U1>(__x)), second(__y) { }
139 : first(__x), second(std::forward<_U2>(__y)) { }
145 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }
151 : first(std::forward<_U1>(__p.first)),
152 second(std::forward<_U2>(__p.second)) { }
170 first = std::forward<first_type>(__p.first);
171 second = std::forward<second_type>(__p.second)
    [all...]

Completed in 793 milliseconds

1 2 3 4 5 67 8 91011>>