/external/curl/tests/ |
pathhelp.pm | 34 # All forward '/' and back '\' slashes are treated identically except leading 36 # Forward slashes are simpler processed in Perl, do not require extra escaping 38 # all functions return paths with only forward slashes except 39 # 'sys_native_path' which returns paths with first forward slash for form (5). 122 # Performs path "normalization": all slashes converted to forward 158 # Replace back slashes with forward slashes. 190 # Returned paths contain only single forward slashes (no back and 229 # Replace any back and duplicated slashes with single forward slashes. 232 # Convert leading slash back to forward slash to indicate 240 # Remove leading duplicated forward and back slashes, as they ma [all...] |
/external/libcxx/test/std/utilities/utility/forward/ |
forward1.fail.cpp | 10 // test forward 23 std::forward<A&>(source()); // error
|
forward2.fail.cpp | 10 // test forward 24 std::forward<A&>(ca); // error
|
forward3.fail.cpp | 10 // test forward 23 std::forward<A&>(csource()); // error
|
forward4.fail.cpp | 10 // test forward 24 std::forward<A>(ca); // error
|
forward5.fail.cpp | 10 // test forward 24 std::forward<A>(csource()); // error
|
forward6.fail.cpp | 10 // test forward 21 std::forward(a); // error
|
/external/v8/src/compiler/ |
js-builtin-reducer.h | 13 // Forward declarations. 18 // Forward declarations.
|
js-global-object-specialization.h | 13 // Forward declarations. 20 // Forward declarations.
|
jump-threading.cc | 29 void Forward(RpoNumber to) { 46 TRACE(" fw %d -> %d (forward)\n", from.ToInt(), to.ToInt()); 47 result[from.ToInt()] = to_to; // forward the block. 64 // Iterate over the blocks forward, pushing the blocks onto the stack. 92 // try to forward the jump instruction. 94 // if this block deconstructs the frame, we can't forward it. 95 // TODO(mtrofin): we can still forward if we end up building 116 state.Forward(fw);
|
simplified-operator-reducer.h | 13 // Forward declarations. 18 // Forward declarations.
|
/external/webrtc/webrtc/common_audio/ |
real_fourier_openmax.h | 25 void Forward(const float* src, std::complex<float>* dest) const override; 33 // Basically a forward declare of OMXFFTSpec_R_F32. To get rid of the
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
forward1.fail.cpp | 10 // test forward 23 std::forward<A&>(source()); // error
|
forward2.fail.cpp | 10 // test forward 24 std::forward<A&>(ca); // error
|
forward3.fail.cpp | 10 // test forward 23 std::forward<A&>(csource()); // error
|
forward4.fail.cpp | 10 // test forward 24 std::forward<A>(ca); // error
|
forward5.fail.cpp | 10 // test forward 24 std::forward<A>(csource()); // error
|
forward6.fail.cpp | 10 // test forward 21 std::forward(a); // error
|
/ndk/tests/device/issue35933-lambda/jni/ |
issue35933-lambda.cpp | 1 #include <utility> // for std::forward 21 return native_func(std::forward<ArgTypes>(args)...);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/detail/ |
concept_def.hpp | 21 struct name; /* forward declaration */ \ 36 struct name; /* forward declaration */ \
|
/prebuilts/go/darwin-x86/src/compress/flate/ |
copy.go | 8 // forward from the start, even if the dst and src overlap. 23 // There is some forward overlap. The destination
|
/prebuilts/go/linux-x86/src/compress/flate/ |
copy.go | 8 // forward from the start, even if the dst and src overlap. 23 // There is some forward overlap. The destination
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
adj-jump.s | 58 beq L3 ; Forward branch, adjust -2 60 beq L3 ; Forward branch, adjust -1
|
/external/guava/guava/src/com/google/common/collect/ |
AbstractBiMap.java | 56 AbstractBiMap(Map<K, V> forward, Map<V, K> backward) { 57 setDelegates(forward, backward); 61 private AbstractBiMap(Map<K, V> backward, AbstractBiMap<V, K> forward) { 63 inverse = forward; 88 void setDelegates(Map<K, V> forward, Map<V, K> backward) { 91 checkArgument(forward.isEmpty()); 93 checkArgument(forward != backward); 94 delegate = forward; 220 * iteration order so that it is consistent with the forward map. 354 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) { [all...] |
/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...] |