HomeSort by relevance Sort by last modified time
    Searched full:static_cast (Results 951 - 975 of 12288) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 79 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u) { return t == static_cast<T>(u); }
337 PseudoId styleType() const { return static_cast<PseudoId>(noninherited_flags._styleType); }
400 Order rtlOrdering() const { return static_cast<Order>(inherited_flags.m_rtlOrdering); }
412 EDisplay display() const { return static_cast<EDisplay>(noninherited_flags._effectiveDisplay); }
413 EDisplay originalDisplay() const { return static_cast<EDisplay>(noninherited_flags._originalDisplay); }
433 EPosition position() const { return static_cast<EPosition>(noninherited_flags._position); }
437 EFloat floating() const { return static_cast<EFloat>(noninherited_flags._floating); }
503 OutlineIsAuto outlineStyleIsAuto() const { return static_cast<OutlineIsAuto>(m_background->outline().isAuto()); }
505 EOverflow overflowX() const { return static_cast<EOverflow>(noninherited_flags._overflowX); }
506 EOverflow overflowY() const { return static_cast<EOverflow>(noninherited_flags._overflowY);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedColor.cpp 97 animatedColor = ColorDistance::clampColor(static_cast<int>(roundf(animatedRed)), static_cast<int>(roundf(animatedGreen)), static_cast<int>(roundf(animatedBlue)), static_cast<int>(roundf(animatedAlpha)));
SVGFEComponentTransferElement.cpp 93 red = static_cast<SVGFEFuncRElement*>(node)->transferFunction();
95 green = static_cast<SVGFEFuncGElement*>(node)->transferFunction();
97 blue = static_cast<SVGFEFuncBElement*>(node)->transferFunction();
99 alpha = static_cast<SVGFEFuncAElement*>(node)->transferFunction();
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPathSegListPropertyTearOff.h 38 return static_cast<SVGListProperty<SVGPathSegList>*>(m_baseVal.get());
45 return static_cast<SVGListProperty<SVGPathSegList>*>(m_animVal.get());
52 return static_cast<SVGPathSegListPropertyTearOff*>(m_baseVal.get())->findItem(segment);
59 static_cast<SVGPathSegListPropertyTearOff*>(m_baseVal.get())->removeItemFromList(itemIndex, shouldSynchronizeWrappers);
  /external/chromium_org/third_party/WebKit/Source/web/
WebAccessibilityObject.cpp 599 return static_cast<WebAccessibilityRole>(m_private->roleValue());
824 return static_cast<WebCore::AccessibilityTable*>(m_private.get())->columnCount();
835 return static_cast<WebCore::AccessibilityTable*>(m_private.get())->rowCount();
846 WebCore::AccessibilityTableCell* cell = static_cast<WebCore::AccessibilityTable*>(m_private.get())->cellForColumnAndRow(column, row);
847 return WebAccessibilityObject(static_cast<WebCore::AccessibilityObject*>(cell));
858 return WebAccessibilityObject(static_cast<WebCore::AccessibilityTable*>(m_private.get())->headerContainer());
869 const AccessibilityObject::AccessibilityChildrenVector& rows = static_cast<WebCore::AccessibilityTable*>(m_private.get())->rows();
884 const AccessibilityObject::AccessibilityChildrenVector& columns = static_cast<WebCore::AccessibilityTable*>(m_private.get())->columns();
899 return static_cast<WebCore::AccessibilityTableRow*>(m_private.get())->rowIndex();
910 return WebAccessibilityObject(static_cast<WebCore::AccessibilityTableRow*>(m_private.get())->headerObject())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
ParallelJobsGeneric.cpp 48 requestedJobNumber = static_cast<unsigned>(maxNumberOfCores);
56 for (int i = 0; i < maxNumberOfCores && m_threads.size() < static_cast<unsigned>(maxNumberOfNewThreads); ++i) {
57 if (s_threadPool->size() < static_cast<unsigned>(i) + 1U)
69 unsigned char* currentParameter = static_cast<unsigned char*>(parameters);
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
ShaderExecutable9.cpp 47 return static_cast<ShaderExecutable9*>(executable);
  /external/chromium_org/third_party/leveldatabase/src/db/
log_writer.cc 19 char t = static_cast<char>(i);
81 buf[4] = static_cast<char>(n & 0xff);
82 buf[5] = static_cast<char>(n >> 8);
83 buf[6] = static_cast<char>(t);
  /external/chromium_org/third_party/libjingle/source/talk/base/
window.h 63 return WindowId(static_cast<WindowId::WindowT>(id));
69 return static_cast<uint64>(reinterpret_cast<uintptr_t>(id));
71 return static_cast<uint64>(id);
104 return DesktopId(static_cast<DesktopId::DesktopT>(id), index);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLStencilBuffer.cpp 21 return static_cast<size_t>(size / 8);
GrGLUtil.h 30 #define GR_GL_VER(major, minor) ((static_cast<int>(major) << 16) | \
31 static_cast<int>(minor))
32 #define GR_GLSL_VER(major, minor) ((static_cast<int>(major) << 16) | \
33 static_cast<int>(minor))
  /external/chromium_org/third_party/skia/src/utils/
