HomeSort by relevance Sort by last modified time
    Searched refs:static_cast (Results 201 - 225 of 11903) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/content/child/npapi/
plugin_lib_unittest.cc 28 ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
36 ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
45 ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
55 ASSERT_EQ(static_cast<PluginLibTest*>(NULL),
  /external/chromium_org/content/common/net/
url_request_user_data.cc 18 static_cast<const void*>(&URLRequestUserData::kUserDataKey);
  /external/chromium_org/content/public/test/
web_contents_tester.cc 20 return static_cast<TestWebContents*>(contents);
  /external/chromium_org/content/renderer/
render_process.h 35 return static_cast<RenderProcess*>(ChildProcess::current());
  /external/chromium_org/media/video/
video_decode_accelerator.cc 25 static_cast<media::VideoDecodeAccelerator*>(video_decode_accelerator)->
  /external/chromium_org/net/disk_cache/blockfile/
file_posix.cc 59 if (buffer_len > static_cast<size_t>(kint32max) ||
60 offset > static_cast<size_t>(kint32max)) {
64 int ret = base_file_.Read(offset, static_cast<char*>(buffer), buffer_len);
65 return (static_cast<size_t>(ret) == buffer_len);
70 if (buffer_len > static_cast<size_t>(kint32max) ||
71 offset > static_cast<size_t>(kint32max)) {
75 int ret = base_file_.Write(offset, static_cast<const char*>(buffer),
77 return (static_cast<size_t>(ret) == buffer_len);
89 if (buffer_len > static_cast<size_t>(kint32max) ||
90 offset > static_cast<size_t>(kint32max))
    [all...]
  /external/chromium_org/ppapi/proxy/
proxy_array_output.cc 16 return static_cast<ArrayOutputAdapterBase*>(user_data)->
  /external/chromium_org/sync/internal_api/public/base/
node_ordinal.cc 12 uint64 y = static_cast<uint64>(x);
20 bytes[i] = static_cast<uint8>(y);
39 y |= static_cast<uint64>(byte) << (i * 8);
44 return static_cast<int64>(y);
  /external/chromium_org/third_party/WebKit/Source/core/events/
UIEventWithKeyState.cpp 30 return static_cast<UIEventWithKeyState*>(e);
  /external/chromium_org/third_party/WebKit/Source/platform/
OverscrollTheme.cpp 61 static_cast<int>(rootContentLayer->position().x()) - m_overhangShadow->width() / 2,
62 static_cast<int>(rootContentLayer->position().y()) - m_overhangShadow->height() / 2,
63 static_cast<int>(rootContentLayer->size().width()) + m_overhangShadow->width() - 1,
64 static_cast<int>(rootContentLayer->size().height()) + m_overhangShadow->height() - 1);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebFloatQuad.cpp 43 int left = static_cast<int>(floorf(min(min(min(p[0].x, p[1].x), p[2].x), p[3].x)));
44 int top = static_cast<int>(floorf(min(min(min(p[0].y, p[1].y), p[2].y), p[3].y)));
45 int right = static_cast<int>(ceilf(max(max(max(p[0].x, p[1].x), p[2].x), p[3].x)));
46 int bottom = static_cast<int>(ceilf(max(max(max(p[0].y, p[1].y), p[2].y), p[3].y)));
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
vertexconversion.h 43 return static_cast<ToT>(x);
56 return static_cast<T>(x);
70 float f = static_cast<float>(x);
76 const float divisor = 1.0f/(2*static_cast<float>(NL::max())+1);
95 const float divisor = 1.0f / static_cast<float>(static_cast<FromType>(1) << ScaleBits);
96 return static_cast<float>(x) * divisor;
131 static T zero() { return static_cast<T>(0); }
132 static T one() { return static_cast<T>(1); }
139 static T zero() { return static_cast<T>(0);
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_strtoint.h 21 return static_cast<int32>(strtol(nptr, endptr, base));
  /external/chromium_org/third_party/libjingle/source/talk/base/
common.h 45 #define UNUSED(x) Unused(static_cast<const void*>(&x))
46 #define UNUSED2(x, y) Unused(static_cast<const void*>(&x)); \
47 Unused(static_cast<const void*>(&y))
48 #define UNUSED3(x, y, z) Unused(static_cast<const void*>(&x)); \
49 Unused(static_cast<const void*>(&y)); \
50 Unused(static_cast<const void*>(&z))
51 #define UNUSED4(x, y, z, a) Unused(static_cast<const void*>(&x)); \
52 Unused(static_cast<const void*>(&y)); \
53 Unused(static_cast<const void*>(&z)); \
54 Unused(static_cast<const void*>(&a)
    [all...]
ratetracker.cc 35 last_units_second_time_(static_cast<uint32>(-1)),
49 if (last_units_second_time_ != static_cast<uint32>(-1)) {
55 static_cast<int>(total_units_ - last_units_second_calc_) *
64 if (last_units_second_time_ == static_cast<uint32>(-1)) {
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
test_vectors.cc 15 #define NELEMENTS(x) static_cast<int>(sizeof(x) / sizeof(x[0]))
  /external/chromium_org/third_party/tcmalloc/chromium/src/
sampler.cc 67 log_table_[i] = (log(1.0 + static_cast<double>(i+0.5)/(1<<kFastlogNumBits))
82 rnd_ = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(this));
119 double q = static_cast<uint32_t>(rnd_ >> (prng_mod_power - 26)) + 1.0;
126 return static_cast<size_t>(min(0.0, (FastLog2(q) - 26)) * (-log(2.0)
  /external/chromium_org/third_party/tcmalloc/vendor/src/
sampler.cc 67 log_table_[i] = (log(1.0 + static_cast<double>(i+0.5)/(1<<kFastlogNumBits))
82 rnd_ = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(this));
119 double q = static_cast<uint32_t>(rnd_ >> (prng_mod_power - 26)) + 1.0;
126 return static_cast<size_t>(min(0.0, (FastLog2(q) - 26)) * (-log(2.0)
  /external/chromium_org/third_party/webrtc/base/
ratetracker.cc 18 last_units_second_time_(static_cast<uint32>(-1)),
32 if (last_units_second_time_ != static_cast<uint32>(-1)) {
38 static_cast<int>(total_units_ - last_units_second_calc_) *
47 if (last_units_second_time_ == static_cast<uint32>(-1)) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_decoder_impl.cc 48 static_cast<int16_t>(encoded_len), decoded, &temp_type);
56 return static_cast<int>(encoded_len / channels_);
65 static_cast<int16_t>(encoded_len), decoded, &temp_type);
73 return static_cast<int>(encoded_len / channels_);
91 static_cast<int16_t>(encoded_len), decoded, &temp_type);
99 return static_cast<int>(encoded_len / (2 * channels_));
129 WebRtcIlbcfix_DecoderFree(static_cast<iLBC_decinst_t*>(state_));
135 int16_t ret = WebRtcIlbcfix_Decode(static_cast<iLBC_decinst_t*>(state_),
137 static_cast<int16_t>(encoded_len), decoded,
144 return WebRtcIlbcfix_NetEqPlc(static_cast<iLBC_decinst_t*>(state_)
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
finalize_after_dispatch.cpp 9 static B* toB(A* a) { return static_cast<B*>(a); }
18 static_cast<C*>(this)->traceAfterDispatch(visitor);
21 static_cast<D*>(this)->traceAfterDispatch(visitor);
37 static_cast<C*>(this)->~C();
40 // Missing static_cast<D*>(this)->~D();
  /external/chromium_org/ui/gfx/image/
image_skia_rep.cc 19 static_cast<int>(size.width() * this->scale()),
20 static_cast<int>(size.height() * this->scale()));
31 return static_cast<int>(bitmap_.width() / scale());
35 return static_cast<int>(bitmap_.height() / scale());
  /external/chromium_org/ui/gfx/range/
range_win.cc 38 CHECK_LE(static_cast<LONG>(start()), kLONGMax);
39 CHECK_LE(static_cast<LONG>(end()), kLONGMax);
40 r.cpMin = static_cast<LONG>(start());
41 r.cpMax = static_cast<LONG>(end());
  /external/chromium_org/url/
url_test_utils.h 26 int length = static_cast<int>(wcslen(src));
28 str.push_back(static_cast<base::char16>(src[i]));
35 int length = static_cast<int>(src.length());
46 EXPECT_TRUE(ConvertUTF16ToUTF8(src.data(), static_cast<int>(src.length()),
  /external/chromium_org/v8/src/base/
safe_conversions.h 26 // checked_cast<> is analogous to static_cast<> for numeric types,
32 return static_cast<Dst>(value);
35 // saturated_cast<> is analogous to static_cast<> for numeric types, except
42 return static_cast<Dst>(value);
46 return static_cast<Dst>(value);
61 return static_cast<Dst>(value);

Completed in 1292 milliseconds

1 2 3 4 5 6 7 891011>>