Searched refs:GetMethod (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/swig-12/Lib/typemaps/
H A Dattribute.swg144 %define %attribute_custom(Class, AttributeType, AttributeName, GetMethod, SetMethod, GetMethodCall, SetMethodCall)
145 %ignore Class::GetMethod();
146 %ignore Class::GetMethod() const;
173 %define %attribute_readonly(Class, AttributeType, AttributeName, GetMethod, GetMethodCall)
174 %ignore Class::GetMethod();
175 %ignore Class::GetMethod() const;
199 %define %attribute(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
201 %attribute_custom(Class, AttributeType, AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_))
203 %attribute_readonly(Class, AttributeType, AttributeName, GetMethod, self
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/
H A DFormSubmission.h49 enum Method { GetMethod, PostMethod }; enumerator in enum:WebCore::FormSubmission::Method
55 : m_method(GetMethod)
H A DFormSubmission.cpp108 return equalIgnoringCase(type, "post") ? FormSubmission::PostMethod : FormSubmission::GetMethod;
210 formData = FormData::create(*(static_cast<FormDataList*>(domFormData.get())), domFormData->encoding(), attributes.method() == GetMethod ? FormData::FormURLEncoded : FormData::parseEncodingType(encodingType));
H A DFrameLoader.cpp361 ASSERT(submission->method() == FormSubmission::PostMethod || submission->method() == FormSubmission::GetMethod);

Completed in 202 milliseconds