HomeSort by relevance Sort by last modified time
    Searched defs:m_type (Results 101 - 125 of 128) sorted by null

1 2 3 45 6

  /external/webkit/Source/WebCore/platform/
Cursor.h 170 Type type() const { return m_type; }
183 Type m_type; member in class:WebCore::Cursor
Length.h 43 : m_intValue(0), m_quirk(false), m_type(Auto), m_isFloat(false)
48 : m_intValue(0), m_quirk(false), m_type(t), m_isFloat(false)
53 : m_intValue(v), m_quirk(q), m_type(t), m_isFloat(false)
58 : m_floatValue(v), m_quirk(q), m_type(t), m_isFloat(true)
63 : m_quirk(q), m_type(t), m_isFloat(true)
68 bool operator==(const Length& o) const { return (getFloatValue() == o.getFloatValue()) && (m_type == o.m_type) && (m_quirk == o.m_quirk); }
69 bool operator!=(const Length& o) const { return (getFloatValue() != o.getFloatValue()) || (m_type != o.m_type) || (m_quirk != o.m_quirk); }
91 LengthType type() const { return static_cast<LengthType>(m_type); }
217 unsigned char m_type; member in struct:WebCore::Length
    [all...]
PlatformKeyboardEvent.h 103 : m_type(KeyDown)
124 Type type() const { return m_type; }
221 Type m_type; member in class:WebCore::PlatformKeyboardEvent
ContextMenuItem.h 289 ContextMenuItemType m_type; member in class:WebCore::ContextMenuItem
  /external/webkit/Source/WebCore/platform/chromium/
PlatformCursor.h 90 explicit PlatformCursor(int type = 0) : m_type(TypePointer) {}
92 PlatformCursor(Type type) : m_type(type) {}
97 , m_type(TypeCustom) {}
101 Type type() const { return m_type; }
106 Type m_type; member in class:WebCore::PlatformCursor
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.h 100 PlatformPathElement(): m_type(PathCloseSubpath) { m_data.m_points[0].set(0, 0); }
101 PlatformPathElement(const MoveTo& data): m_type(PathMoveTo) { m_data.m_moveToData = data; }
102 PlatformPathElement(const LineTo& data): m_type(PathLineTo) { m_data.m_lineToData = data; }
103 PlatformPathElement(const ArcTo& data): m_type(PathArcTo) { m_data.m_arcToData = data; }
104 PlatformPathElement(const QuadCurveTo& data): m_type(PathQuadCurveTo) { m_data.m_quadCurveToData = data; }
105 PlatformPathElement(const BezierCurveTo& data): m_type(PathBezierCurveTo) { m_data.m_bezierCurveToData = data; }
123 PlaformPathElementType platformType() const { return m_type; }
127 PlaformPathElementType m_type; member in class:WebCore::PlatformPathElement
  /external/webkit/Source/WebCore/webaudio/
AudioNode.h 73 NodeType type() const { return m_type; }
147 NodeType m_type; member in class:WebCore::AudioNode
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 184 : m_type(type)
190 Type m_type; member in struct:WebKit::NetscapePluginInstanceProxy::Reply
263 ASSERT(reply->m_type == T::ReplyType);
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.h 82 HUDButtonType m_type; member in class:HUDButton
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeControlDRTWin.h 186 const Type m_type; member in class:WebThemeControlDRTWin
  /frameworks/base/tools/localize/
