HomeSort by relevance Sort by last modified time
    Searched full:static_cast (Results 276 - 300 of 5706) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/mac/
IntSizeMac.mm 33 IntSize::IntSize(const NSSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
  /external/webkit/Source/WebCore/platform/graphics/wince/
WinCEGraphicsExtras.h 32 return static_cast<int>(d + 0.5);
34 int i = static_cast<int>(d);
  /external/webkit/Source/WebCore/platform/qt/
PlatformBridgeQt.cpp 34 return static_cast<PluginView*>(npp->ndata)->arePopupsAllowed();
47 PluginView* pluginView = static_cast<PluginView*>(widget);
  /external/webkit/Source/WebKit/chromium/src/
IDBObjectStoreBackendProxy.cpp 81 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
89 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
90 m_webIDBObjectStore->put(value, key, static_cast<WebIDBObjectStore::PutMode>(putMode), new WebIDBCallbacksImpl(callbacks), *transactionProxy->getWebIDBTransaction(), ec);
97 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
105 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
113 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
132 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
140 IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
LocalFileSystemChromium.cpp 73 Document* document = static_cast<Document*>(context);
75 webFrame->client()->openFileSystem(webFrame, static_cast<WebFileSystem::Type>(type), size, create == CreateIfNotPresent, new WebFileSystemCallbacksImpl(callbacks, type));
77 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
79 WebWorkerBase* webWorker = static_cast<WebWorkerBase*>(workerLoaderProxy);
80 webWorker->openFileSystemForWorker(static_cast<WebFileSystem::Type>(type), size, create == CreateIfNotPresent, new WebFileSystemCallbacksImpl(callbacks, type, context, synchronous), synchronous);
VideoFrameChromiumImpl.cpp 43 VideoFrameChromiumImpl* wrappedFrame = static_cast<VideoFrameChromiumImpl*>(videoFrame);
57 return static_cast<VideoFrameChromium::SurfaceType>(m_webVideoFrame->surfaceType());
64 return static_cast<VideoFrameChromium::Format>(m_webVideoFrame->format());
78 if (format() == YV12 && plane != static_cast<unsigned>(yPlane))
93 if (format() == YV12 && plane != static_cast<unsigned>(yPlane))
  /external/webrtc/src/modules/audio_processing/
high_pass_filter_impl.cc 85 y[0] = static_cast<WebRtc_Word16>(tmp_int32 >> 13);
86 y[1] = static_cast<WebRtc_Word16>((tmp_int32 -
87 WEBRTC_SPL_LSHIFT_W32(static_cast<WebRtc_Word32>(y[0]), 13)) << 2);
93 tmp_int32 = WEBRTC_SPL_SAT(static_cast<WebRtc_Word32>(134217727),
95 static_cast<WebRtc_Word32>(-134217728));
124 Handle* my_handle = static_cast<Handle*>(handle(i));
158 delete static_cast<Handle*>(handle);
163 return InitializeFilter(static_cast<Handle*>(handle),
  /frameworks/base/core/jni/android/graphics/
HarfbuzzSkia.cpp 53 SkPaint* paint = static_cast<SkPaint*>(hbFont->userData);
72 SkPaint* paint = static_cast<SkPaint*>(hbFont->userData);
97 SkPaint* paint = static_cast<SkPaint*>(hbFont->userData);
121 SkPaint* paint = static_cast<SkPaint*>(hbFont->userData);
130 SkPoint* points = static_cast<SkPoint*>(malloc(sizeof(SkPoint) * (point + 1)));
145 SkPaint* paint = static_cast<SkPaint*>(hbFont->userData);
167 SkPaint* paint = static_cast<SkPaint*>(hbFont->userData);
193 SkTypeface* typeface = static_cast<SkTypeface*>(font);
  /frameworks/rs/
rsDevice.cpp 49 Device * d = static_cast<Device *>(dev);
54 Device * d = static_cast<Device *>(dev);
  /libcore/luni/src/main/native/
libcore_icu_NativeNormalizer.cpp 27 UNormalizationMode mode = static_cast<UNormalizationMode>(intMode);
37 UNormalizationMode mode = static_cast<UNormalizationMode>(intMode);
  /ndk/tests/device/test-gnustl-full/unit/
messages_facets_test.cpp 24 locale loc(locale::classic(), new messages_byname<char>(static_cast<char const*>(0)));
62 locale loc(locale::classic(), new messages_byname<wchar_t>(static_cast<char const*>(0)));
  /ndk/tests/device/test-stlport/unit/
messages_facets_test.cpp 24 locale loc(locale::classic(), new messages_byname<char>(static_cast<char const*>(0)));
62 locale loc(locale::classic(), new messages_byname<wchar_t>(static_cast<char const*>(0)));
  /external/chromium/base/
sync_socket_win.cc 25 const size_t kMaxMessageLength = static_cast<size_t>(INT_MAX);
116 DWORD chunk = static_cast<DWORD>(
118 if (WriteFile(handle_, static_cast<const char*>(buffer) + count,
132 DWORD chunk = static_cast<DWORD>(
134 if (ReadFile(handle_, static_cast<char*>(buffer) + count,
  /external/chromium/net/base/
dnssec_keyset.cc 71 uint32 expires = static_cast<uint32>(sigdata[6]) << 24 |
72 static_cast<uint32>(sigdata[7]) << 16 |
73 static_cast<uint32>(sigdata[8]) << 8 |
74 static_cast<uint32>(sigdata[9]);
75 uint32 begins = static_cast<uint32>(sigdata[10]) << 24 |
76 static_cast<uint32>(sigdata[11]) << 16 |
77 static_cast<uint32>(sigdata[12]) << 8 |
78 static_cast<uint32>(sigdata[13]);
79 uint16 keyid = static_cast<uint16>(sigdata[14]) << 8 |
80 static_cast<uint16>(sigdata[15])
    [all...]
  /external/clang/test/SemaCXX/
discrim-union.cpp 7 template<typename T> constexpr T &&forward(typename remove_reference<T>::type &t) noexcept { return static_cast<T&&>(t); }
8 template<typename T> constexpr T &&forward(typename remove_reference<T>::type &&t) noexcept { return static_cast<T&&>(t); }
9 template<typename T> constexpr typename remove_reference<T>::type &&move(T &&t) noexcept { return static_cast<typename remove_reference<T>::type&&>(t); }
50 template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{})) get(select<N>) {
85 decltype(static_cast<const impl_t&>(impl).get(detail::select<N>{}));
  /external/v8/src/
utils.cc 50 ASSERT(static_cast<size_t>(n) <= strlen(s));
64 uint32_t number = static_cast<uint32_t>(value);
67 number = static_cast<uint32_t>(-value);
75 buffer_[position_ - i] = '0' + static_cast<char>(number % 10);
86 ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
zone-inl.h 73 return static_cast<T*>(New(length * sizeof(T)));
101 return ZONE->New(static_cast<int>(size));
105 return zone->New(static_cast<int>(size));
116 return ZONE->New(static_cast<int>(size));
122 return zone->New(static_cast<int>(size));
  /external/webkit/Source/WebCore/bridge/
npruntime.cpp 46 return static_cast<NPIdentifier>(IdentifierRep::get(name));
62 return static_cast<NPIdentifier>(IdentifierRep::get(intid));
67 return static_cast<IdentifierRep*>(identifier)->isString();
72 const char* string = static_cast<IdentifierRep*>(identifier)->string();
81 return static_cast<IdentifierRep*>(identifier)->number();
  /external/webkit/Source/WebCore/platform/audio/
HRTFDatabase.cpp 78 double x = static_cast<double>(jj) / static_cast<double>(InterpolationFactor);
115 elevationAngle = max(static_cast<double>(MinElevation), elevationAngle);
116 elevationAngle = min(static_cast<double>(MaxElevation), elevationAngle);
118 unsigned elevationIndex = static_cast<int>(InterpolationFactor * (elevationAngle - MinElevation) / RawElevationAngleSpacing);
  /external/webkit/Source/WebCore/rendering/
RenderIFrame.cpp 50 HTMLIFrameElement* frame = static_cast<HTMLIFrameElement*>(node());
54 FrameView* view = static_cast<FrameView*>(widget());
68 HTMLIFrameElement* frame = static_cast<HTMLIFrameElement*>(node());
72 FrameView* view = static_cast<FrameView*>(widget());
85 HTMLIFrameElement* element = static_cast<HTMLIFrameElement*>(node());
  /external/webkit/Source/WebCore/svg/
SVGLocatable.cpp 50 return static_cast<SVGElement*>(n);
62 farthest = static_cast<SVGElement*>(n);
92 SVGElement* currentElement = static_cast<SVGElement*>(current);
95 ctm = static_cast<SVGStyledElement*>(currentElement)->localCoordinateSpaceTransform(mode).multiply(ctm);
112 AffineTransform targetCTM = static_cast<SVGStyledLocatableElement*>(target)->getCTM(styleUpdateStrategy);
  /external/webkit/Source/WebCore/webaudio/
AudioParam.h 61 float value() const { return static_cast<float>(m_value); }
67 float minValue() const { return static_cast<float>(m_minValue); }
68 float maxValue() const { return static_cast<float>(m_maxValue); }
69 float defaultValue() const { return static_cast<float>(m_defaultValue); }
76 float smoothedValue() const { return static_cast<float>(m_smoothedValue); }
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtPlatformPlugin.cpp 108 return p ? static_cast<QWebSelectMethod*>(p->createExtension(QWebKitPlatformPlugin::MultipleSelections)) : 0;
115 return p ? static_cast<QWebNotificationPresenter*>(p->createExtension(QWebKitPlatformPlugin::Notifications)) : 0;
121 return p ? static_cast<QWebHapticFeedbackPlayer*>(p->createExtension(QWebKitPlatformPlugin::Haptics)) : 0;
127 return p ? static_cast<QWebTouchModifier*>(p->createExtension(QWebKitPlatformPlugin::TouchInteraction)) : 0;
134 return p ? static_cast<QWebFullScreenVideoHandler*>(p->createExtension(QWebKitPlatformPlugin::FullScreenVideoPlayer)) : 0;
  /frameworks/base/libs/hwui/utils/
SortedListImpl.cpp 36 return static_cast<SortedListImpl&>
37 (VectorImpl::operator =(static_cast<const VectorImpl&> (rhs)));
106 err = VectorImpl::insertVectorAt(static_cast<const VectorImpl&> (vector), 0);
108 err = VectorImpl::appendVector(static_cast<const VectorImpl&> (vector));
111 err = merge(static_cast<const VectorImpl&> (vector));
  /frameworks/compile/linkloader/android/
librsloader.cpp 91 static_cast<ELFSectionBits<32>*>(object->getSectionByIndex(i));
109 static_cast<ELFSectionSymTab<32> *>(object->getSectionByName(".symtab"));
131 static_cast<ELFSectionSymTab<32> *>(object->getSectionByName(".symtab"));
148 ELFSectionSymTab<32> *symtab = static_cast<ELFSectionSymTab<32> *>(
161 ELFSectionSymTab<32> *symtab = static_cast<ELFSectionSymTab<32> *>(

Completed in 504 milliseconds

<<11121314151617181920>>