Home
last modified time | relevance | path

Searched refs:InputType (Results 1 – 25 of 108) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DInputType.cpp76 typedef PassRefPtr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement&);
115 PassRefPtr<InputType> InputType::create(HTMLInputElement& element, const AtomicString& typeName) in create()
123 PassRefPtr<InputType> InputType::createText(HTMLInputElement& element) in createText()
128 const AtomicString& InputType::normalizeTypeName(const AtomicString& typeName) in normalizeTypeName()
136 bool InputType::canChangeFromAnotherType(const AtomicString& normalizedTypeName) in canChangeFromAnotherType()
146 InputType::~InputType() in ~InputType()
150 bool InputType::themeSupportsDataListUI(InputType* type) in themeSupportsDataListUI()
155 bool InputType::isTextField() const in isTextField()
160 bool InputType::isTextType() const in isTextType()
165 bool InputType::isRangeControl() const in isRangeControl()
[all …]
DInputType.h56 class InputType : public InputTypeView {
57 WTF_MAKE_NONCOPYABLE(InputType);
61 static PassRefPtr<InputType> create(HTMLInputElement&, const AtomicString&);
62 static PassRefPtr<InputType> createText(HTMLInputElement&);
64 virtual ~InputType();
67 static bool themeSupportsDataListUI(InputType*);
234 InputType(HTMLInputElement& element) : InputTypeView(element) { } in InputType() function
DBaseClickableWithKeyInputType.h39 class BaseClickableWithKeyInputType : public InputType {
43 static void handleKeyupEvent(InputType&, KeyboardEvent*);
47 BaseClickableWithKeyInputType(HTMLInputElement& element) : InputType(element) { } in BaseClickableWithKeyInputType()
DHiddenInputType.h38 class HiddenInputType : public InputType {
40 static PassRefPtr<InputType> create(HTMLInputElement&);
43 HiddenInputType(HTMLInputElement& element) : InputType(element) { } in HiddenInputType()
DTextFieldInputType.cpp112 : InputType(element) in TextFieldInputType()
164 InputType::setValue(sanitizedValue, valueChanged, DispatchNoEvent); in setValue()
258 InputType::handleFocusEvent(oldFocusedNode, focusDirection); in handleFocusEvent()
264 InputType::handleBlurEvent(); in handleBlurEvent()
270 …erface(EventNames::TextEvent) && toTextEvent(event)->data() == "\n") || InputType::shouldSubmitImp… in shouldSubmitImplicitly()
340 InputType::destroyShadowSubtree(); in destroyShadowSubtree()
469 return InputType::themeSupportsDataListUI(this); in shouldRespectListAttribute()
498 InputType::appendFormData(list, multipart); in appendFormData()
DBaseCheckableInputType.h39 class BaseCheckableInputType : public InputType {
41 BaseCheckableInputType(HTMLInputElement& element) : InputType(element) { } in BaseCheckableInputType()
DHiddenInputType.cpp46 PassRefPtr<InputType> HiddenInputType::create(HTMLInputElement& element) in create()
111 return InputType::appendFormData(encoding, isMultipartForm); in appendFormData()
DBaseClickableWithKeyInputType.cpp66 void BaseClickableWithKeyInputType::handleKeyupEvent(InputType& inputType, KeyboardEvent* event) in handleKeyupEvent()
98 InputType::accessKeyAction(sendMouseEvents); in accessKeyAction()
DDateTimeLocalInputType.cpp53 PassRefPtr<InputType> DateTimeLocalInputType::create(HTMLInputElement& element) in create()
77 InputType::setValueAsDate(value, exceptionState); in setValueAsDate()
84 …return InputType::createStepRange(anyStepHandling, 0, Decimal::fromDouble(DateComponents::minimumD… in createStepRange()
DNumberInputType.cpp97 PassRefPtr<InputType> NumberInputType::create(HTMLInputElement& element) in create()
163 …return InputType::createStepRange(anyStepHandling, numberDefaultStepBase, -floatMax, floatMax, ste… in createStepRange()
291 InputType::minOrMaxAttributeChanged(); in minOrMaxAttributeChanged()
299 InputType::stepAttributeChanged(); in stepAttributeChanged()
DColorInputType.cpp75 PassRefPtr<InputType> ColorInputType::create(HTMLInputElement& element) in create()
140 InputType::setValue(value, valueChanged, eventBehavior); in setValue()
172 return InputType::themeSupportsDataListUI(this); in shouldRespectListAttribute()
DBaseDateAndTimeInputType.h42 class BaseDateAndTimeInputType : public InputType {
44 BaseDateAndTimeInputType(HTMLInputElement& element) : InputType(element) { } in BaseDateAndTimeInputType()
DRangeInputType.cpp77 PassRefPtr<InputType> RangeInputType::create(HTMLInputElement& element) in create()
83 : InputType(element) in RangeInputType()
277 InputType::accessKeyAction(sendMouseEvents); in accessKeyAction()
292 InputType::setValue(value, valueChanged, eventBehavior); in setValue()
320 return InputType::themeSupportsDataListUI(this); in shouldRespectListAttribute()
DRangeInputType.h41 class RangeInputType : public InputType {
43 static PassRefPtr<InputType> create(HTMLInputElement&);
DWeekInputType.cpp51 PassRefPtr<InputType> WeekInputType::create(HTMLInputElement& element) in create()
70 …return InputType::createStepRange(anyStepHandling, weekDefaultStepBase, Decimal::fromDouble(DateCo… in createStepRange()
/external/eigen/unsupported/Eigen/src/NumericalDiff/
DNumericalDiff.h41 typedef typename Functor::InputType InputType; typedef
64 int df(const InputType& _x, JacobianType &jac) const in df()
69 const typename InputType::Index n = _x.size(); in df()
72 InputType x = _x; in df()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Dvertexconversion.h152 typedef InT InputType;
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, OutputTy…
/external/chromium_org/ash/wm/workspace/
Dsnap_sizer.h32 enum InputType { enum
43 InputType input_type);
128 const InputType input_type_;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DAdapterInputConnection.java8 import android.text.InputType;
71 outAttrs.inputType = InputType.TYPE_CLASS_TEXT in AdapterInputConnection()
72 | InputType.TYPE_TEXT_VARIATION_WEB_PASSWORD; in AdapterInputConnection()
79 outAttrs.inputType = InputType.TYPE_CLASS_TEXT in AdapterInputConnection()
80 | InputType.TYPE_TEXT_VARIATION_URI; in AdapterInputConnection()
84 outAttrs.inputType = InputType.TYPE_CLASS_TEXT in AdapterInputConnection()
85 | InputType.TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS; in AdapterInputConnection()
91 outAttrs.inputType = InputType.TYPE_CLASS_PHONE; in AdapterInputConnection()
95 outAttrs.inputType = InputType.TYPE_CLASS_NUMBER in AdapterInputConnection()
96 | InputType.TYPE_NUMBER_VARIATION_NORMAL; in AdapterInputConnection()
/external/eigen/unsupported/test/
Dforward_adolc.cpp33 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; typedef
65 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const in operator ()()
103 typename Func::InputType x = Func::InputType::Random(f.inputs()); in adolc_forward_jacobian()
Dautodiff.cpp39 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; typedef
71 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const in operator ()()
109 typename Func::InputType x = Func::InputType::Random(f.inputs()); in forward_jacobian()
/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffJacobian.h35 typedef typename Functor::InputType InputType; typedef
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const in operator()
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
DOGLESContext.java39 import android.text.InputType;
488 editTextDialogInput.setInputType(InputType.TYPE_CLASS_TEXT); in requestDialog()
493 …editTextDialogInput.setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL … in requestDialog()
498 editTextDialogInput.setInputType(InputType.TYPE_CLASS_PHONE); in requestDialog()
/external/eigen/unsupported/Eigen/
DAdolcForward114 typedef typename Functor::InputType InputType;
118 typedef Matrix<ActiveScalar, InputType::SizeAtCompileTime, 1> ActiveInput;
121 void operator() (const InputType& x, ValueType* v, JacobianType* _jac) const
/external/clang/lib/Driver/
DToolChain.cpp241 types::ID InputType) const { in ComputeLLVMTriple()
261 if (InputType != types::TY_PP_Asm && in ComputeLLVMTriple()
272 types::ID InputType) const { in ComputeEffectiveClangTriple()
280 return ComputeLLVMTriple(Args, InputType); in ComputeEffectiveClangTriple()

12345