XMLHandler.h 75 inline int Type() const { return m_type; }
111 int m_type; member in struct:XMLNode
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 247 this.m_type = type;
343 private int m_type = T_ELEMENT; field in class:XSLTElementDef
352 return m_type;
362 m_type = t;
XSLTAttributeDef.java 71 this.m_type = type;
95 this.m_type = type;
123 this.m_type = prefixedQNameValAllowed ? this.T_ENUM_OR_PQNAME : this.T_ENUM;
156 this.m_type = prefixedQNameValAllowed ? this.T_ENUM_OR_PQNAME : this.T_ENUM;
192 this.m_type = prefixedQNameValAllowed ? this.T_ENUM_OR_PQNAME : this.T_ENUM;
313 private int m_type; field in class:XSLTAttributeDef
324 return m_type;
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8GCController.cpp 209 GroupId() : m_type(NullType), m_groupId(0) {}
210 GroupId(Node* node) : m_type(NodeType), m_node(node) {}
211 GroupId(void* other) : m_type(OtherType), m_other(other) {}
212 bool operator!() const { return m_type == NullType; }
216 switch (m_type) {
234 Type m_type; member in class:WebCore::GroupId
  /external/webkit/Source/WebCore/dom/
Event.h 76 const AtomicString& type() const { return m_type; }
179 AtomicString m_type; member in class:WebCore::Event
  /external/webkit/Source/WebCore/platform/text/gtk/
TextBreakIteratorGtk.cpp 189 UBreakIteratorType m_type; member in class:WebCore::TextBreakIterator
212 iterator->m_type = type;
287 // TextBreakLast is not meant to find just any break according to bi->m_type
323 if ((iterator->m_type == UBRK_LINE && iterator->m_logAttrs[index].is_line_break)
324 || (iterator->m_type == UBRK_WORD && (iterator->m_logAttrs[index].is_word_start || iterator->m_logAttrs[index].is_word_end))
325 || (iterator->m_type == UBRK_CHARACTER && iterator->m_logAttrs[index].is_cursor_position)
326 || (iterator->m_type == UBRK_SENTENCE && iterator->m_logAttrs[index].is_sentence_boundary)) {
338 if ((iterator->m_type == UBRK_LINE && iterator->m_logAttrs[index].is_line_break)
339 || (iterator->m_type == UBRK_WORD && (iterator->m_logAttrs[index].is_word_start || iterator->m_logAttrs[index].is_word_end))
340 || (iterator->m_type == UBRK_CHARACTER && iterator->m_logAttrs[index].is_cursor_position
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.h 145 Type m_type; member in struct:WebCore::SVGSMILElement::Condition
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 44 SrfcInfo(GLXDrawable drawable,SurfaceType type):m_type(type),
48 SurfaceType m_type; member in class:SrfcInfo
EglWindowsApi.cpp 116 SurfaceType m_type; member in class:SrfcInfo
122 m_type(PIXMAP){
128 m_type(WINDOW){
135 m_type(PBUFFER){
143 if(m_type == WINDOW){
  /external/webkit/Source/WebCore/html/parser/
HTMLToken.h 69 m_type = Uninitialized;
76 bool isUninitialized() { return m_type == Uninitialized; }
93 ASSERT(m_type == Uninitialized);
94 m_type = EndOfFile;
100 ASSERT(m_type == Uninitialized);
101 m_type = StartTag;
112 ASSERT(m_type == Uninitialized);
113 m_type = EndTag;
125 ASSERT(m_type == Uninitialized || m_type == Character)
361 Type m_type; member in class:WebCore::HTMLToken
496 HTMLToken::Type m_type; member in class:WebCore::AtomicHTMLToken
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
LayerAndroid.h 302 int type() { return m_type; }
411 int m_type; member in class:WebCore::LayerAndroid
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 75 : m_type(None)
82 : m_type(type)
89 : m_type(type)
95 Type type() { return m_type; }
96 bool isValid() { return m_type != None; }
101 Type m_type; member in class:WebCore::MediaPlayerPrivateAVFoundation::Notification
  /external/icu4c/tools/genrb/
wrtxml.cpp 789 const char* m_type = application_mimetype; local
822 m_type = "image";
824 m_type = "audio";
826 m_type = "video";
828 m_type = "text";
831 sid = printContainer(res, bin_unit, binary_restype, m_type, id, status);
857 sid = printContainer(res, bin_unit, binary_restype, m_type, id, status);
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.h 154 JSTokenType m_type; member in struct:JSC::JSToken
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 85 Type type() const { return static_cast<Type>(m_type); }
106 uint32_t m_type; // Type member in class:WebKit::WebEvent

Completed in 1196 milliseconds

1 2 3 45 6