Searched refs:identifier (Results 51 - 75 of 551) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSCell.cpp117 bool JSCell::getOwnPropertySlot(ExecState* exec, const Identifier& identifier, PropertySlot& slot) argument
124 if (!object->getPropertySlot(exec, identifier, slot))
129 bool JSCell::getOwnPropertySlot(ExecState* exec, unsigned identifier, PropertySlot& slot) argument
136 if (!object->getPropertySlot(exec, identifier, slot))
141 void JSCell::put(ExecState* exec, const Identifier& identifier, JSValue value, PutPropertySlot& slot) argument
143 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value, slot);
146 void JSCell::put(ExecState* exec, unsigned identifier, JSValue value) argument
148 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value);
151 bool JSCell::deleteProperty(ExecState* exec, const Identifier& identifier) argument
153 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier);
156 deleteProperty(ExecState* exec, unsigned identifier) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DProgressTracker.h52 void incrementProgress(unsigned long identifier, const ResourceResponse&);
53 void incrementProgress(unsigned long identifier, const char*, int);
54 void completeProgress(unsigned long identifier);
/external/webkit/Source/WebCore/storage/
H A DOriginUsageRecord.h47 void addDatabase(const String& identifier, const String& fullPath);
48 void removeDatabase(const String& identifier);
49 void markDatabase(const String& identifier); // Size may have changed, and will need to be recalculated.
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageGroup.h43 static PassRefPtr<WebPageGroup> create(const String& identifier = String(), bool visibleToInjectedBundle = true, bool visibleToHistoryClient = true);
51 const String& identifier() const { return m_data.identifer; } function in class:WebKit::WebPageGroup
61 WebPageGroup(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DNotificationPresenter.cpp83 WebString identifier = identifierForNotification(notification); local
90 m_replacements.set(replaceId, WTF::String(identifier.data(), identifier.length()));
107 WTF::String id(identifier.data(), identifier.length());
116 WebString identifier = identifierForNotification(notification); local
117 printf("DESKTOP NOTIFICATION CLOSED: %s\n", identifier.utf8().data());
121 WTF::String id(identifier.data(), identifier.length());
127 WebString identifier local
[all...]
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DCanHandleRequest_Bundle.cpp35 CanHandleRequestTest(const std::string& identifier);
43 CanHandleRequestTest::CanHandleRequestTest(const std::string& identifier) argument
44 : InjectedBundleTest(identifier)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java12 String identifier; field in class:DERObjectIdentifier
149 * Intern the identifier so there aren't hundreds of duplicates
152 this.identifier = objId.toString().intern();
158 String identifier)
160 if (!isValidIdentifier(identifier))
162 throw new IllegalArgumentException("string " + identifier + " not an OID");
167 * Intern the identifier so there aren't hundreds of duplicates
170 this.identifier = identifier.intern();
176 return identifier;
157 DERObjectIdentifier( String identifier) argument
305 isValidIdentifier( String identifier) argument
[all...]
/external/chromium/webkit/glue/
H A Dsite_isolation_metrics.h25 static void AddRequest(unsigned identifier,
31 unsigned identifier,
/external/javassist/src/main/javassist/tools/reflect/
H A DMetaobject.java120 * by <code>identifier</code>.
122 public final String getMethodName(int identifier) { argument
123 String mname = methods[identifier].getName();
137 * by <code>identifier</code>.
139 public final Class[] getParameterTypes(int identifier) { argument
140 return methods[identifier].getParameterTypes();
145 * return type of the method specified by <code>identifier</code>.
147 public final Class getReturnType(int identifier) { argument
148 return methods[identifier].getReturnType();
223 public Object trapMethodcall(int identifier, Objec argument
[all...]
/external/webkit/Source/WebCore/bridge/c/
H A Dc_class.cpp76 MethodList CClass::methodsNamed(const Identifier& identifier, Instance* instance) const argument
80 Method* method = _methods.get(identifier.ustring().impl());
86 NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii().data());
93 _methods.set(identifier.ustring().impl(), aMethod);
101 Field* CClass::fieldNamed(const Identifier& identifier, Instance* instance) const argument
103 Field* aField = _fields.get(identifier.ustring().impl());
107 NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii().data());
114 _fields.set(identifier.ustring().impl(), aField);
H A Dc_runtime.h44 NPIdentifier identifier() const { return _fieldIdentifier; } function in class:JSC::Bindings::CField
56 NPIdentifier identifier() const { return _methodIdentifier; } function in class:JSC::Bindings::CMethod
/external/webkit/Source/WebCore/css/
H A DCSSOMUtils.h45 void serializeIdentifier(const String& identifier, String& appendTo);
46 void serializeIdentifier(const String& identifier, Vector<UChar>& appendTo);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebResourceLoadDelegatePrivate2.idl45 @param identifier An identifier that can be used to track the progress of a resource load across
47 @discussion This message is sent to notify the delegate to stop using the identifier
49 - (void)webView:(WebView *)sender removeIdentifierForRequest:(id)identifier;
51 HRESULT removeIdentifierForRequest([in] IWebView* webView, [in] unsigned long identifier);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp32 NPRuntimeObjectFromDestroyedPlugin(NPP npp, const string& identifier) argument
33 : PluginTest(npp, identifier)
H A DPassDifferentNPPStruct.cpp37 PassDifferentNPPStruct(NPP npp, const string& identifier) argument
38 : PluginTest(npp, identifier)
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DGetValueNetscapeWindow.cpp36 GetValueNetscapeWindow(NPP npp, const string& identifier) argument
37 : PluginTest(npp, identifier)
/external/webkit/Tools/DumpRenderTree/win/
H A DResourceLoadDelegate.cpp62 wstring ResourceLoadDelegate::descriptionSuitableForTestResult(unsigned long identifier) const
64 IdentifierMap::const_iterator it = m_urlMap.find(identifier);
121 wstring ResourceLoadDelegate::descriptionSuitableForTestResult(IWebError* error, unsigned long identifier) const
165 failingURL = descriptionSuitableForTestResult(identifier);
217 /* [in] */ unsigned long identifier)
224 ASSERT(!urlMap().contains(identifier));
225 urlMap().set(identifier, wstringFromBSTR(urlStr));
233 /* [in] */ unsigned long identifier)
235 urlMap().remove(identifier);
242 /* [in] */ unsigned long identifier,
213 identifierForInitialRequest( IWebView* webView, IWebURLRequest* request, IWebDataSource* dataSource, unsigned long identifier) argument
231 removeIdentifierForRequest( IWebView* webView, unsigned long identifier) argument
240 willSendRequest( IWebView* webView, unsigned long identifier, IWebURLRequest* request, IWebURLResponse* redirectResponse, IWebDataSource* dataSource, IWebURLRequest **newRequest) argument
286 didReceiveAuthenticationChallenge( IWebView *webView, unsigned long identifier, IWebURLAuthenticationChallenge *challenge, IWebDataSource *dataSource) argument
316 didReceiveResponse( IWebView* webView, unsigned long identifier, IWebURLResponse* response, IWebDataSource* dataSource) argument
349 didFinishLoadingFromDataSource( IWebView* webView, unsigned long identifier, IWebDataSource* dataSource) argument
364 didFailLoadingWithError( IWebView* webView, unsigned long identifier, IWebError* error, IWebDataSource* dataSource) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorInstrumentation.h114 static void willSendRequest(Frame*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse);
115 static void markResourceAsCached(Page*, unsigned long identifier);
117 static InspectorInstrumentationCookie willReceiveResourceData(Frame*, unsigned long identifier);
119 static InspectorInstrumentationCookie willReceiveResourceResponse(Frame*, unsigned long identifier, const ResourceResponse&);
120 static void didReceiveResourceResponse(const InspectorInstrumentationCookie&, unsigned long identifier, DocumentLoader*, const ResourceResponse&);
121 static void continueAfterXFrameOptionsDenied(Frame*, DocumentLoader*, unsigned long identifier, const ResourceResponse&);
122 static void continueWithPolicyDownload(Frame*, DocumentLoader*, unsigned long identifier, const ResourceResponse&);
123 static void continueWithPolicyIgnore(Frame*, DocumentLoader*, unsigned long identifier, const ResourceResponse&);
124 static void didReceiveContentLength(Frame*, unsigned long identifier, int dataLength, int encodedDataLength);
125 static void didFinishLoading(Frame*, unsigned long identifier, doubl
619 willSendRequest(Frame* frame, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
627 markResourceAsCached(Page* page, unsigned long identifier) argument
630 markResourceAsCachedImpl(inspectorAgentForPage(page), identifier); local
641 willReceiveResourceData(Frame* frame, unsigned long identifier) argument
658 willReceiveResourceResponse(Frame* frame, unsigned long identifier, const ResourceResponse& response) argument
667 didReceiveResourceResponse(const InspectorInstrumentationCookie& cookie, unsigned long identifier, DocumentLoader* loader, const ResourceResponse& response) argument
675 continueAfterXFrameOptionsDenied(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
683 continueWithPolicyDownload(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
691 continueWithPolicyIgnore(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
699 didReceiveContentLength(Frame* frame, unsigned long identifier, int dataLength, int encodedDataLength) argument
707 didFinishLoading(Frame* frame, unsigned long identifier, double finishTime) argument
715 didFailLoading(Frame* frame, unsigned long identifier, const ResourceError& error) argument
723 resourceRetrievedByXMLHttpRequest(ScriptExecutionContext* context, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber) argument
731 scriptImported(ScriptExecutionContext* context, unsigned long identifier, const String& sourceString) argument
823 didCreateWebSocket(ScriptExecutionContext* context, unsigned long identifier, const KURL& requestURL, const KURL& documentURL) argument
831 willSendWebSocketHandshakeRequest(ScriptExecutionContext* context, unsigned long identifier, const WebSocketHandshakeRequest& request) argument
839 didReceiveWebSocketHandshakeResponse(ScriptExecutionContext* context, unsigned long identifier, const WebSocketHandshakeResponse& response) argument
847 didCloseWebSocket(ScriptExecutionContext* context, unsigned long identifier) argument
[all...]
H A DTimelineRecordFactory.h67 static PassRefPtr<InspectorObject> createResourceSendRequestData(unsigned long identifier, const ResourceRequest&);
71 static PassRefPtr<InspectorObject> createResourceReceiveResponseData(unsigned long identifier, const ResourceResponse&);
73 static PassRefPtr<InspectorObject> createReceiveResourceData(unsigned long identifier);
75 static PassRefPtr<InspectorObject> createResourceFinishData(unsigned long identifier, bool didFail, double finishTime);
/external/checkpolicy/
H A Dpolicy_parse.y170 class_def : CLASS identifier
176 initial_sid_def : SID identifier
187 common_perms_def : COMMON identifier '{' identifier_list '}'
193 av_perms_def : CLASS identifier '{' identifier_list '}'
195 | CLASS identifier INHERITS identifier
197 | CLASS identifier INHERITS identifier '{' identifier_list '}'
241 sensitivity_def : SENSITIVITY identifier alias_def ';'
243 | SENSITIVITY identifier ';'
790 identifier : IDENTIFIER label
[all...]
/external/chromium/chrome/browser/resources/
H A Dkeyboard_overlay.js149 function keyId(identifier, i) {
150 return identifier + '-key-' + i;
156 function keyTextId(identifier, i) {
157 return identifier + '-key-text-' + i;
163 function shortcutTextId(identifier, i) {
164 return identifier + '-shortcut-text-' + i;
175 * Returns a list of the class names corresponding to the identifier and
178 function getKeyClasses(identifier, modifiers) {
184 if ((identifier == '2A' && contains(modifiers, 'SHIFT')) ||
185 (identifier
[all...]
/external/chromium/chrome/browser/
H A Dbrowser_process_sub_thread.h25 explicit BrowserProcessSubThread(BrowserThread::ID identifier);
/external/javassist/src/main/javassist/compiler/ast/
H A DVariable.java34 return identifier + ":" + declarator.getType();
/external/webkit/Source/WebCore/dom/
H A DTouch.h42 unsigned identifier, int screenX, int screenY, int pageX, int pageY)
44 return adoptRef(new Touch(frame, target, identifier, screenX,
49 unsigned identifier() const { return m_identifier; } function in class:WebCore::Touch
58 Touch(Frame* frame, EventTarget* target, unsigned identifier,
41 create(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int pageX, int pageY) argument
/external/webkit/Source/WebCore/loader/cf/
H A DResourceLoaderCFNet.cpp43 return frameLoader()->client()->shouldCacheResponse(documentLoader(), identifier(), response, CFDataGetBytePtr(data), CFDataGetLength(data));

Completed in 1713 milliseconds

1234567891011>>