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

<<11121314151617181920>>

  /sdk/emulator/opengl/host/tools/emugen/
VarType.h 58 m_id(id), m_name(name), m_converter(const_cast<VarConverter *>(converter)), m_printFomrat(printFormat), m_isPointer(isPointer)
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 914 dev->device.common.module = const_cast<hw_module_t*>(module);
963 dev->device.common.module = const_cast<hw_module_t*>(module);
970 const_cast<uint32_t&>(dev->device.flags) = 0;
971 const_cast<uint32_t&>(dev->device.width) = width;
972 const_cast<uint32_t&>(dev->device.height) = height;
973 const_cast<int&>(dev->device.stride) = width;
974 const_cast<int&>(dev->device.format) = HAL_PIXEL_FORMAT_RGBA_8888;
975 const_cast<float&>(dev->device.xdpi) = xdpi;
976 const_cast<float&>(dev->device.ydpi) = ydpi;
977 const_cast<float&>(dev->device.fps) = fps
    [all...]
  /external/chromium/chrome/browser/automation/
automation_resource_tracker.h 111 return static_cast<T>(const_cast<void*>(GetResourceImpl(handle)));
144 AddObserver(static_cast<T>(const_cast<void*>(resource)));
147 RemoveObserver(static_cast<T>(const_cast<void*>(resource)));
  /external/chromium/crypto/
rsa_private_key_mac.cc 30 const_cast<uint8*>(reinterpret_cast<const uint8*>("temp_key")) };
62 key.KeyData.Data = const_cast<uint8*>(&input.front());
94 const_cast<uint8*>(reinterpret_cast<const uint8*>("unwrapped"));
  /external/chromium/net/http/
http_auth_gssapi_posix.cc 29 const_cast<char*>("\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x01")
33 const_cast<char*>("\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x02")
37 const_cast<char*>("\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x03")
41 const_cast<char*>("\x2b\x06\x01\x05\x06\x02")
45 const_cast<char*>("\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04")
49 const_cast<char*>("\x2b\x06\01\x05\x06\x03")
53 const_cast<char*>("\x2b\x06\x01\x05\x06\x04")
73 const_cast<char*>("\x2a\x86\x48\x86\xf7\x12\x01\x02\x02")
78 const_cast<char*>("\x2b\x06\x01\x05\x06\x02")
83 const_cast<char*>("\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04"
    [all...]
  /external/chromium_org/chrome/browser/automation/
automation_resource_tracker.h 110 return static_cast<T>(const_cast<void*>(GetResourceImpl(handle)));
143 AddObserver(static_cast<T>(const_cast<void*>(resource)));
146 RemoveObserver(static_cast<T>(const_cast<void*>(resource)));
  /external/chromium_org/chrome/installer/util/
delete_reg_key_work_item_unittest.cc 105 const_cast<SECURITY_DESCRIPTOR*>(
110 const_cast<SECURITY_DESCRIPTOR*>(
134 const_cast<SECURITY_DESCRIPTOR*>(
  /external/chromium_org/third_party/WebKit/Source/core/rendering/animation/
WebAnimationProvider.cpp 86 m_transformAnimation.swap(const_cast<OwnPtr<WebAnimation>& >(other.m_transformAnimation));
87 m_opacityAnimation.swap(const_cast<OwnPtr<WebAnimation>& >(other.m_opacityAnimation));
88 m_filterAnimation.swap(const_cast<OwnPtr<WebAnimation>& >(other.m_filterAnimation));
  /external/chromium_org/third_party/WebKit/Source/platform/audio/chromium/
FFTFrameOpenMAXDLAndroid.cpp 109 FFTFrame& frame2 = const_cast<FFTFrame&>(frame);
181 return const_cast<float*>(m_realData.data());
186 return const_cast<float*>(m_imagData.data());
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
atomicops-internals-arm-generic.h 74 const_cast<Atomic32*>(ptr))) {
88 const_cast<Atomic32*>(ptr)));
99 const_cast<Atomic32*>(ptr)) == 0) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
atomicops-internals-arm-generic.h 74 const_cast<Atomic32*>(ptr))) {
88 const_cast<Atomic32*>(ptr)));
99 const_cast<Atomic32*>(ptr)) == 0) {
  /external/chromium_org/v8/test/cctest/
cctest.cc 46 // Find the base name of this test (const_cast required on Windows).
47 char *basename = strrchr(const_cast<char *>(file), '/');
49 basename = strrchr(const_cast<char *>(file), '\\');
  /external/clang/test/Parser/
cxx-casting.cpp 5 return const_cast<char*>(var);
44 (void)const_cast<::c>(&x); // expected-error{{found '<::' after a const_cast which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}
  /external/v8/test/cctest/
cctest.cc 39 // Find the base name of this test (const_cast required on Windows).
40 char *basename = strrchr(const_cast<char *>(file), '/');
42 basename = strrchr(const_cast<char *>(file), '\\');
  /frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp 106 const_cast<mcld::LinkerScript&>(*pConfig.getLDScript()));
