/external/libdivsufsort/CMakeModules/ |
CheckFunctionKeywords.cmake | 4 set(${_result} "") 10 if(${have_flag} AND NOT ${_result}) 11 set(${_result} "${flag}") 13 endif(${have_flag} AND NOT ${_result})
|
AppendCompilerFlags.cmake | 4 macro(append_c_compiler_flags _flags _name _result) 16 set(${_result} "${${_result}} ${flag}") 22 macro(append_cxx_compiler_flags _flags _name _result) 34 set(${_result} "${${_result}} ${flag}")
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_function_adaptors.h | 64 template<class _Result, class _Tp> 65 class _Mem_fun0_ptr : public unary_function<_Tp*, _Result> { 67 typedef _Result (_Tp::*__fun_type) (); 71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); } 77 template<class _Result, class _Tp, class _Arg> 78 class _Mem_fun1_ptr : public binary_function<_Tp*,_Arg,_Result> { 80 typedef _Result (_Tp::*__fun_type) (_Arg); 84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } 90 template<class _Result, class _Tp> 91 class _Const_mem_fun0_ptr : public unary_function<const _Tp*,_Result> { [all...] |
_function.h | 340 template <class _Result> 342 typedef _Result result_type; 351 template <class _Result> 352 struct constant_void_fun : public _STLP_PRIV _Constant_void_fun<_Result> { 353 constant_void_fun(const _Result& __v) 354 : _STLP_PRIV _Constant_void_fun<_Result>(__v) {} 357 template <class _Result, _STLP_DFL_TMPL_PARAM( _Argument , _Result) > 358 struct constant_unary_fun : public _STLP_PRIV _Constant_unary_fun<_Result, _Argument> { 359 constant_unary_fun(const _Result& __v [all...] |
_function_base.h | 39 template <class _Arg, class _Result> 42 typedef _Result result_type; 52 template <class _Arg1, class _Arg2, class _Result> 56 typedef _Result result_type; 182 template <class _Result, class _Argument> 185 typedef _Result result_type; 192 template <class _Result, class _Arg1, class _Arg2> 196 typedef _Result result_type; 197 _Result _M_val; 199 _Constant_binary_fun(const _Result& __v) : _M_val(__v) { [all...] |
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
_function_adaptors.h | 64 template<class _Result, class _Tp> 65 class _Mem_fun0_ptr : public unary_function<_Tp*, _Result> { 67 typedef _Result (_Tp::*__fun_type) (); 71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); } 77 template<class _Result, class _Tp, class _Arg> 78 class _Mem_fun1_ptr : public binary_function<_Tp*,_Arg,_Result> { 80 typedef _Result (_Tp::*__fun_type) (_Arg); 84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } 90 template<class _Result, class _Tp> 91 class _Const_mem_fun0_ptr : public unary_function<const _Tp*,_Result> { [all...] |
_function.h | 340 template <class _Result> 342 typedef _Result result_type; 351 template <class _Result> 352 struct constant_void_fun : public _STLP_PRIV _Constant_void_fun<_Result> { 353 constant_void_fun(const _Result& __v) 354 : _STLP_PRIV _Constant_void_fun<_Result>(__v) {} 357 template <class _Result, _STLP_DFL_TMPL_PARAM( _Argument , _Result) > 358 struct constant_unary_fun : public _STLP_PRIV _Constant_unary_fun<_Result, _Argument> { 359 constant_unary_fun(const _Result& __v [all...] |
_function_base.h | 39 template <class _Arg, class _Result> 42 typedef _Result result_type; 52 template <class _Arg1, class _Arg2, class _Result> 56 typedef _Result result_type; 182 template <class _Result, class _Argument> 185 typedef _Result result_type; 192 template <class _Result, class _Arg1, class _Arg2> 196 typedef _Result result_type; 197 _Result _M_val; 199 _Constant_binary_fun(const _Result& __v) : _M_val(__v) { [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
xfilter.h | 38 #define ETH_COMPARE_NETWORK_ADDRESSES(_A, _B, _Result) \ 42 *(_Result) = 1; \ 46 *(_Result) = (UINT)-1; \ 50 *(_Result) = 1; \ 54 *(_Result) = (UINT)-1; \ 58 *(_Result) = 0; \ 62 #define ETH_COMPARE_NETWORK_ADDRESSES_EQ(_A,_B, _Result) \ 67 *(_Result) = 0; \ 71 *(_Result) = 1; \ 97 #define FDDI_COMPARE_NETWORK_ADDRESSES(_A, _B, _Length, _Result) \ [all...] |
/external/vboot_reference/tests/tpm_lite/ |
tlcl_tests.h | 20 uint32_t _result = (tpm_command); \ 22 if (_result != _exp) { \ 24 " (expecting 0x%x)\n", __LINE__, _result, _exp); \ 25 return _result; \
|
/external/dbus/cmake/modules/ |
CheckPrototypeExists.cmake | 17 MACRO (CHECK_PROTOTYPE_EXISTS _SYMBOL _HEADER _RESULT) 33 CHECK_CXX_SOURCE_COMPILES("${_CHECK_PROTO_EXISTS_SOURCE_CODE}" ${_RESULT}) 34 ENDMACRO (CHECK_PROTOTYPE_EXISTS _SYMBOL _HEADER _RESULT)
|
CheckStructMember.cmake | 18 MACRO (CHECK_STRUCT_MEMBER _STRUCT _MEMBER _HEADER _RESULT) 33 CHECK_CXX_SOURCE_COMPILES("${_CHECK_STRUCT_MEMBER_SOURCE_CODE}" ${_RESULT})
|
/system/tools/aidl/tests/ |
test_data_example_interface.cpp | 133 boolean _result = this.isEnabled(); 135 reply.writeInt(((_result)?(1):(0))); 141 int _result = this.getState(); 143 reply.writeInt(_result); 149 java.lang.String _result = this.getAddress(); 151 reply.writeString(_result); 157 android.foo.ExampleParcelable[] _result = this.getParcelables(); 159 reply.writeTypedArray(_result, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE); 169 boolean _result = this.setScanMode(_arg0, _arg1); 171 reply.writeInt(((_result)?(1):(0))) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/ |
functional | 245 template <class _Result> 248 typedef _Result result_type; 258 template <class _Result, class _Argument> 262 typedef _Result result_type; 272 template <class _Result, class _Arg1, class _Arg2> 277 typedef _Result result_type; 278 _Result _M_val; 280 _Constant_binary_fun(const _Result& __v) : _M_val(__v) {} 302 template <class _Result> 304 : public _Constant_void_fun<_Result> [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/ |
par_loop.h | 65 typename _Result> 69 _Result __base, _Result& __output, 75 _Result *__thread_results; 86 __thread_results = static_cast<_Result*> 87 (::operator new(__num_threads * sizeof(_Result))); 94 _Result* __reduct; 102 __reduct = new _Result(__f(__o, __begin + __start)); 114 ::new(&__thread_results[__iam]) _Result(*__reduct); 123 __thread_results[__i].~_Result(); [all...] |
omp_loop.h | 65 typename _Result> 69 _Result __base, 70 _Result& __output, 80 _Result *__thread_results; 87 __thread_results = new _Result[__num_threads]; 90 __thread_results[__i] = _Result();
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/ |
functional | 245 template <class _Result> 248 typedef _Result result_type; 258 template <class _Result, class _Argument> 262 typedef _Result result_type; 272 template <class _Result, class _Arg1, class _Arg2> 277 typedef _Result result_type; 278 _Result _M_val; 280 _Constant_binary_fun(const _Result& __v) : _M_val(__v) {} 302 template <class _Result> 304 : public _Constant_void_fun<_Result> [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/ |
par_loop.h | 65 typename _Result> 69 _Result __base, _Result& __output, 75 _Result *__thread_results; 86 __thread_results = static_cast<_Result*> 87 (::operator new(__num_threads * sizeof(_Result))); 94 _Result* __reduct; 102 __reduct = new _Result(__f(__o, __begin + __start)); 114 ::new(&__thread_results[__iam]) _Result(*__reduct); 123 __thread_results[__i].~_Result(); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/ |
functional | 245 template <class _Result> 248 typedef _Result result_type; 258 template <class _Result, class _Argument> 262 typedef _Result result_type; 272 template <class _Result, class _Arg1, class _Arg2> 277 typedef _Result result_type; 278 _Result _M_val; 280 _Constant_binary_fun(const _Result& __v) : _M_val(__v) {} 302 template <class _Result> 304 : public _Constant_void_fun<_Result> [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/ |
par_loop.h | 65 typename _Result> 69 _Result __base, _Result& __output, 75 _Result *__thread_results; 86 __thread_results = static_cast<_Result*> 87 (::operator new(__num_threads * sizeof(_Result))); 94 _Result* __reduct; 102 __reduct = new _Result(__f(__o, __begin + __start)); 114 ::new(&__thread_results[__iam]) _Result(*__reduct); 123 __thread_results[__i].~_Result(); [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
functional | 245 template <class _Result> 248 typedef _Result result_type; 258 template <class _Result, class _Argument> 262 typedef _Result result_type; 272 template <class _Result, class _Arg1, class _Arg2> 277 typedef _Result result_type; 278 _Result _M_val; 280 _Constant_binary_fun(const _Result& __v) : _M_val(__v) {} 302 template <class _Result> 304 : public _Constant_void_fun<_Result> [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/ |
par_loop.h | 65 typename _Result> 69 _Result __base, _Result& __output, 75 _Result *__thread_results; 86 __thread_results = static_cast<_Result*> 87 (::operator new(__num_threads * sizeof(_Result))); 94 _Result* __reduct; 102 __reduct = new _Result(__f(__o, __begin + __start)); 114 ::new(&__thread_results[__iam]) _Result(*__reduct); 123 __thread_results[__i].~_Result(); [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/ |
test_response.py | 35 Item = obj._result.Item 66 list(map(int, obj._result.Item)), 70 list(map(lambda x: list(map(int, x.Foo)), obj._result.Extra)), 122 item = obj._result.Item 139 [e.Value for e in obj._result.Item], 158 [e.Value for e in obj._result.Item], 161 self.assertTrue(obj._result.Item[1].Error == 'Four') 163 obj._result.Item[2].Error 173 self.assertSequenceEqual(obj._result.Item, []) 182 self.assertSequenceEqual(obj._result.Item, [] [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/mws/ |
test.py | 72 self.assertEqual(len(response._result.Self), 3) 73 categoryids = [x.ProductCategoryId for x in response._result.Self] 81 products = response._result.Products 90 attributes = response._result[0].Product.AttributeSets.ItemAttributes 100 self.assertEqual(len(response._result), 2) 101 for result in response._result: 111 listings = response._result[0].Product.LowestOfferListings 119 self.assertTrue(hasattr(response._result, 'InventorySupplyList'))
|
/frameworks/base/core/java/android/os/storage/ |
IMountService.java | 95 boolean _result; 100 _result = 0 != _reply.readInt(); 105 return _result; 134 boolean _result; 139 _result = 0 != _reply.readInt(); 144 return _result; 154 int _result; local 160 _result = _reply.readInt(); 165 return _result; 197 int _result; local 217 int[] _result; local 237 String _result; local 259 int _result; local 286 int _result; local 309 int _result; local 331 int _result; local 355 int _result; local 397 int _result; local 418 String _result; local 438 String[] _result; local 566 String _result; local 602 int _result; local 618 int _result; local 635 int _result; local 653 int _result; local 672 int _result; local 689 int _result; local 705 String _result; local 749 String _result; local 783 StorageVolume[] _result; local 805 String _result; local 827 int _result; local 847 int _result; local 867 int _result; local 887 long _result; local 934 DiskInfo[] _result; local 951 VolumeInfo[] _result; local 969 VolumeRecord[] _result; local 1172 String _result; local 1363 ParcelFileDescriptor _result = null; local [all...] |