HomeSort by relevance Sort by last modified time
    Searched refs:RefPtr (Results 76 - 100 of 1681) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyEvent.h 39 RefPtr<Uint8Array> initData;
40 RefPtr<Uint8Array> message;
42 RefPtr<MediaKeyError> errorCode;
76 RefPtr<Uint8Array> m_initData;
77 RefPtr<Uint8Array> m_message;
79 RefPtr<MediaKeyError> m_errorCode;
TimeRangesTest.cpp 66 RefPtr<TimeRanges> rangeA = TimeRanges::create();
67 RefPtr<TimeRanges> rangeB = TimeRanges::create();
85 RefPtr<TimeRanges> ranges = TimeRanges::create();
115 RefPtr<TimeRanges> ranges = TimeRanges::create(0, 2);
126 RefPtr<TimeRanges> rangesA = TimeRanges::create(0, 2);
127 RefPtr<TimeRanges> rangesB = rangesA->copy();
140 RefPtr<TimeRanges> rangesA = TimeRanges::create(0, 2);
141 RefPtr<TimeRanges> rangesB = TimeRanges::create();
154 RefPtr<TimeRanges> rangesA = TimeRanges::create();
155 RefPtr<TimeRanges> rangesB = TimeRanges::create()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMStorageAgent.h 63 virtual void getValue(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key, TypeBuilder::OptOutput<WTF::String>* value);
64 virtual void getDOMStorageItems(ErrorString*, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items);
65 virtual void setDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key, const String& value);
66 virtual void removeDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key);
80 PassOwnPtr<StorageArea> findStorageArea(ErrorString*, const RefPtr<JSONObject>&, Frame*&);
InjectedScriptCanvasModule.h 60 void traceLog(ErrorString*, const String&, const int*, const int*, RefPtr<TypeBuilder::Canvas::TraceLog>*);
61 void replayTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, RefPtr<TypeBuilder::Canvas::ResourceState>*, double*);
62 void resourceState(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, const TypeBuilder::Canvas::ResourceId&, RefPtr<TypeBuilder::Canvas::ResourceState>*);
63 void evaluateTraceLogCallArgument(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, int, const String&, RefPtr<TypeBuilder::Runtime::RemoteObject>*, RefPtr<TypeBuilder::Canvas::ResourceState>*);
InspectorDebuggerAgent.h 90 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const String* optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations);
91 virtual void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const String* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Debugger::Location>& actualLocation);
93 virtual void continueToLocation(ErrorString*, const RefPtr<JSONObject>& location, const bool* interstateLocationOpt);
94 virtual void getStepInPositions(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions);
95 virtual void getBacktrace(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >&);
97 virtual void searchInContent(ErrorString*, const String& scriptId, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >&);
98 virtual void setScriptSource(ErrorString*, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, const String& scriptId, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result)
    [all...]