112 mLinker->emulate(const_cast<mcld::LinkerScript&>(*pConfig.getLDScript()),
113 const_cast<mcld::LinkerConfig&>(*mLDConfig));
  /frameworks/native/services/surfaceflinger/
FrameTracker.cpp 123 FrameRecord* records = const_cast<FrameRecord*>(mFrameRecords);
124 int& numFences = const_cast<int&>(mNumFences);
157 int* numFrames = const_cast<int*>(mNumFrames);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/
ctor.pass.cpp 36 base::setg(const_cast<CharT*>(str_.data()),
37 const_cast<CharT*>(str_.data()),
38 const_cast<CharT*>(str_.data()) + str_.size());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 146 new (const_cast<void* >(static_cast<const void* >(target_it)))
190 new (const_cast<void* >(static_cast<const void* >(target_it)))
200 new (const_cast<void* >(static_cast<const void* >(target_it)))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 72 const_node_pointer p_nd = const_cast<PB_DS_CLASS_C_DEC* >(this)->find_imp(r_key);
83 return const_iterator(const_cast<node_pointer>(p_nd));
168 return const_point_iterator(const_cast<PB_DS_CLASS_C_DEC* >(this)->lower_bound_imp(r_key));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 146 new (const_cast<void* >(static_cast<const void* >(target_it)))
190 new (const_cast<void* >(static_cast<const void* >(target_it)))
200 new (const_cast<void* >(static_cast<const void* >(target_it)))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 72 const_node_pointer p_nd = const_cast<PB_DS_CLASS_C_DEC* >(this)->find_imp(r_key);
83 return const_iterator(const_cast<node_pointer>(p_nd));
168 return const_point_iterator(const_cast<PB_DS_CLASS_C_DEC* >(this)->lower_bound_imp(r_key));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 146 new (const_cast<void* >(static_cast<const void* >(target_it)))
190 new (const_cast<void* >(static_cast<const void* >(target_it)))
200 new (const_cast<void* >(static_cast<const void* >(target_it)))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 72 const_node_pointer p_nd = const_cast<PB_DS_CLASS_C_DEC* >(this)->find_imp(r_key);
83 return const_iterator(const_cast<node_pointer>(p_nd));
168 return const_point_iterator(const_cast<PB_DS_CLASS_C_DEC* >(this)->lower_bound_imp(r_key));
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 146 new (const_cast<void* >(static_cast<const void* >(target_it)))
190 new (const_cast<void* >(static_cast<const void* >(target_it)))
200 new (const_cast<void* >(static_cast<const void* >(target_it)))
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 72 const_node_pointer p_nd = const_cast<PB_DS_CLASS_C_DEC* >(this)->find_imp(r_key);
83 return const_iterator(const_cast<node_pointer>(p_nd));
168 return const_point_iterator(const_cast<PB_DS_CLASS_C_DEC* >(this)->lower_bound_imp(r_key));

Completed in 488 milliseconds

<<11121314151617181920>>