Home
last modified time | relevance | path

Searched refs:isPost (Results 1 – 4 of 4) sorted by relevance

/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
DHttpClient4.java65 final boolean isPost = POST.equalsIgnoreCase(method); in execute()
69 if (isPost || isPut) { in execute()
71 isPost ? new HttpPost(url) : new HttpPut(url); in execute()
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthClient.java266 final boolean isPost = POST.equalsIgnoreCase(request.method); in invoke()
268 if (style == ParameterStyle.BODY && !(isPost && body == null)) { in invoke()
300 if (isPost && body == null) { in invoke()
/external/skia/src/animator/
DSkPostParts.cpp56 if (displayable->isPost() == false) in setParent()
DSkDisplayable.h90 bool isPost() const { return getType() == SkType_Post; } in isPost() function