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

1 2 34 5 6

  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.h 65 Type type() const { return static_cast<Type>(m_type); }
107 uint32_t m_type; member in class:WebKit::NPVariantData
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
objectNameManager.h 119 const NamedObjectType m_type; member in class:NameSpace
  /development/tools/emulator/opengl/host/tools/emugen/
Var.h 29 m_type(NULL),
48 m_type(const_cast<VarType *>(vartype)),
65 m_type = vartype;
76 const VarType * type() const { return m_type; }
77 bool isPointer() const { return m_type->isPointer(); }
78 bool isVoid() const { return ((m_type->bytes() == 0) && (!m_type->isPointer())); }
93 void printType(FILE *fp) { fprintf(fp, "%s", m_type->name().c_str()); }
98 const VarType * m_type; member in class:Var
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.h 125 int m_type; // SOF type member in class:GrFmtJpegReader
  /external/webkit/Source/JavaScriptCore/parser/
ResultType.h 47 : m_type(type)
53 return m_type & TypeReusable;
58 return m_type & TypeInt32;
63 return (m_type & TypeBits) == TypeMaybeNumber;
68 return (m_type & TypeBits) == TypeMaybeString;
73 return m_type & TypeMaybeNumber;
136 Type m_type; member in struct:JSC::ResultType
146 m_u.rds.first = first.m_type;
147 m_u.rds.second = second.m_type;
  /external/webkit/Source/WebCore/css/
WebKitCSSTransformValue.h 72 TransformOperationType operationType() const { return m_type; }
79 TransformOperationType m_type; member in class:WebCore::WebKitCSSTransformValue
  /external/webkit/Source/WebCore/html/
DataGridColumn.h 53 const AtomicString& type() const { return m_type; }
54 void setType(const AtomicString& type) { m_type = type; columnChanged(); }
87 , m_type(type)
100 AtomicString m_type; member in class:WebCore::DataGridColumn
HTMLLinkElement.h 147 String m_type; member in class:WebCore::HTMLLinkElement
DateComponents.h 57 , m_type(Invalid)
196 Type m_type; member in class:WebCore::DateComponents
  /external/webkit/Source/WebCore/html/canvas/
CanvasStyle.h 53 bool isCurrentColor() const { return m_type == CurrentColor || m_type == CurrentColorWithOverrideAlpha; }
54 bool hasOverrideAlpha() const { return m_type == CurrentColorWithOverrideAlpha; }
55 float overrideAlpha() const { ASSERT(m_type == CurrentColorWithOverrideAlpha); return m_overrideAlpha; }
57 String color() const { ASSERT(m_type == RGBA || m_type == CMYKA); return Color(m_rgba).serialized(); }
79 Type m_type; member in class:WebCore::CanvasStyle
WebGLGetInfo.h 116 Type m_type; member in class:WebCore::WebGLGetInfo
WebGLVertexArrayObjectOES.h 73 bool isDefaultObject() const { return m_type == VaoTypeDefault; }
90 VaoType m_type; member in class:WebCore::WebGLVertexArrayObjectOES
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceLoader.h 144 CachedResource::Type m_type; member in struct:WebCore::CachedResourceLoader::PendingPreload
  /external/webkit/Source/WebCore/platform/animation/
TimingFunction.h 41 bool isLinearTimingFunction() const { return m_type == LinearFunction; }
42 bool isCubicBezierTimingFunction() const { return m_type == CubicBezierFunction; }
43 bool isStepsTimingFunction() const { return m_type == StepsFunction; }
49 : m_type(type)
53 TimingFunctionType m_type; member in class:WebCore::TimingFunction
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCAAnimation.h 75 AnimationType animationType() const { return m_type; }
142 AnimationType m_type; member in class:WebCore::PlatformCAAnimation
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEColorMatrix.cpp 40 , m_type(type)
52 return m_type;
57 if (m_type == type)
59 m_type = type;
177 switch (m_type) {
229 ts << " type=\"" << m_type << "\""; local
FEComposite.cpp 40 , m_type(type)
55 return m_type;
60 if (m_type == type)
62 m_type = type;
180 switch (m_type) {
210 if (m_type == FECOMPOSITE_OPERATOR_ARITHMETIC) {
231 switch (m_type) {
296 ts << " operation=\"" << m_type << "\""; local
297 if (m_type == FECOMPOSITE_OPERATOR_ARITHMETIC)
  /external/webkit/Source/WebCore/platform/network/
FormData.h 37 FormDataElement() : m_type(data) { }
38 explicit FormDataElement(const Vector<char>& array) : m_type(data), m_data(array) { }
41 FormDataElement(const String& filename, long long fileStart, long long fileLength, double expectedFileModificationTime, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_fileStart(fileStart), m_fileLength(fileLength), m_expectedFileModificationTime(expectedFileModificationTime), m_shouldGenerateFile(shouldGenerateFile) { }
42 explicit FormDataElement(const KURL& blobURL) : m_type(encodedBlob), m_blobURL(blobURL) { }
44 FormDataElement(const String& filename, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_shouldGenerateFile(shouldGenerateFile) { }
53 } m_type; member in class:WebCore::FormDataElement
71 if (a.m_type != b.m_type)
73 if (a.m_type == FormDataElement::data)
75 if (a.m_type == FormDataElement::encodedFile
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
ContentData.h 40 : m_type(CONTENT_NONE)
51 bool isCounter() const { return m_type == CONTENT_COUNTER; }
52 bool isImage() const { return m_type == CONTENT_OBJECT; }
53 bool isNone() const { return m_type == CONTENT_NONE; }
54 bool isQuote() const { return m_type == CONTENT_QUOTE; }
55 bool isText() const { return m_type == CONTENT_TEXT; }
57 StyleContentType type() const { return m_type; }
69 m_type = CONTENT_OBJECT;
81 m_type = CONTENT_TEXT;
93 m_type = CONTENT_COUNTER
115 StyleContentType m_type; member in struct:WebCore::ContentData
    [all...]
  /external/webkit/Source/WebKit/android/
TimeCounter.h 88 m_type(type), m_startTime(getThreadMsec()) {}
92 TimeCounter::sTotalTimeUsed[m_type] += time - m_startTime;
93 TimeCounter::sCounter[m_type]++;
96 TimeCounter::Type m_type; member in class:android::TimeCounterAuto
  /external/kernel-headers/original/linux/
msg.h 70 long m_type; member in struct:msg_msg
  /external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.h 50 : m_type(type)
56 SpeculationRecoveryType type() { return m_type; }
62 SpeculationRecoveryType m_type; member in class:JSC::DFG::SpeculationRecovery
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.h 50 : m_type(MetaProperty), m_property(p)
55 : m_type(DynamicProperty), m_dynamicProperty(b)
60 : m_type(ChildObject), m_childObject(child)
66 QtFieldType fieldType() const {return m_type;}
68 QtFieldType m_type; member in class:JSC::Bindings::QtField
112 QMetaType::Type m_type; member in class:JSC::Bindings::QtArray
  /external/webkit/Source/WebCore/dom/
Document.h 165 AtomicStringImpl* type() const { return m_type; }
178 AtomicStringImpl* m_type; member in class:WebCore::FormElementKey
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorValues.h 51 InspectorValue() : m_type(TypeNull) { }
68 Type type() const { return m_type; }
70 bool isNull() const { return m_type == TypeNull; }
91 explicit InspectorValue(Type type) : m_type(type) { }
94 Type m_type; member in class:WebCore::InspectorValue

Completed in 861 milliseconds

1 2 34 5 6