Home
last modified time | relevance | path

Searched refs:accessor (Results 1 – 25 of 97) sorted by relevance

1234

/external/oauth/core/src/main/java/net/oauth/client/
DOAuthClient.java95 public void getRequestToken(OAuthAccessor accessor) throws IOException, in getRequestToken() argument
97 getRequestToken(accessor, null); in getRequestToken()
115 public void getRequestToken(OAuthAccessor accessor, String httpMethod) in getRequestToken() argument
117 getRequestToken(accessor, httpMethod, null); in getRequestToken()
137 public void getRequestToken(OAuthAccessor accessor, String httpMethod, in getRequestToken() argument
140 accessor.accessToken = null; in getRequestToken()
141 accessor.tokenSecret = null; in getRequestToken()
145 Object accessorSecret = accessor in getRequestToken()
157 OAuthMessage response = invoke(accessor, httpMethod, in getRequestToken()
158 accessor.consumer.serviceProvider.requestTokenURL, parameters); in getRequestToken()
[all …]
/external/clang/test/SemaObjC/
Dunused-backing-ivar-warning.m18 …pected-warning {{ivar '_x' which backs the property is not referenced in this property's accessor}}
21 …pected-warning {{ivar '_y' which backs the property is not referenced in this property's accessor}}
25 …pected-warning {{ivar '_v' which backs the property is not referenced in this property's accessor}}
38 …pected-warning {{ivar '_u' which backs the property is not referenced in this property's accessor}}
48 …ted-warning {{ivar 'tIvar' which backs the property is not referenced in this property's accessor}}
122 …xpected-warning {{ivar 'q' which backs the property is not referenced in this property's accessor}}
123 …xpected-warning {{ivar 'q' which backs the property is not referenced in this property's accessor}}
124 …xpected-warning {{ivar 'r' which backs the property is not referenced in this property's accessor}}
145 …ected-warning {{ivar '_p2' which backs the property is not referenced in this property's accessor}}
200 …-warning {{ivar '_cidURL1' which backs the property is not referenced in this property's accessor}}
Dproperty-typecheck-1.m5 @property int x; // expected-warning {{type of property 'x' does not match type of accessor 'x'}}
61 …lPeer; // expected-warning {{type of property 'syncSet' does not match type of accessor 'syncSet'}}
76 … pieces; // expected-warning {{type of property 'pieces' does not match type of accessor 'pieces'}}
93 ….pieces; // expected-warning {{type of property 'pieces' does not match type of accessor 'pieces'}}
Dproperty-impl-misuse.m40 @property int P; // expected-error {{type of property 'P' ('int') does not match type of accessor '…
43 @property int P1; // expected-warning {{type of property 'P1' does not match type of accessor 'P1'}…
46 @property int P2; // expected-error {{type of property 'P2' ('int') does not match type of accessor
/external/clang/test/Index/
Dannotate-comments-property-accessor.m16 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
22 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
23 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
32 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
33 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
42 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
52 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
53 …Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-…
/external/oauth/core/src/main/java/net/oauth/signature/
DOAuthSignatureMethod.java90 protected void initialize(String name, OAuthAccessor accessor) in initialize() argument
92 String secret = accessor.consumer.consumerSecret; in initialize()
97 Object accessorSecret = accessor.getProperty(key); in initialize()
99 accessorSecret = accessor.consumer.getProperty(key); in initialize()
207 OAuthAccessor accessor) throws IOException, OAuthException { in newSigner() argument
210 accessor); in newSigner()
211 signer.setTokenSecret(accessor.tokenSecret); in newSigner()
217 OAuthAccessor accessor) throws OAuthException { in newMethod() argument
223 method.initialize(name, accessor); in newMethod()
DRSA_SHA1.java93 protected void initialize(String name, OAuthAccessor accessor) in initialize() argument
95 super.initialize(name, accessor); in initialize()
97 Object privateKeyObject = accessor.consumer.getProperty(PRIVATE_KEY); in initialize()
114 Object publicKeyObject = accessor.consumer.getProperty(PUBLIC_KEY); in initialize()
129 Object certObject = accessor.consumer.getProperty(X509_CERTIFICATE); in initialize()
/external/oauth/core/src/main/java/net/oauth/
DOAuthMessage.java253 public void addRequiredParameters(OAuthAccessor accessor) in addRequiredParameters() argument
256 if (pMap.get(OAuth.OAUTH_TOKEN) == null && accessor.accessToken != null) { in addRequiredParameters()
257 addParameter(OAuth.OAUTH_TOKEN, accessor.accessToken); in addRequiredParameters()
259 final OAuthConsumer consumer = accessor.consumer; in addRequiredParameters()
280 this.sign(accessor); in addRequiredParameters()
288 public void sign(OAuthAccessor accessor) throws IOException, in sign() argument
290 OAuthSignatureMethod.newSigner(this, accessor).sign(this); in sign()
302 public void validateMessage(OAuthAccessor accessor, OAuthValidator validator) in validateMessage() argument
304 validator.validateMessage(this, accessor); in validateMessage()
DSimpleOAuthValidator.java65 public void validateMessage(OAuthMessage message, OAuthAccessor accessor) in validateMessage() argument
69 validateSignature(message, accessor); in validateMessage()
100 protected void validateSignature(OAuthMessage message, OAuthAccessor accessor) in validateSignature() argument
104 OAuthSignatureMethod.newSigner(message, accessor).validate(message); in validateSignature()
DOAuthValidator.java40 public void validateMessage(OAuthMessage message, OAuthAccessor accessor) in validateMessage() argument
/external/parameter-framework/upstream/test/functional-tests/include/
DFailureWrapper.hpp110 Value mayFailGet(bool (K::*accessor)(Value &, std::string &) const) const in mayFailGet()
113 wrapCall<bool>(*this, accessor, value); in mayFailGet()
119 void mayFailSet(bool (K::*accessor)(const Value &, std::string &), const Value &value) in mayFailSet()
121 wrapCall<bool>(*this, accessor, value); in mayFailSet()
/external/v8/src/
Dlookup.cc276 ElementsAccessor* accessor = object->GetElementsAccessor(); in Delete() local
277 accessor->Delete(object, number_); in Delete()
299 AccessorComponent component, Handle<Object> accessor, in TransitionToAccessorProperty() argument
301 DCHECK(!accessor->IsNull()); in TransitionToAccessorProperty()
310 handle(receiver->map(), isolate_), name_, component, accessor, in TransitionToAccessorProperty()
323 if (pair->get(component) == *accessor) { in TransitionToAccessorProperty()
327 pair->set(component, *accessor); in TransitionToAccessorProperty()
331 pair->set(component, *accessor); in TransitionToAccessorProperty()
430 ElementsAccessor* accessor = holder->GetElementsAccessor(); in FetchValue() local
431 return accessor->Get(handle(holder->elements()), number_); in FetchValue()
[all …]
Delements-kind.cc59 ElementsAccessor* accessor = ElementsAccessor::ForKind(kind); in ElementsKindToString() local
60 return accessor->name(); in ElementsKindToString()
DDEPS31 "+src/compiler/fast-accessor-assembler.h",
/external/v8/test/mjsunit/es6/
Dobject-literals-super.js19 get accessor() { getter
20 return super.accessor;
22 set accessor(v) { setter
23 super.accessor = v;
/external/v8/test/message/
Dclass-constructor-accessor.out4 *%(basename)s:9: SyntaxError: Class constructor may not be an accessor
7 SyntaxError: Class constructor may not be an accessor
/external/v8/src/runtime/
Druntime-proxy.cc58 ElementsAccessor* accessor = arg_array->GetElementsAccessor(); in RUNTIME_FUNCTION() local
63 accessor->Set(elements, i, args[i + 1]); in RUNTIME_FUNCTION()
119 ElementsAccessor* accessor = arg_array->GetElementsAccessor(); in RUNTIME_FUNCTION() local
124 accessor->Set(elements, i, args[i + 1]); in RUNTIME_FUNCTION()
/external/v8/test/mjsunit/
Dobject-freeze.js251 assertEquals(42, obj.accessor);
253 obj.accessor = 'ignored value';
282 assertEquals(42, obj.accessor);
284 obj.accessor = 'ignored value';
Dobject-seal.js333 assertEquals(42, obj.accessor);
335 obj.accessor = 'ignored value';
364 assertEquals(42, obj.accessor);
366 obj.accessor = 'ignored value';
Dmigrations.js152 accessor: { property
159 Object.defineProperty(o, "a", this.accessor);
/external/deqp/framework/referencerenderer/
Ddesign.txt43 + VertexID, InstanceID (pack into some accessor?)
87 + generic attribute accessor (2 or 3 vertices)
/external/opencv3/modules/java/generator/src/java/
Dandroid+CameraBridgeViewBase.java474 …protected Size calculateCameraFrameSize(List<?> supportedSizes, ListItemAccessor accessor, int sur… in calculateCameraFrameSize() argument
482 int width = accessor.getWidth(size); in calculateCameraFrameSize()
483 int height = accessor.getHeight(size); in calculateCameraFrameSize()
/external/v8/test/webkit/
Dclass-syntax-expression-expected.txt23 …ass { get constructor() {} } threw exception SyntaxError: Class constructor may not be an accessor.
24 …ass { set constructor() {} } threw exception SyntaxError: Class constructor may not be an accessor.
Dclass-syntax-declaration-expected.txt25 …s X { get constructor() {} } threw exception SyntaxError: Class constructor may not be an accessor.
26 …s X { set constructor() {} } threw exception SyntaxError: Class constructor may not be an accessor.
/external/libxml2/
Dglobal.data1 #type,name,array?,threadGlobalDefault accessor?

1234