HomeSort by relevance Sort by last modified time
    Searched refs:identifier (Results 26 - 50 of 3187) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
GetURLWithJavaScriptURLDestroyingPlugin.cpp 34 GetURLWithJavaScriptURLDestroyingPlugin(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
NullNPPGetValuePointer.cpp 36 NullNPPGetValuePointer(NPP, const string& identifier);
47 NullNPPGetValuePointer::NullNPPGetValuePointer(NPP npp, const string& identifier)
48 : PluginTest(npp, identifier)
PluginScriptableNPObjectInvokeDefault.cpp 33 PluginScriptableNPObjectInvokeDefault(NPP npp, const string& identifier)
34 : PluginTest(npp, identifier)
56 if (identifier() == "plugin-scriptable-npobject-invoke-default")
GetUserAgentWithNullNPPFromNPPNew.cpp 38 GetUserAgentWithNullNPPFromNPPNew(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Constructed.java 42 * Tests provided identifier.
44 * @param identifier - identifier to be verified
45 * @return - true if identifier correspond to constructed identifier of
48 public final boolean checkTag(int identifier) {
49 return this.constrId == identifier;
ASN1Primitive.java 38 * Tests provided identifier.
40 * @param identifier identifier to be verified
41 * @return true if identifier correspond to primitive identifier of this
44 public final boolean checkTag(int identifier) {
45 return this.id == identifier;
  /external/chromium/webkit/glue/
npruntime_util.cc 14 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle) {
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
30 NPIdentifier* identifier) {
41 *identifier = WebBindings::getStringIdentifier(data);
46 *identifier = WebBindings::getIntIdentifier(number);
site_isolation_metrics.h 25 static void AddRequest(unsigned identifier,
31 unsigned identifier,
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 25 public Object trap(Object[] args, int identifier) throws Throwable {
29 return ClassMetaobject.invoke(this, identifier, args);
31 return mobj.trapMethodcall(identifier, args);
34 public static Object trapStatic(Object[] args, int identifier)
37 return _classobject.trapMethodcall(identifier, args);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 11 String identifier; field in class:DERObjectIdentifier
30 * return an Object Identifier from a tagged object.
115 * Intern the identifier so there aren't hundreds of duplicates
118 this.identifier = objId.toString().intern();
123 String identifier)
125 if (!isValidIdentifier(identifier))
127 throw new IllegalArgumentException("string " + identifier + " not an OID");
132 * Intern the identifier so there aren't hundreds of duplicates
135 this.identifier = identifier.intern()
    [all...]
  /external/webkit/Source/WebCore/css/
Counter.h 31 static PassRefPtr<Counter> create(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator)
33 return adoptRef(new Counter(identifier, listStyle, separator));
36 String identifier() const { return m_identifier ? m_identifier->getStringValue() : String(); } function in class:WebCore::Counter
42 void setIdentifier(PassRefPtr<CSSPrimitiveValue> identifier) { m_identifier = identifier; }
47 Counter(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator)
48 : m_identifier(identifier)
  /external/webkit/Source/WebKit/mac/WebView/
WebResourceLoadDelegate.h 47 The various progress methods of this protocol all receive an identifier as the
48 parameter. This identifier can be used to track messages associated with a single
59 @discussion An implementor of WebResourceLoadDelegate should provide an identifier
60 that can be used to track the load of a single resource. This identifier will be
62 identifier is useful to track changes to a resources request, which will be
64 @result An identifier that will be passed back to the implementor for each callback.
65 The identifier will be retained.
74 @param identifier An identifier that can be used to track the progress of a resource load across
83 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDat (…)
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
ResourceLoadDelegate.h 51 /* [in] */ unsigned long identifier);
55 /* [in] */ unsigned long identifier,
63 /* [in] */ unsigned long identifier,
69 /* [in] */ unsigned long identifier,
75 /* [in] */ unsigned long identifier,
81 /* [in] */ unsigned long identifier,
87 /* [in] */ unsigned long identifier,
92 /* [in] */ unsigned long identifier,
104 /* [in] */ unsigned long identifier);
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.h 94 void willSendRequest(unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse);
95 void markResourceAsCached(unsigned long identifier);
96 void didReceiveResponse(unsigned long identifier, DocumentLoader* laoder, const ResourceResponse&);
97 void didReceiveContentLength(unsigned long identifier, int dataLength, int encodedDataLength);
98 void didFinishLoading(unsigned long identifier, double finishTime);
99 void didFailLoading(unsigned long identifier, const ResourceError&);
101 void setInitialScriptContent(unsigned long identifier, const String& sourceString);
102 void setInitialXHRContent(unsigned long identifier, const String& sourceString);
109 void didCreateWebSocket(unsigned long identifier, const KURL& requestURL);
110 void willSendWebSocketHandshakeRequest(unsigned long identifier, const WebSocketHandshakeRequest&)
    [all...]
  /external/webkit/Source/WebCore/loader/
ProgressTracker.h 52 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/WebKit2/UIProcess/API/C/
WKPageGroup.cpp 40 WKPageGroupRef WKPageGroupCreateWithIdentifier(WKStringRef identifier)
42 RefPtr<WebPageGroup> pageGroup = WebPageGroup::create(toWTFString(identifier));
48 return toCopiedAPI(toImpl(pageGroupRef)->identifier());
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkManager.js 123 requestWillBeSent: function(identifier, frameId, loaderId, documentURL, request, time, stackTrace, redirectResponse)
125 var resource = this._inflightResourcesById[identifier];
130 this.responseReceived(identifier, time, "Other", redirectResponse);
131 resource = this._appendRedirect(identifier, time, request.url);
133 resource = this._createResource(identifier, frameId, loaderId, request.url, documentURL, stackTrace);
140 resourceMarkedAsCached: function(identifier)
142 var resource = this._inflightResourcesById[identifier];
150 responseReceived: function(identifier, time, resourceType, response)
156 var resource = this._inflightResourcesById[identifier];
180 dataReceived: function(identifier, time, dataLength, encodedDataLength
    [all...]
  /external/chromium/chrome/browser/
browser_process_sub_thread.h 25 explicit BrowserProcessSubThread(BrowserThread::ID identifier);
  /external/clang/test/Sema/
decl-invalid.c 13 expected-error{{expected identifier or '('}}
  /external/webkit/Source/WebCore/dom/
Touch.h 42 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,
  /external/webkit/Source/WebKit/win/Interfaces/
IWebResourceLoadDelegate.idl 49 The various progress methods of this protocol all receive an identifier as the
50 parameter. This identifier can be used to track messages associated with a single
69 @discussion An implementor of WebResourceLoadDelegate should provide an identifier
70 that can be used to track the load of a single resource. This identifier will be
72 identifier is useful to track changes to a resources request, which will be
74 @result An identifier that will be passed back to the implementor for each callback.
75 The identifier will be retained.
78 HRESULT identifierForInitialRequest([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebDataSource* dataSource, [in] unsigned long identifier);
85 @param identifier An identifier that can be used to track the progress of a resource load acros
    [all...]
  /external/webkit/Source/WebCore/bridge/c/
c_runtime.h 44 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/WebKit2/UIProcess/Launcher/
ThreadLauncher.cpp 43 CoreIPC::Connection::Identifier connectionIdentifier = createWebThread();
49 void ThreadLauncher::didFinishLaunchingThread(CoreIPC::Connection::Identifier identifier)
54 // FIXME: Dispose of the connection identifier.
58 m_client->didFinishLaunching(this, identifier);
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
InjectedBundleBasic_Bundle.cpp 34 InjectedBundleBasicTest(const std::string& identifier)
35 : InjectedBundleTest(identifier)
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 30 * An utility function that returns the menu identifier for a particular
34 * @param identifier Menu identifier.
37 public static int getMenuIdentifier(Class cls, String identifier) {
40 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);

Completed in 574 milliseconds

12 3 4 5 6 7 8 91011>>