SkThreadUtils_pthread_linux.cpp 30 SkThread_PThreadData* pthreadData = static_cast<SkThread_PThreadData*>(fData);
  /external/chromium_org/tools/android/common/
net.cc 30 static_cast<unsigned char>(buffer[i]));
  /external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/tests/
test-expected.cc 22 : b(new int), c(), f(static_cast<int*>(malloc(sizeof(int)))) {}
test-original.cc 23 : a(NULL), b(new int), c(), f(static_cast<int*>(malloc(sizeof(int)))) {}
  /external/chromium_org/ui/app_list/views/
search_result_list_view.cc 72 return static_cast<const SearchResultView*>(child_at(selected_index_)) ==
102 return static_cast<SearchResultView*>(child_at(index));
107 for (size_t i = 0; i < static_cast<size_t>(child_count()); ++i) {
141 size_t last = std::min(start + count, static_cast<size_t>(child_count()));
  /external/chromium_org/ui/aura/client/
focus_client.cc 23 return GetFocusClient(static_cast<const Window*>(window));
  /external/chromium_org/ui/base/accelerators/
platform_accelerator_cocoa.mm 32 static_cast<const PlatformAcceleratorCocoa&>(rhs);
  /external/chromium_org/ui/base/animation/
multi_animation_unittest.cc 19 static_cast<AnimationContainerElement*>(&animation);
48 static_cast<AnimationContainerElement*>(&animation);
67 static_cast<AnimationContainerElement*>(&animation);
83 static_cast<AnimationContainerElement*>(&animation);
  /external/chromium_org/ui/base/events/
event_conversion_gtk.cc 30 return static_cast<GdkModifierType>(modifier);
  /external/chromium_org/ui/base/gtk/
gdk_x_compat.h 22 return static_cast<GdkWindow*>(gdk_xid_table_lookup_for_display(display,
  /external/chromium_org/ui/base/win/
accessibility_misc_utils.cc 27 *provider = static_cast<ITextProvider*>(text_provider);
  /external/chromium_org/ui/base/x/
events_x.cc 118 static_cast<XIDeviceEvent*>(native_event->xcookie.data);
133 static_cast<XIDeviceEvent*>(native_event->xcookie.data)->sourceid;
199 static_cast<XIDeviceEvent*>(native_event->xcookie.data);
300 if (static_cast<int>(native_event->xbutton.button) >= kMinWheelButton &&
301 static_cast<int>(native_event->xbutton.button) <= kMaxWheelButton)
306 if (static_cast<int>(native_event->xbutton.button) >= kMinWheelButton &&
307 static_cast<int>(native_event->xbutton.button) <= kMaxWheelButton)
328 static_cast<XIDeviceEvent*>(native_event->xcookie.data);
390 static_cast<XIDeviceEvent*>(native_event->xcookie.data);
456 static_cast<XIDeviceEvent*>(native_event->xcookie.data)
    [all...]
  /external/chromium_org/ui/gl/
gl_surface_nsview.mm 43 context_ = static_cast<GLContextNSView *>(context);
  /external/chromium_org/ui/views/controls/webview/
unhandled_keyboard_event_handler_aurax11.cc 27 focus_manager->OnKeyEvent(*static_cast<ui::KeyEvent*>(event.os_event));

Completed in 757 milliseconds

<<31323334353637383940>>