InspectorLayerTreeAgent.h 68 virtual void getLayers(ErrorString*, const int* nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
73 void gatherLayersUsingRenderObjectHierarchy(ErrorString*, RenderObject*, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
74 void gatherLayersUsingRenderLayerHierarchy(ErrorString*, RenderLayer*, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
75 void gatherLayersUsingGraphicsLayerHierarchy(ErrorString*, GraphicsLayer*, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
76 void addRenderLayerBacking(ErrorString*, RenderLayerBacking*, Node*, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
InspectorRuntimeAgent.h 66 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
71 const RefPtr<JSONArray>* optionalArguments,
75 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
78 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties);
TimelineRecordFactory.cpp 48 RefPtr<JSONObject> record = JSONObject::create();
52 RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(maxCallStackDepth, true);
62 RefPtr<JSONObject> record = JSONObject::create();
70 RefPtr<JSONObject> data = JSONObject::create();
77 RefPtr<JSONObject> data = JSONObject::create();
85 RefPtr<JSONObject> data = JSONObject::create();
92 RefPtr<JSONObject> data = JSONObject::create();
99 RefPtr<JSONObject> data = JSONObject::create();
108 RefPtr<JSONObject> data = JSONObject::create();
116 RefPtr<JSONObject> data = JSONObject::create()
    [all...]
ScriptDebugListener.h 80 virtual SkipPauseRequest shouldSkipExceptionPause(RefPtr<JavaScriptCallFrame>& topFrame) = 0;
81 virtual SkipPauseRequest shouldSkipBreakpointPause(RefPtr<JavaScriptCallFrame>& topFrame) = 0;
82 virtual SkipPauseRequest shouldSkipStepPause(RefPtr<JavaScriptCallFrame>& topFrame) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/loader/archive/
ArchiveResourceCollection.cpp 46 const Vector<RefPtr<ArchiveResource> >& subresources = archive->subresources();
47 for (Vector<RefPtr<ArchiveResource> >::const_iterator iterator = subresources.begin(); iterator != subresources.end(); ++iterator)
50 const Vector<RefPtr<MHTMLArchive> >& subframes = archive->subframeArchives();
51 for (Vector<RefPtr<MHTMLArchive> >::const_iterator iterator = subframes.begin(); iterator != subframes.end(); ++iterator) {
52 RefPtr<MHTMLArchive> archive = *iterator;
88 RefPtr<MHTMLArchive> archive = m_subframes.take(frameName);
MHTMLArchive.h 37 #include "wtf/RefPtr.h"
63 const Vector<RefPtr<ArchiveResource> >& subresources() const { return m_subresources; }
64 const Vector<RefPtr<MHTMLArchive> >& subframeArchives() const { return m_subframeArchives; }
75 void clearAllSubframeArchivesImpl(Vector<RefPtr<MHTMLArchive> >* clearedArchives);
77 RefPtr<ArchiveResource> m_mainResource;
78 Vector<RefPtr<ArchiveResource> > m_subresources;
79 Vector<RefPtr<MHTMLArchive> > m_subframeArchives;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFilterBuilder.h 66 HashMap<AtomicString, RefPtr<FilterEffect> >::iterator end = m_builtinEffects.end();
67 for (HashMap<AtomicString, RefPtr<FilterEffect> >::iterator iterator = m_builtinEffects.begin(); iterator != end; ++iterator)
71 HashMap<AtomicString, RefPtr<FilterEffect> > m_builtinEffects;
72 HashMap<AtomicString, RefPtr<FilterEffect> > m_namedEffects;
75 HashMap<RefPtr<FilterEffect>, FilterEffectSet> m_effectReferences;
78 RefPtr<FilterEffect> m_lastEffect;
  /external/chromium_org/third_party/WebKit/Source/weborigin/
SecurityOriginHash.h 34 #include "wtf/RefPtr.h"
48 static unsigned hash(const RefPtr<SecurityOrigin>& origin)
63 static bool equal(SecurityOrigin* a, const RefPtr<SecurityOrigin>& b)
67 static bool equal(const RefPtr<SecurityOrigin>& a, SecurityOrigin* b)
71 static bool equal(const RefPtr<SecurityOrigin>& a, const RefPtr<SecurityOrigin>& b)
84 template<> struct DefaultHash<RefPtr<WebCore::SecurityOrigin> > {
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLGetInfo.h 39 #include "wtf/RefPtr.h"
126 RefPtr<WebGLBuffer> m_webglBuffer;
127 RefPtr<Float32Array> m_webglFloatArray;
128 RefPtr<WebGLFramebuffer> m_webglFramebuffer;
129 RefPtr<Int32Array> m_webglIntArray;
131 // RefPtr<WebGLObjectArray> m_webglObjectArray;
132 RefPtr<WebGLProgram> m_webglProgram;
133 RefPtr<WebGLRenderbuffer> m_webglRenderbuffer;
134 RefPtr<WebGLTexture> m_webglTexture;
135 RefPtr<Uint8Array> m_webglUnsignedByteArray
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBasicShapes.h 35 #include "wtf/RefPtr.h"
93 RefPtr<CSSPrimitiveValue> m_y;
94 RefPtr<CSSPrimitiveValue> m_x;
95 RefPtr<CSSPrimitiveValue> m_width;
96 RefPtr<CSSPrimitiveValue> m_height;
97 RefPtr<CSSPrimitiveValue> m_radiusX;
98 RefPtr<CSSPrimitiveValue> m_radiusY;
129 RefPtr<CSSPrimitiveValue> m_right;
130 RefPtr<CSSPrimitiveValue> m_top;
131 RefPtr<CSSPrimitiveValue> m_bottom
    [all...]
CSSReflectValue.h 31 #include "wtf/RefPtr.h"
65 RefPtr<CSSPrimitiveValue> m_direction;
66 RefPtr<CSSPrimitiveValue> m_offset;
67 RefPtr<CSSValue> m_mask;
CSSSegmentedFontFace.h 73 HashMap<unsigned, RefPtr<SegmentedFontData> > m_fontDataTable;
74 Vector<RefPtr<CSSFontFace>, 1> m_fontFaces;
75 Vector<RefPtr<LoadFontCallback> > m_callbacks;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemCallbacks.h 78 RefPtr<ErrorCallback> m_errorCallback;
91 RefPtr<EntryCallback> m_successCallback;
92 RefPtr<DOMFileSystemBase> m_fileSystem;
105 RefPtr<EntriesCallback> m_successCallback;
106 RefPtr<DirectoryReaderBase> m_directoryReader;
118 RefPtr<FileSystemCallback> m_successCallback;
119 RefPtr<ScriptExecutionContext> m_scriptExecutionContext;
130 RefPtr<EntryCallback> m_successCallback;
131 RefPtr<ScriptExecutionContext> m_scriptExecutionContext;
143 RefPtr<MetadataCallback> m_successCallback
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
EventContext.h 34 #include "wtf/RefPtr.h"
50 void adoptEventPath(Vector<RefPtr<Node> >&);
62 RefPtr<Node> m_node;
63 RefPtr<EventTarget> m_currentTarget;
64 RefPtr<EventTarget> m_target;
65 RefPtr<NodeList> m_eventPath;
80 RefPtr<EventTarget> m_relatedTarget;
97 RefPtr<TouchList> m_touches;
98 RefPtr<TouchList> m_targetTouches;
99 RefPtr<TouchList> m_changedTouches
    [all...]
EventDispatcher.h 73 RefPtr<Node> m_node;
74 RefPtr<Event> m_event;
75 RefPtr<FrameView> m_view;
MutationObserver.h 38 #include "wtf/RefPtr.h"
79 Vector<RefPtr<MutationRecord> > takeRecords();
97 RefPtr<MutationCallback> m_callback;
98 Vector<RefPtr<MutationRecord> > m_records;
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtrHashMap.h 26 // This specialization is a copy of HashMap for use with RefPtr keys, with overloaded functions
27 // to allow for lookup by pointer instead of RefPtr, avoiding ref-count churn.
32 class HashMap<RefPtr<T>, MappedArg, HashArg, KeyTraitsArg, MappedTraitsArg> {
115 inline void HashMap<RefPtr<T>, U, V, W, X>::swap(HashMap& other)
121 inline int HashMap<RefPtr<T>, U, V, W, X>::size() const
127 inline int HashMap<RefPtr<T>, U, V, W, X>::capacity() const
133 inline bool HashMap<RefPtr<T>, U, V, W, X>::isEmpty() const
139 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::begin()
145 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::end(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCallback.h 50 virtual bool callbackWithStringList(RefPtr<DOMStringList> listParam);
52 virtual bool callbackWithSequence(Vector<RefPtr<TestObj> > sequenceParam);
61 RefPtr<DOMWrapperWorld> m_world;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimeline.h 39 #include "wtf/RefPtr.h"
72 Vector<RefPtr<Player> > m_players;
80 RefPtr<EventTarget> target;
81 RefPtr<Event> event;
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ResourceFetcherTest.cpp 54 RefPtr<DocumentLoader> documentLoader = DocumentLoader::create(ResourceRequest(testURL), SubstituteData());
55 RefPtr<HTMLDocument> document = HTMLDocument::create();
56 RefPtr<ResourceFetcher> fetcher(documentLoader->fetcher());

Completed in 1536 milliseconds

1 2 34 5 6 7 8 91011>>