HomeSort by relevance Sort by last modified time
    Searched refs:m_type (Results 26 - 50 of 310) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/deqp/framework/randomshaders/
rsgVariableType.hpp 67 : m_type(DE_NULL)
73 : m_type(new VariableType(type))
80 delete m_type;
84 : m_type(DE_NULL)
87 if (other.m_type)
88 m_type = new VariableType(*other.m_type);
96 delete m_type;
98 m_type = DE_NULL;
101 if (other.m_type)
127 VariableType* m_type; member in class:rsg::VariableType::Member
    [all...]
rsgToken.hpp 137 inline bool operator== (Type type) const { return m_type == type; }
138 inline bool operator!= (Type type) const { return m_type != type; }
145 inline Type getType (void) const { return m_type; }
153 Type m_type; member in class:rsg::Token
165 : m_type(TYPE_LAST)
171 : m_type(type)
177 : m_type(FLOAT_LITERAL)
183 : m_type(INT_LITERAL)
189 : m_type(BOOL_LITERAL)
201 DE_ASSERT(m_type == IDENTIFIER)
    [all...]
rsgVariableValue.hpp 77 StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {}
79 const VariableType& getType (void) const { return m_type; }
83 const VariableType& m_type; member in class:rsg::StridedValueRead
91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {}
92 ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_value(const_cast<Scalar*>(valuePtr)) {}
94 const VariableType& getType (void) const { return *m_type; }
118 const VariableType* m_type; member in class:rsg::ConstStridedValueAccess
200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {}
201 ConstValueRangeAccess (const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(const_cast<Scalar*>(minVal)), m_max(const_cast<Scalar*>(maxVal)) {}
203 const VariableType& getType (void) const { return *m_type; }
218 const VariableType* m_type; member in class:rsg::ConstValueRangeAccess
304 VariableType m_type; member in class:rsg::ValueRange
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.cpp 42 if (m_type == InvalidType)
45 if (m_type == ArrayType) {
69 if (m_type != other->m_type)
70 return m_type > other->m_type ? -1 : 1;
72 switch (m_type) {
IDBKey.h 109 Type type() const { return m_type; }
114 ASSERT(m_type == ArrayType);
120 ASSERT(m_type == BinaryType);
126 ASSERT(m_type == StringType);
132 ASSERT(m_type == DateType);
138 ASSERT(m_type == NumberType);
147 IDBKey() : m_type(InvalidType), m_number(0) { }
148 IDBKey(Type type, double number) : m_type(type), m_number(number) { }
149 explicit IDBKey(const String& value) : m_type(StringType), m_string(value), m_number(0) { }
150 explicit IDBKey(PassRefPtr<SharedBuffer> value) : m_type(BinaryType), m_binary(value), m_number(0) {
153 const Type m_type; member in class:blink::IDBKey
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
ContextMenuItem.cpp 34 : m_type(type)
45 : m_type(type)
54 : m_type(SubmenuType)
70 m_type = SubmenuType;
73 m_type = ActionType;
80 m_type = type;
85 return m_type;
PlatformGestureEvent.h 71 ASSERT(m_type == PlatformEvent::GestureScrollUpdate
72 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation);
78 ASSERT(m_type == PlatformEvent::GestureScrollUpdate
79 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation);
85 ASSERT(m_type == PlatformEvent::GestureTap);
91 ASSERT(m_type == PlatformEvent::GestureScrollUpdate
92 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation);
98 ASSERT(m_type == PlatformEvent::GestureScrollUpdate
99 || m_type == PlatformEvent::GestureScrollUpdateWithoutPropagation);
105 ASSERT(m_type == PlatformEvent::GesturePinchUpdate)
    [all...]
PlatformEvent.h 83 Type type() const { return static_cast<Type>(m_type); }
96 : m_type(NoType)
103 : m_type(type)
110 : m_type(type)
117 : m_type(type)
137 unsigned m_type; member in class:blink::PlatformEvent
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.h 68 bool equals(const CSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
70 TransformOperationType operationType() const { return m_type; }
80 TransformOperationType m_type; member in class:blink::CSSTransformValue
CSSFilterValue.cpp 35 , m_type(operationType)
42 switch (m_type) {
87 , m_type(cloneFrom.m_type)
98 return m_type == other.m_type && CSSValueList::equals(other);
  /external/lldb/include/lldb/Symbol/
UnwindPlan.h 63 m_type(unspecified),
80 m_type = unspecified;
86 m_type = undefined;
92 m_type = same;
98 return m_type == same;
104 return m_type == unspecified;
110 return m_type == isCFAPlusOffset;
116 return m_type == atCFAPlusOffset;
122 return m_type == inOtherRegister;
128 return m_type == atDWARFExpression;
225 RestoreType m_type; \/\/ How do we locate this register? member in class:lldb_private::UnwindPlan::Row::RegisterLocation
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLShader.h 43 GLenum type() const { return m_type; }
55 GLenum m_type; member in class:blink::FINAL
WebGLActiveInfo.h 45 GLenum type() const { return m_type; }
53 , m_type(type)
61 GLenum m_type; member in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationAction.h 49 NavigationType type() const { return m_type; }
56 NavigationType m_type; member in class:blink::NavigationAction
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
GridTrackSize.h 46 : m_type(LengthTrackSizing)
58 : m_type(MinMaxTrackSizing)
71 ASSERT(m_type == LengthTrackSizing);
95 GridTrackSizeType type() const { return m_type; }
99 bool isPercentage() const { return m_type == LengthTrackSizing && length().isLength() && length().length().isPercent(); }
103 return m_type == other.m_type && m_minTrackBreadth == other.m_minTrackBreadth && m_maxTrackBreadth == other.m_maxTrackBreadth;
120 GridTrackSizeType m_type; member in class:blink::GridTrackSize
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.h 42 FormControlState() : m_type(TypeSkip) { }
43 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); }
45 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { }
48 bool isFailure() const { return m_type == TypeFailure; }
56 explicit FormControlState(Type type) : m_type(type) { }
58 Type m_type; member in class:blink::FormControlState
64 m_type = another.m_type;
71 m_type = TypeRestore
    [all...]
  /external/lldb/include/lldb/Core/
Opcode.h 42 Opcode () : m_type (eTypeInvalid)
46 Opcode (uint8_t inst) : m_type (eType8)
51 Opcode (uint16_t inst) : m_type (eType16)
56 Opcode (uint32_t inst) : m_type (eType32)
61 Opcode (uint64_t inst) : m_type (eType64)
74 m_type = Opcode::eTypeInvalid;
79 return m_type;
85 switch (m_type)
102 switch (m_type)
118 switch (m_type)
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobInfo.h 24 , m_type(type)
32 , m_type(type)
42 , m_type(type)
59 return m_type;
81 WebString m_type; // MIME type member in class:blink::WebBlobInfo
  /external/lldb/include/lldb/Target/
CPPLanguageRuntime.h 46 m_type (eTypeInvalid),
58 m_type (eTypeInvalid),
72 if (m_type == eTypeInvalid)
80 return m_type;
110 Type m_type; member in class:lldb_private::CPPLanguageRuntime::MethodName
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLButtonElement.cpp 44 , m_type(SUBMIT)
66 switch (m_type) {
100 m_type = RESET;
102 m_type = BUTTON;
104 m_type = SUBMIT;
113 if (form() && m_type == SUBMIT) {
119 if (form() && m_type == RESET) {
156 if (!isDisabledFormControl() && form() && (m_type == SUBMIT || m_type == RESET))
163 return m_type == SUBMIT
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGProperty.h 71 return m_type;
94 : m_type(type)
100 const AnimatedPropertyType m_type; member in class:blink::SVGPropertyBase
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
LightSource.h 63 : m_type(type)
68 LightType type() const { return m_type; }
86 LightType m_type; member in class:blink::LightSource
  /external/chromium_org/third_party/WebKit/Source/platform/network/
FormData.h 36 FormDataElement() : m_type(data) { }
37 explicit FormDataElement(const Vector<char>& array) : m_type(data), m_data(array) { }
39 FormDataElement(const String& filename, long long fileStart, long long fileLength, double expectedFileModificationTime) : m_type(encodedFile), m_filename(filename), m_fileStart(fileStart), m_fileLength(fileLength), m_expectedFileModificationTime(expectedFileModificationTime) { }
40 explicit FormDataElement(const String& blobUUID, PassRefPtr<BlobDataHandle> optionalHandle) : m_type(encodedBlob), m_blobUUID(blobUUID), m_optionalBlobDataHandle(optionalHandle) { }
41 FormDataElement(const KURL& fileSystemURL, long long start, long long length, double expectedFileModificationTime) : m_type(encodedFileSystemURL), m_fileSystemURL(fileSystemURL), m_fileStart(start), m_fileLength(length), m_expectedFileModificationTime(expectedFileModificationTime) { }
48 } m_type; member in class:blink::FormDataElement
64 if (a.m_type != b.m_type)
66 if (a.m_type == FormDataElement::data)
68 if (a.m_type == FormDataElement::encodedFile
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
SkewTransformOperation.h 44 virtual OperationType type() const OVERRIDE { return m_type; }
64 , m_type(type)
70 OperationType m_type; member in class:blink::SkewTransformOperation
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinitionUtil.hpp 45 VariablePathComponent (void) :m_type(TYPE_LAST) { }
46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; }
47 VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.block = block; }
48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
50 VariablePathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { }
51 VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type; m_data = other.m_data; return *this; }
53 bool isVariableType (void) const { return m_type == TYPE_TYPE; }
54 bool isInterfaceBlock (void) const { return m_type == TYPE_INTERFACEBLOCK;
80 Type m_type; member in class:deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
    [all...]

Completed in 4839 milliseconds

12 3 4 5 6 7 8 91011>>