Searched refs:_private (Results 1 - 25 of 67) sorted by relevance

123

/external/webkit/Source/WebKit/mac/WebView/
H A DWebNavigationData.mm60 _private = [[WebNavigationDataPrivate alloc] init];
62 _private->url = [url retain];
63 _private->title = [title retain];
64 _private->originalRequest = [request retain];
65 _private->response = [response retain];
66 _private->hasSubstituteData = hasSubstituteData;
67 _private->clientRedirectSource = [redirectSource retain];
74 return _private->url;
79 return _private->title;
84 return _private
[all...]
H A DWebSerializedJSValue.mm57 _private = [[WebSerializedJSValuePrivate alloc] init];
59 _private->value = SerializedScriptValue::create(sourceContext, value, exception);
60 if (!_private->value) {
81 _private = [[WebSerializedJSValuePrivate alloc] init];
83 _private->value = ((SerializedScriptValue*)internalRepresenatation);
84 if (!_private->value) {
94 if (!_private || !_private->value)
96 return _private->value->deserialize(destinationContext, 0);
101 [_private releas
[all...]
H A DWebDynamicScrollBarsView.mm85 _private = new WebDynamicScrollBarsViewPrivate;
86 memset(_private, 0, sizeof(WebDynamicScrollBarsViewPrivate));
95 _private = new WebDynamicScrollBarsViewPrivate;
96 memset(_private, 0, sizeof(WebDynamicScrollBarsViewPrivate));
102 delete _private;
108 delete _private;
114 if (_private->hScrollModeLocked)
116 if (flag && _private->hScroll == ScrollbarAlwaysOff)
117 _private->hScroll = ScrollbarAuto;
118 else if (!flag && _private
[all...]
H A DWebTextIterator.mm63 [_private release];
73 _private = [[WebTextIteratorPrivate alloc] init];
74 _private->_textIterator.set(new TextIterator(core(range)));
80 _private->_textIterator->advance();
85 return _private->_textIterator->atEnd();
90 return kit(_private->_textIterator->range().get());
95 return _private->_textIterator->characters();
100 return _private->_textIterator->length();
109 return kit(_private->_textIterator->node());
114 return [NSString stringWithCharacters:_private
[all...]
H A DWebScriptWorld.mm64 _private = [[WebScriptWorldPrivate alloc] init];
65 _private->world = world;
67 ASSERT_ARG(world, !allWorlds().contains(_private->world.get()));
68 allWorlds().add(_private->world.get(), self);
80 _private->world->clearWrappers();
85 ASSERT(allWorlds().contains(_private->world.get()));
86 allWorlds().remove(_private->world.get());
88 [_private release];
89 _private = nil;
115 return world ? world->_private
[all...]
H A DWebViewEventHandling.mm67 if (event == _private->mouseDownEvent)
71 [_private->mouseDownEvent release];
72 _private->mouseDownEvent = event;
81 if (_private->usesDocumentViews) {
95 _private->handlingMouseDownEvent = YES;
104 [_private->completionController endRevertingChange:NO moveLeft:NO];
109 _private->ignoringMouseDraggedEvents = NO;
121 _private->handlingMouseDownEvent = NO;
130 if (_private->usesDocumentViews) {
171 if (lastMouseoverView && lastMouseoverView->_private
[all...]
H A DWebScriptDebugDelegate.mm94 _private = [[WebScriptCallFramePrivate alloc] init];
95 _private->globalObject = globalObj;
96 _private->caller = [caller retain];
97 _private->debugger = debugger;
104 if (!_private->debuggerCallFrame)
105 _private->debuggerCallFrame = new DebuggerCallFrame(debuggerCallFrame);
107 *_private->debuggerCallFrame = debuggerCallFrame;
112 delete _private->debuggerCallFrame;
113 _private->debuggerCallFrame = 0;
121 WebScriptObject *globalObject = _private
[all...]
H A DWebScriptWorld.h31 WebScriptWorldPrivate *_private; variable
H A DWebArchive.mm131 _private = [[WebArchivePrivate alloc] init];
160 _private = [[WebArchivePrivate alloc] init];
162 _private->cachedMainResource = [mainResource retain];
163 if (!_private->cachedMainResource) {
169 _private->cachedSubresources = [subresources retain];
176 _private->cachedSubframeArchives = [subframeArchives retain];
194 coreArchives.append([subframeArchive->_private coreArchive]);
196 [_private setCoreArchive:LegacyWebArchive::create(coreMainResource.release(), coreResources, coreArchives)];
197 if (![_private coreArchive]) {
217 _private
[all...]
H A DWebPolicyDelegate.mm81 _private = [[WebPolicyDecisionListenerPrivate alloc] initWithTarget:target action:action];
87 [_private release];
93 if (_private->target)
94 ((void (*)(id, SEL, PolicyAction))objc_msgSend)(_private->target, _private->action, policy);
99 id target = _private->target;
100 _private->target = nil;
H A DWebHTMLRepresentation.mm128 _private = [[WebHTMLRepresentationPrivate alloc] init];
135 if (_private && _private->includedInWebKitStatistics)
138 [_private release];
145 if (_private && _private->includedInWebKitStatistics)
153 _private->manualLoader = manualLoader;
154 _private->pluginView = pluginView;
159 _private->dataSource = dataSource;
161 if (!_private
[all...]
H A DWebDataSource.mm129 [_private->representation release];
130 _private->representation = [representation retain];
131 _private->representationFinishedLoading = NO;
157 return _private->loader->mainDocumentError();
230 _private->representationFinishedLoading = YES;
247 if (!_private->representationFinishedLoading) {
248 _private->representationFinishedLoading = YES;
341 const KURL& url = _private->loader->url();
369 [_private->representation setDataSource:self];
374 return _private
[all...]
H A DWebFrame.mm234 return frame ? frame->_private->coreFrame : 0;
267 frame->_private->coreFrame = coreFrame.get();
294 return _private && _private->includedInWebKitStatistics;
299 ScriptController* scriptController = _private->coreFrame->script();
311 if (_private->scriptDebugger) {
312 ASSERT(_private->scriptDebugger == globalObject->debugger());
316 _private->scriptDebugger = new WebScriptDebugger(globalObject);
321 if (!_private->scriptDebugger)
324 delete _private
[all...]
H A DWebDynamicScrollBarsView.h37 struct WebDynamicScrollBarsViewPrivate *_private; variable in typeref:struct:WebDynamicScrollBarsViewPrivate
H A DWebHTMLView.h43 WebHTMLViewPrivate *_private; variable
H A DWebSerializedJSValue.h32 WebSerializedJSValuePrivate *_private; variable
H A DWebDelegateImplementationCaching.mm44 return &webView->_private->resourceLoadDelegateImplementations;
52 return &webView->_private->frameLoadDelegateImplementations;
60 return &webView->_private->scriptDebugDelegateImplementations;
68 return &webView->_private->historyDelegateImplementations;
86 if (!self->_private->catchesDelegateExceptions)
100 if (!self->_private->catchesDelegateExceptions)
114 if (!self->_private->catchesDelegateExceptions)
128 if (!self->_private->catchesDelegateExceptions)
142 if (!self->_private->catchesDelegateExceptions)
156 if (!self->_private
[all...]
H A DWebView.mm636 return _private->usesDocumentViews;
685 _private->preferences = [standardPreferences retain];
686 _private->catchesDelegateExceptions = YES;
687 _private->mainFrameDocumentReady = NO;
688 _private->drawsBackground = YES;
689 _private->backgroundColor = [[NSColor colorWithDeviceWhite:1 alpha:1] retain];
690 _private->usesDocumentViews = usesDocumentViews;
691 _private->includesFlattenedCompositingLayersWhenDrawingToBitmap = YES;
694 if (_private->usesDocumentViews) {
737 _private
[all...]
H A DWebResource.mm116 _private = [[WebResourcePrivate alloc] init];
162 _private = [[WebResourcePrivate alloc] initWithCoreResource:ArchiveResource::create(SharedBuffer::wrapNSData(data), url, mimeType, textEncoding, frameName, response)];
169 ArchiveResource *resource = _private->coreResource;
195 [_private release];
213 if (!_private->coreResource)
215 if (!_private->coreResource->data())
217 return [_private->coreResource->data()->createNSData() autorelease];
229 if (!_private->coreResource)
231 NSURL *url = _private->coreResource->url();
244 if (!_private
[all...]
H A DWebArchive.h50 WebArchivePrivate *_private; variable
/external/webkit/Source/WebKit/mac/Misc/
H A DWebUserContentURLPattern.mm50 _private = [[WebUserContentURLPatternPrivate alloc] init];
51 _private->pattern = UserContentURLPattern(patternString);
58 [_private release];
59 _private = nil;
66 return _private->pattern.isValid();
71 return _private->pattern.scheme();
76 return _private->pattern.host();
81 return _private->pattern.matchSubdomains();
86 return _private->pattern.matches(url);
H A DWebUserContentURLPattern.h28 WebUserContentURLPatternPrivate *_private; variable
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebSecurityOrigin.mm49 _private = reinterpret_cast<WebSecurityOriginPrivate *>(origin.get());
56 return reinterpret_cast<SecurityOrigin*>(_private)->protocol();
61 return reinterpret_cast<SecurityOrigin*>(_private)->host();
66 return reinterpret_cast<SecurityOrigin*>(_private)->databaseIdentifier();
77 return reinterpret_cast<SecurityOrigin*>(_private)->port();
91 if (_private)
92 reinterpret_cast<SecurityOrigin*>(_private)->deref();
102 if (_private)
103 reinterpret_cast<SecurityOrigin*>(_private)->deref();
119 _private
[all...]
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.mm121 if (_private) {
122 HistoryItem* coreItem = core(_private);
135 if (_private) {
136 HistoryItem* coreItem = core(_private);
147 RefPtr<HistoryItem> item = core(_private)->copy();
148 copy->_private = kitPrivate(item.get());
158 return nsStringNilIfEmpty(core(_private)->urlString());
166 return nsStringNilIfEmpty(core(_private)->originalURLString());
172 return nsStringNilIfEmpty(core(_private)->title());
177 core(_private)
[all...]
/external/webkit/Source/WebCore/bindings/objc/
H A DWebScriptObject.mm145 ASSERT(!_private->imp);
146 ASSERT(!_private->rootObject);
147 ASSERT(!_private->originRootObject);
150 _private->imp = imp;
151 _private->rootObject = rootObject.releaseRef();
152 _private->originRootObject = originRootObject.releaseRef();
156 if (_private->rootObject)
157 _private->rootObject->gcProtect(imp);
162 ASSERT(_private->imp);
165 rootObject->gcProtect(_private
[all...]

Completed in 232 milliseconds

123