Searched refs:identifier (Results 76 - 100 of 551) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPageGroup.h37 WK_EXPORT WKPageGroupRef WKPageGroupCreateWithIdentifier(WKStringRef identifier);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDocumentLoaderMac.mm106 void WebDocumentLoaderMac::increaseLoadCount(unsigned long identifier)
110 if (m_loadingResources.contains(identifier))
112 m_loadingResources.add(identifier);
117 void WebDocumentLoaderMac::decreaseLoadCount(unsigned long identifier)
119 HashSet<unsigned long>::iterator it = m_loadingResources.find(identifier);
H A DWebDocumentLoaderMac.h51 void increaseLoadCount(unsigned long identifier);
52 void decreaseLoadCount(unsigned long identifier);
H A DWebResourceLoadDelegatePrivate.h44 - (BOOL)webView:(WebView *)webView resource:(id)identifier shouldUseCredentialStorageForDataSource:(WebDataSource *)dataSource;
53 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource;
/external/webkit/Source/WebKit2/UIProcess/cf/
H A DWebPreferencesCF.cpp41 static inline RetainPtr<CFStringRef> makeKey(const String& identifier, const String& baseKey) argument
43 return cfStringFromWebCoreString(makeString(identifier, ".WebKit2", baseKey));
46 static void setStringValueIfInUserDefaults(const String& identifier, const String& baseKey, WebPreferencesStore& store) argument
48 RetainPtr<CFPropertyListRef> value(AdoptCF, CFPreferencesCopyAppValue(makeKey(identifier, baseKey).get(), kCFPreferencesCurrentApplication));
57 static void setBoolValueIfInUserDefaults(const String& identifier, const String& baseKey, WebPreferencesStore& store) argument
59 RetainPtr<CFPropertyListRef> value(AdoptCF, CFPreferencesCopyAppValue(makeKey(identifier, baseKey).get(), kCFPreferencesCurrentApplication));
68 static void setUInt32ValueIfInUserDefaults(const String& identifier, const String& baseKey, WebPreferencesStore& store) argument
70 RetainPtr<CFPropertyListRef> value(AdoptCF, CFPreferencesCopyAppValue(makeKey(identifier, baseKey).get(), kCFPreferencesCurrentApplication));
82 static void setDoubleValueIfInUserDefaults(const String& identifier, const String& baseKey, WebPreferencesStore& store) argument
84 RetainPtr<CFPropertyListRef> value(AdoptCF, CFPreferencesCopyAppValue(makeKey(identifier, baseKe
[all...]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginTest.cpp37 PluginTest* PluginTest::create(NPP npp, const string& identifier) argument
39 if (identifier.empty())
40 return new PluginTest(npp, identifier);
42 CreateTestFunction createTestFunction = createTestFunctions()[identifier];
44 return createTestFunction(npp, identifier);
49 PluginTest::PluginTest(NPP npp, const string& identifier) argument
51 , m_identifier(identifier)
190 void PluginTest::registerCreateTestFunction(const string& identifier, CreateTestFunction createTestFunction) argument
192 assert(!createTestFunctions().count(identifier));
194 createTestFunctions()[identifier]
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageGroup.cpp50 PassRefPtr<WebPageGroup> WebPageGroup::create(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient) argument
52 RefPtr<WebPageGroup> pageGroup = adoptRef(new WebPageGroup(identifier, visibleToInjectedBundle, visibleToHistoryClient));
64 WebPageGroup::WebPageGroup(const String& identifier, bool visibleToInjectedBundle, bool visibleToHistoryClient) argument
68 if (!identifier.isNull())
69 m_data.identifer = identifier;
/external/webkit/Tools/DumpRenderTree/win/
H A DDRTDesktopNotificationPresenter.cpp100 BSTR identifier; local
104 notification->contentsURL(&identifier);
106 notification->title(&identifier);
108 printf("DESKTOP NOTIFICATION CLOSED: %S\n", identifier ? identifier : L"");
/external/webkit/Source/WebCore/bindings/v8/
H A DV8NPObject.cpp117 NPIdentifier identifier = getStringIdentifier(functionName); local
118 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result);
169 PrivateIdentifier* identifier = static_cast<PrivateIdentifier*>(parameter); local
170 ASSERT(identifier);
171 ASSERT(staticTemplateMap.contains(identifier));
173 staticTemplateMap.forget(identifier);
177 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key) argument
187 if (npObject->_class->hasProperty && npObject->_class->hasProperty(npObject, identifier)
192 if (!npObject->_class->getProperty(npObject, identifier, &result))
201 if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) {
224 NPIdentifier identifier = getStringIdentifier(name); local
230 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
236 NPIdentifier identifier = getStringIdentifier(name); local
242 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
248 NPIdentifier identifier = getStringIdentifier(name); local
252 npObjectSetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> value) argument
279 NPIdentifier identifier = getStringIdentifier(name); local
286 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
292 NPIdentifier identifier = getStringIdentifier(name); local
298 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
317 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]); local
[all...]
/external/webkit/Source/WebCore/bridge/
H A Dnpruntime.cpp65 bool _NPN_IdentifierIsString(NPIdentifier identifier) argument
67 return static_cast<IdentifierRep*>(identifier)->isString();
70 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier) argument
72 const char* string = static_cast<IdentifierRep*>(identifier)->string();
79 int32_t _NPN_IntFromIdentifier(NPIdentifier identifier) argument
81 return static_cast<IdentifierRep*>(identifier)->number();
/external/webkit/Tools/TestWebKitAPI/
H A DInjectedBundleController.cpp109 void InjectedBundleController::initializeTestNamed(WKBundleRef bundle, const std::string& identifier, WKTypeRef userData) argument
111 CreateInjectedBundleTestFunction createTestFunction = m_createInjectedBundleTestFunctions[identifier];
113 printf("ERROR: InjectedBundle test not found - %s\n", identifier.c_str());
117 m_currentTest = createTestFunction(identifier);
121 void InjectedBundleController::registerCreateInjectedBundleTestFunction(const std::string& identifier, CreateInjectedBundleTestFunction function) argument
123 m_createInjectedBundleTestFunctions[identifier] = function;
/external/guava/guava/src/com/google/common/eventbus/
H A DAsyncEventBus.java40 * events. Assigns {@code identifier} as the bus's name for logging purposes.
42 * @param identifier short name for the bus, for logging purposes.
47 public AsyncEventBus(String identifier, Executor executor) { argument
48 super(identifier);
/external/webkit/Source/JavaScriptCore/wtf/
H A DThreadIdentifierDataPthreads.cpp50 ThreadIdentifier ThreadIdentifierData::identifier() function in class:WTF::ThreadIdentifierData
60 ASSERT(!identifier());
/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaNPObjectV8.cpp91 bool JavaNPObjectHasMethod(NPObject* obj, NPIdentifier identifier) argument
96 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
110 bool JavaNPObjectInvoke(NPObject* obj, NPIdentifier identifier, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
115 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
164 bool JavaNPObjectHasProperty(NPObject* obj, NPIdentifier identifier) argument
169 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
179 bool JavaNPObjectGetProperty(NPObject* obj, NPIdentifier identifier, NPVariant* result) argument
185 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
/external/webkit/Source/WebCore/dom/
H A DTouch.cpp56 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier, int screenX, int screenY, int pageX, int pageY) argument
58 , m_identifier(identifier)
H A DTouch.idl38 readonly attribute unsigned long identifier;
/external/webkit/Source/WebCore/inspector/front-end/
H A DWelcomeView.js30 WebInspector.WelcomeView = function(identifier, headingText, instructionsText)
35 this.element.addStyleClass(identifier);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDocumentLoaderGtk.h55 void increaseLoadCount(unsigned long identifier);
56 void decreaseLoadCount(unsigned long identifier);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKSecurityOrigin.cpp39 WKSecurityOriginRef WKSecurityOriginCreateFromIdentifier(WKStringRef identifier) argument
41 RefPtr<WebSecurityOrigin> securityOrigin = WebSecurityOrigin::create(toImpl(identifier)->string());
/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DProcessLauncher.cpp50 void ProcessLauncher::didFinishLaunchingProcess(PlatformProcessIdentifier processIdentifier, CoreIPC::Connection::Identifier identifier) argument
56 // FIXME: Dispose of the connection identifier.
60 m_client->didFinishLaunching(this, identifier);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPDeallocateCalledBeforeNPShutdown.cpp34 NPDeallocateCalledBeforeNPShutdown(NPP npp, const string& identifier) argument
35 : PluginTest(npp, identifier)
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DDocumentStartUserScriptAlertCrash_Bundle.cpp38 DocumentStartUserScriptAlertCrashTest(const std::string& identifier) argument
39 : InjectedBundleTest(identifier)
H A DHitTestResultNodeHandle_Bundle.cpp38 HitTestResultNodeHandleTest(const std::string& identifier) argument
39 : InjectedBundleTest(identifier)
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
H A DCombinedParser.h38 - (void)identifier;
/external/clang/test/CXX/temp/
H A Dp3.cpp10 expected-error {{use of undeclared identifier 'T'}} \

Completed in 1572 milliseconds

1234567891011>>