Searched refs:InputType (Results 1 - 25 of 101) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DInputType.cpp29 #include "core/html/InputType.h"
87 typedef PassOwnPtr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement*);
120 PassOwnPtr<InputType> InputType::create(HTMLInputElement* element, const AtomicString& typeName)
123 PassOwnPtr<InputType> (*factory)(HTMLInputElement*) = typeName.isEmpty() ? 0 : factoryMap->get(typeName);
129 PassOwnPtr<InputType> InputType::createText(HTMLInputElement* element)
134 InputType::~InputType()
138 bool InputType
[all...]
H A DBaseClickableWithKeyInputType.h34 #include "core/html/InputType.h"
39 class BaseClickableWithKeyInputType : public InputType {
43 static void handleKeyupEvent(InputType&, KeyboardEvent*);
47 BaseClickableWithKeyInputType(HTMLInputElement* element) : InputType(element) { }
H A DButtonInputType.cpp39 PassOwnPtr<InputType> ButtonInputType::create(HTMLInputElement* element)
H A DHiddenInputType.h34 #include "core/html/InputType.h"
38 class HiddenInputType : public InputType {
40 static PassOwnPtr<InputType> create(HTMLInputElement*);
43 HiddenInputType(HTMLInputElement* element) : InputType(element) { }
H A DBaseCheckableInputType.h34 #include "core/html/InputType.h"
39 class BaseCheckableInputType : public InputType {
41 BaseCheckableInputType(HTMLInputElement* element) : InputType(element) { }
H A DButtonInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DTelephoneInputType.cpp39 PassOwnPtr<InputType> TelephoneInputType::create(HTMLInputElement* element)
H A DTelephoneInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DTextInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DHiddenInputType.cpp46 PassOwnPtr<InputType> HiddenInputType::create(HTMLInputElement* element)
111 return InputType::appendFormData(encoding, isMultipartForm);
H A DResetInputType.cpp44 PassOwnPtr<InputType> ResetInputType::create(HTMLInputElement* element)
H A DResetInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DURLInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DCheckboxInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DSubmitInputType.h40 static PassOwnPtr<InputType> create(HTMLInputElement*);
H A DTextInputType.cpp42 PassOwnPtr<InputType> TextInputType::create(HTMLInputElement* element)
H A DURLInputType.cpp41 PassOwnPtr<InputType> URLInputType::create(HTMLInputElement* element)
H A DBaseClickableWithKeyInputType.cpp66 void BaseClickableWithKeyInputType::handleKeyupEvent(InputType& inputType, KeyboardEvent* event)
98 InputType::accessKeyAction(sendMouseEvents);
H A DBaseDateAndTimeInputType.h34 #include "core/html/InputType.h"
42 class BaseDateAndTimeInputType : public InputType {
44 BaseDateAndTimeInputType(HTMLInputElement* element) : InputType(element) { }
H A DInputType.h74 // An InputType object represents the type-specific part of an HTMLInputElement.
75 // Do not expose instances of InputType and classes derived from it to classes
77 class InputType { class in namespace:WebCore
78 WTF_MAKE_NONCOPYABLE(InputType);
82 static PassOwnPtr<InputType> create(HTMLInputElement*, const AtomicString&);
83 static PassOwnPtr<InputType> createText(HTMLInputElement*);
84 virtual ~InputType();
86 static bool themeSupportsDataListUI(InputType*);
275 // Parses the specified string for this InputType, and returns true if it
300 InputType(HTMLInputElemen function in class:WebCore::InputType
[all...]
H A DBaseCheckableInputType.cpp89 InputType::accessKeyAction(sendMouseEvents);
/external/chromium_org/ash/wm/workspace/
H A Dsnap_sizer.h32 enum InputType { enum in class:ash::internal::SnapSizer
43 InputType input_type);
118 const InputType input_type_;
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h41 typedef typename Functor::InputType InputType; typedef in class:Eigen::NumericalDiff
64 int df(const InputType& _x, JacobianType &jac) const
69 const typename InputType::Index n = _x.size();
72 InputType x = _x;
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
H A Dvertexconversion.h152 typedef InT InputType; typedef in struct:rx::VertexDataConverter
157 static void convertArray(const InputType *in, std::size_t stride, std::size_t n, OutputType *out)
161 const InputType *ein = pointerAddBytes(in, i * stride);
174 return convertArray(static_cast<const InputType*>(in), stride, n, static_cast<OutputType*>(out));
185 static void copyComponent(OutputType *out, const InputType *in, std::size_t elementindex, OutputType defaultvalue)
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffJacobian.h35 typedef typename Functor::InputType InputType; typedef in class:Eigen::AutoDiffJacobian
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const

Completed in 236 milliseconds

12345