Searched refs:identifier (Results 101 - 125 of 551) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/runtime/
H A DPropertyNameArray.h71 void add(const Identifier& identifier) { add(identifier.impl()); } argument
73 void addKnownUnique(StringImpl* identifier) { m_data->propertyNameVector().append(Identifier(m_globalData, identifier)); } argument
/external/webkit/Source/WebCore/storage/
H A DIDBKeyPath.h46 String identifier; member in struct:WebCore::IDBKeyPathElement
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebResourceLoadDelegatePrivate.idl61 HRESULT shouldUseCredentialStorage([in] IWebView* webView, [in] unsigned long identifier, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldUse);
63 HRESULT shouldCacheResponse([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLResponse* response, [in] const char* data, [in] unsigned long long length, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldCache);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKSecurityOrigin.h37 WK_EXPORT WKSecurityOriginRef WKSecurityOriginCreateFromIdentifier(WKStringRef identifier);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
H A DWindowedPluginTest.h33 WindowedPluginTest(NPP, const std::string& identifier);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_common.h18 u8 code, u8 identifier);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_common.h18 u8 code, u8 identifier);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_common.h18 u8 code, u8 identifier);
/external/javassist/src/main/javassist/tools/reflect/
H A DClassMetaobject.java198 * <code>methodPrefix "_m_"</code> and the identifier.
202 static public Object invoke(Object target, int identifier, Object[] args) argument
207 String head = methodPrefix + identifier;
230 public Object trapMethodcall(int identifier, Object[] args) argument
235 return m[identifier].invoke(null, args);
287 * the method specified by <code>identifier</code>.
292 * @param identifier the identifier index
297 public final Method getMethod(int identifier) { argument
298 return getReflectiveMethods()[identifier];
305 getMethodName(int identifier) argument
322 getParameterTypes(int identifier) argument
330 getReturnType(int identifier) argument
[all...]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DWindowRegionIsSetToClipRect.cpp36 WindowRegionIsSetToClipRect(NPP, const string& identifier);
46 WindowRegionIsSetToClipRect::WindowRegionIsSetToClipRect(NPP npp, const string& identifier) argument
47 : PluginTest(npp, identifier)
H A DWindowlessPaintRectCoordinates.cpp37 WindowlessPaintRectCoordinates(NPP, const string& identifier);
46 WindowlessPaintRectCoordinates::WindowlessPaintRectCoordinates(NPP npp, const string& identifier) argument
47 : PluginTest(npp, identifier)
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.h66 static void didInitiateLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, bool pageLoadIsProvisional, const void*);
67 static WKURLRequestRef willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, WKURLResponseRef, const void*);
68 static void didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef, const void*);
69 static void didReceiveContentLengthForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, uint64_t length, const void*);
70 static void didFinishLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, const void*);
71 static void didFailLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKErrorRef, const void*);
90 void didInitiateLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, bool pageLoadIsProvisional);
91 WKURLRequestRef willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, WKURLResponseRef);
92 void didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef);
93 void didReceiveContentLengthForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, uint64_
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DResourceLoadDelegate.mm127 -(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
130 NSString *string = [NSString stringWithFormat:@"%@ - willSendRequest %@ redirectResponse %@", identifier, [request _drt_descriptionSuitableForTestResult],
175 - (void)webView:(WebView *)wv resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
178 NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet", identifier];
191 NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Responding with %@:%@", identifier, nsUser, nsPassword];
198 - (void)webView:(WebView *)wv resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
202 -(void)webView: (WebView *)wv resource:identifier didReceiveResponse: (NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource
205 NSString *string = [NSString stringWithFormat:@"%@ - didReceiveResponse %@", identifier, [response _drt_descriptionSuitableForTestResult]];
212 -(void)webView: (WebView *)wv resource:identifier didReceiveContentLength: (NSInteger)length fromDataSource:(WebDataSource *)dataSource
216 -(void)webView: (WebView *)wv resource:identifier didFinishLoadingFromDataSourc
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_input_api.cc39 "key identifier.";
88 std::string identifier; local
89 EXTENSION_FUNCTION_VALIDATE(args->GetString(kKeyIdentifier, &identifier));
90 TrimWhitespaceASCII(identifier, TRIM_ALL, &identifier);
93 KeyEventFromKeyIdentifier(identifier);
/external/webkit/Source/WebCore/css/
H A DCSSOMUtils.cpp61 void serializeIdentifier(const String& identifier, String& appendTo) argument
64 serializeIdentifier(identifier, addend);
68 void serializeIdentifier(const String& identifier, Vector<UChar>& appendTo) argument
74 while (index < identifier.length()) {
75 UChar32 c = identifier.characterStartingAt(index);
/external/webkit/Source/WebKit/chromium/src/
H A DWebBindings.cpp71 bool WebBindings::enumerate(NPP npp, NPObject* object, NPIdentifier** identifier, uint32_t* identifierCount) argument
73 return _NPN_Enumerate(npp, object, identifier, identifierCount);
116 bool WebBindings::identifierIsString(NPIdentifier identifier) argument
118 return _NPN_IdentifierIsString(identifier);
121 int32_t WebBindings::intFromIdentifier(NPIdentifier identifier) argument
123 return _NPN_IntFromIdentifier(identifier);
155 bool WebBindings::removeProperty(NPP npp, NPObject* object, NPIdentifier identifier) argument
157 return _NPN_RemoveProperty(npp, object, identifier);
170 bool WebBindings::setProperty(NPP npp, NPObject* object, NPIdentifier identifier, const NPVariant* value) argument
172 return _NPN_SetProperty(npp, object, identifier, valu
182 utf8FromIdentifier(NPIdentifier identifier) argument
187 extractIdentifierData(const NPIdentifier& identifier, const NPUTF8*& string, int32_t& number, bool& isString) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorInstrumentation.cpp397 void InspectorInstrumentation::willSendRequestImpl(InspectorAgent* inspectorAgent, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
400 timelineAgent->willSendResourceRequest(identifier, request);
402 resourceAgent->willSendRequest(identifier, loader, request, redirectResponse);
405 void InspectorInstrumentation::markResourceAsCachedImpl(InspectorAgent* inspectorAgent, unsigned long identifier) argument
408 resourceAgent->markResourceAsCached(identifier);
419 InspectorInstrumentationCookie InspectorInstrumentation::willReceiveResourceDataImpl(InspectorAgent* inspectorAgent, unsigned long identifier) argument
424 timelineAgent->willReceiveResourceData(identifier);
436 InspectorInstrumentationCookie InspectorInstrumentation::willReceiveResourceResponseImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const ResourceResponse& response) argument
441 timelineAgent->willReceiveResourceResponse(identifier, response);
447 void InspectorInstrumentation::didReceiveResourceResponseImpl(const InspectorInstrumentationCookie& cookie, unsigned long identifier, DocumentLoade argument
460 didReceiveResourceResponseButCanceledImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
466 continueAfterXFrameOptionsDeniedImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
471 continueWithPolicyDownloadImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
476 continueWithPolicyIgnoreImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
481 didReceiveContentLengthImpl(InspectorAgent* inspectorAgent, unsigned long identifier, int dataLength, int encodedDataLength) argument
487 didFinishLoadingImpl(InspectorAgent* inspectorAgent, unsigned long identifier, double finishTime) argument
495 didFailLoadingImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const ResourceError& error) argument
504 resourceRetrievedByXMLHttpRequestImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber) argument
511 scriptImportedImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const String& sourceString) argument
725 didCreateWebSocketImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const KURL& requestURL, const KURL&) argument
733 willSendWebSocketHandshakeRequestImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const WebSocketHandshakeRequest& request) argument
739 didReceiveWebSocketHandshakeResponseImpl(InspectorAgent* inspectorAgent, unsigned long identifier, const WebSocketHandshakeResponse& response) argument
745 didCloseWebSocketImpl(InspectorAgent* inspectorAgent, unsigned long identifier) argument
[all...]
H A DInspectorResourceAgent.cpp309 void InspectorResourceAgent::willSendRequest(unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
331 m_frontend->requestWillBeSent(static_cast<int>(identifier), pointerAsId(loader->frame()), pointerAsId(loader), loader->url().string(), buildObjectForResourceRequest(request), currentTime(), callStackValue, buildObjectForResourceResponse(redirectResponse));
334 void InspectorResourceAgent::markResourceAsCached(unsigned long identifier) argument
336 m_frontend->resourceMarkedAsCached(static_cast<int>(identifier));
339 void InspectorResourceAgent::didReceiveResponse(unsigned long identifier, DocumentLoader* loader, const ResourceResponse& response) argument
359 m_frontend->responseReceived(static_cast<int>(identifier), currentTime(), type, resourceResponse);
363 didReceiveContentLength(identifier, cachedResourceSize, 0);
366 void InspectorResourceAgent::didReceiveContentLength(unsigned long identifier, int dataLength, int encodedDataLength) argument
368 m_frontend->dataReceived(static_cast<int>(identifier), currentTime(), dataLength, encodedDataLength);
371 void InspectorResourceAgent::didFinishLoading(unsigned long identifier, doubl argument
379 didFailLoading(unsigned long identifier, const ResourceError& error) argument
389 setInitialScriptContent(unsigned long identifier, const String& sourceString) argument
394 setInitialXHRContent(unsigned long identifier, const String& sourceString) argument
482 didCreateWebSocket(unsigned long identifier, const KURL& requestURL) argument
487 willSendWebSocketHandshakeRequest(unsigned long identifier, const WebSocketHandshakeRequest& request) argument
495 didReceiveWebSocketHandshakeResponse(unsigned long identifier, const WebSocketHandshakeResponse& response) argument
505 didCloseWebSocket(unsigned long identifier) argument
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.h67 virtual void assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader*, const ResourceRequest&);
69 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse);
70 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
71 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
72 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
73 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&);
74 virtual void dispatchDidReceiveContentLength(DocumentLoader*, unsigned long identifier, int lengthReceived);
75 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier);
76 virtual void dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, const ResourceError&);
189 virtual void transferLoadingResourceFromPage(unsigned long identifier, DocumentLoade
[all...]
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DFrameLoaderClientEfl.h75 virtual void assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader*, const ResourceRequest&);
77 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse);
78 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
79 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
89 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
90 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&);
91 virtual void dispatchDidReceiveContentLength(DocumentLoader*, unsigned long identifier, int dataLength);
92 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier);
93 virtual void dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, const ResourceError&);
95 virtual void dispatchDidLoadResourceByXMLHttpRequest(unsigned long identifier, cons
[all...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.h49 virtual void assignIdentifierToInitialRequest(unsigned long identifier, WebCore::DocumentLoader*, const WebCore::ResourceRequest&);
51 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirectResponse);
52 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned long identifier);
53 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
54 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
55 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ResourceResponse&);
56 virtual void dispatchDidReceiveContentLength(WebCore::DocumentLoader*, unsigned long identifier, int dataLength);
57 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned long identifier);
58 virtual void dispatchDidFailLoading(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ResourceError&);
59 virtual bool shouldCacheResponse(WebCore::DocumentLoader*, unsigned long identifier, cons
[all...]
/external/webkit/Source/WebCore/loader/
H A DFrameLoaderClient.h116 virtual void assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader*, const ResourceRequest&) = 0;
118 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse) = 0;
119 virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier) = 0;
120 virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&) = 0;
121 virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&) = 0;
123 virtual bool canAuthenticateAgainstProtectionSpace(DocumentLoader*, unsigned long identifier, const ProtectionSpace&) = 0;
125 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&) = 0;
126 virtual void dispatchDidReceiveContentLength(DocumentLoader*, unsigned long identifier, int dataLength) = 0;
127 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier) = 0;
128 virtual void dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, cons
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.h60 virtual void assignIdentifierToInitialRequest(unsigned long identifier, WebCore::DocumentLoader*, const WebCore::ResourceRequest&);
62 virtual void dispatchWillSendRequest(WebCore::DocumentLoader*, unsigned long identifier, WebCore::ResourceRequest&, const WebCore::ResourceResponse& redirectResponse);
63 virtual bool shouldUseCredentialStorage(WebCore::DocumentLoader*, unsigned long identifier);
64 virtual void dispatchDidReceiveAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
65 virtual void dispatchDidCancelAuthenticationChallenge(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::AuthenticationChallenge&);
67 virtual bool canAuthenticateAgainstProtectionSpace(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ProtectionSpace&);
69 virtual void dispatchDidReceiveResponse(WebCore::DocumentLoader*, unsigned long identifier, const WebCore::ResourceResponse&);
70 virtual void dispatchDidReceiveContentLength(WebCore::DocumentLoader*, unsigned long identifier, int dataLength);
71 virtual void dispatchDidFinishLoading(WebCore::DocumentLoader*, unsigned long identifier);
72 virtual void dispatchDidFailLoading(WebCore::DocumentLoader*, unsigned long identifier, cons
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderCounter.cpp42 static CounterNode* makeCounterNode(RenderObject*, const AtomicString& identifier, bool alwaysCreateCounter);
203 static bool planCounter(RenderObject* object, const AtomicString& identifier, bool& isReset, int& value) argument
233 CounterDirectives directives = directivesMap->get(identifier.impl());
248 if (identifier == "list-item") {
277 // identifier in the CounterNode tree for identifier and sets parent and
282 // counter with the same identifier.
283 // - All the counter references with the same identifier as this one that are in
292 static bool findPlaceForCounter(RenderObject* counterOwner, const AtomicString& identifier, bool isReset, CounterNode*& parent, CounterNode*& previousSibling) argument
294 // We cannot stop searching for counters with the same identifier befor
393 makeCounterNode(RenderObject* object, const AtomicString& identifier, bool alwaysCreateCounter) argument
525 destroyCounterNodeWithoutMapRemoval(const AtomicString& identifier, CounterNode* node) argument
555 destroyCounterNode(RenderObject* owner, const AtomicString& identifier) argument
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A Dnpruntime.cpp172 PrivateIdentifier* identifier = static_cast<PrivateIdentifier*>(malloc(sizeof(PrivateIdentifier) + nameLen + 1)); local
173 char* nameStorage = reinterpret_cast<char*>(identifier + 1);
175 identifier->isString = true;
176 identifier->value.string = reinterpret_cast<NPUTF8*>(nameStorage);
178 identMap->set(key, identifier);
179 return (NPIdentifier)identifier;
217 PrivateIdentifier* identifier = reinterpret_cast<PrivateIdentifier*>(malloc(sizeof(PrivateIdentifier)));
218 identifier->isString = false;
219 identifier->value.number = intId;
220 identMap->set(intId, identifier);
224 _NPN_IdentifierIsString(NPIdentifier identifier) argument
230 _NPN_UTF8FromIdentifier(NPIdentifier identifier) argument
239 _NPN_IntFromIdentifier(NPIdentifier identifier) argument
[all...]

Completed in 1115 milliseconds

1234567891011>>