OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HttpVerb
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
httpcommon.h
62
enum
HttpVerb
{
129
const char* ToString(
HttpVerb
verb);
130
bool FromString(
HttpVerb
& verb, const std::string& str);
391
HttpVerb
verb;
httpcommon.cc
95
ENUM(
HttpVerb
, kHttpVerbs);
137
const char* ToString(
HttpVerb
verb) {
138
return Enum<
HttpVerb
>::Name(verb);
141
bool FromString(
HttpVerb
& verb, const std::string& str) {
142
return Enum<
HttpVerb
>::Parse(verb, str);
Completed in 573 milliseconds