Searched refs:Vector (Results 1 - 25 of 1100) sorted by relevance

1234567891011>>

/external/webkit/WebCore/platform/text/
H A DBase64.h29 #include <wtf/Vector.h>
33 void base64Encode(const Vector<char>&, Vector<char>&, bool insertLFs = false);
34 void base64Encode(const char*, unsigned, Vector<char>&, bool insertLFs = false);
37 bool base64Decode(const Vector<char>&, Vector<char>&);
38 bool base64Decode(const char*, unsigned, Vector<char>&);
/external/webkit/JavaScriptGlue/ForwardingHeaders/wtf/
H A DVector.h1 #include <JavaScriptCore/Vector.h>
/external/webkit/WebKit/mac/ForwardingHeaders/wtf/
H A DVector.h1 #import <JavaScriptCore/Vector.h>
/external/webkit/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/
H A DVector.h1 #include <JavaScriptCore/Vector.h>
/external/webkit/WebCore/ForwardingHeaders/wtf/
H A DVector.h3 #include <JavaScriptCore/Vector.h>
/external/webkit/WebCore/platform/graphics/
H A DDashArray.h29 #include <wtf/Vector.h>
32 typedef Vector<CGFloat> DashArray;
34 typedef Vector<double> DashArray;
36 typedef Vector<float> DashArray;
/external/webkit/WebKit/android/wds/client/
H A DDeviceList.h29 #include <utils/Vector.h>
33 typedef android::Vector<Device*> DeviceList;
/external/webkit/WebCore/svg/graphics/filters/
H A DSVGFEMerge.h28 #include <wtf/Vector.h>
34 static PassRefPtr<FEMerge> create(const Vector<RefPtr<FilterEffect> >&);
36 const Vector<RefPtr<FilterEffect> >& mergeInputs() const;
37 void setMergeInputs(const Vector<RefPtr<FilterEffect> >& mergeInputs);
45 FEMerge(const Vector<RefPtr<FilterEffect> >&);
47 Vector<RefPtr<FilterEffect> > m_mergeInputs;
/external/webkit/WebCore/platform/
H A DSSLKeyGenerator.h29 #include <wtf/Vector.h>
39 void getSupportedKeySizes(Vector<String>& sizes);
H A DSearchPopupMenu.h25 #include <wtf/Vector.h>
35 void saveRecentSearches(const AtomicString& name, const Vector<String>& searchItems);
36 void loadRecentSearches(const AtomicString& name, Vector<String>& searchItems);
H A DThreadTimers.h32 #include <wtf/Vector.h>
47 Vector<TimerBase*>& timerHeap() { return m_timerHeap; }
58 Vector<TimerBase*> m_timerHeap;
/external/webkit/WebCore/platform/qt/
H A DSearchPopupMenuQt.cpp32 void SearchPopupMenu::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
36 void SearchPopupMenu::loadRecentSearches(const AtomicString&, Vector<String>&)
H A DTemporaryLinkStubs.cpp78 Vector<String> PluginDatabase::defaultPluginDirectories()
81 return Vector<String>();
98 void getSupportedKeySizes(Vector<String>&)
/external/v8/src/
H A Dnatives.h34 typedef bool (*NativeSourceCallback)(Vector<const char> name,
35 Vector<const char> source,
55 static Vector<const char> GetScriptSource(int index);
56 static Vector<const char> GetScriptName(int index);
/external/webkit/WebCore/platform/haiku/
H A DTemporaryLinkStubs.cpp44 Vector<char> loadResourceIntoArray(const char*)
47 return Vector<char>();
57 void getSupportedKeySizes(Vector<String>&)
/external/webkit/WebCore/page/
H A DUserScript.h33 #include <wtf/Vector.h>
40 PassOwnPtr<Vector<String> > whitelist, PassOwnPtr<Vector<String> > blacklist,
52 const Vector<String>* whitelist() const { return m_whitelist.get(); }
53 const Vector<String>* blacklist() const { return m_blacklist.get(); }
59 OwnPtr<Vector<String> > m_whitelist;
60 OwnPtr<Vector<String> > m_blacklist;
H A DUserStyleSheet.h33 #include <wtf/Vector.h>
40 PassOwnPtr<Vector<String> > whitelist, PassOwnPtr<Vector<String> > blacklist)
50 const Vector<String>* whitelist() const { return m_whitelist.get(); }
51 const Vector<String>* blacklist() const { return m_blacklist.get(); }
56 OwnPtr<Vector<String> > m_whitelist;
57 OwnPtr<Vector<String> > m_blacklist;
/external/webkit/WebCore/platform/graphics/filters/
H A DFEColorMatrix.h29 #include <wtf/Vector.h>
43 static PassRefPtr<FEColorMatrix> create(FilterEffect*, ColorMatrixType, const Vector<float>&);
48 const Vector<float>& values() const;
49 void setValues(const Vector<float>&);
56 FEColorMatrix(FilterEffect*, ColorMatrixType, const Vector<float>&);
60 Vector<float> m_values;
/external/webkit/WebCore/bindings/v8/custom/
H A DV8NamedNodesCollection.h37 #include <wtf/Vector.h>
43 explicit V8NamedNodesCollection(const Vector<RefPtr<Node> >& nodes)
50 Vector<RefPtr<Node> > m_nodes;
/external/webkit/WebCore/css/
H A DMediaQuery.h32 #include <wtf/Vector.h>
43 MediaQuery(Restrictor r, const String& mediaType, Vector<MediaQueryExp*>* exprs);
47 const Vector<MediaQueryExp*>* expressions() const { return m_expressions; }
56 Vector<MediaQueryExp*>* m_expressions;
/external/webkit/WebCore/dom/
H A DClientRectList.h33 #include <wtf/Vector.h>
42 static PassRefPtr<ClientRectList> create(const Vector<FloatQuad>& quads) { return adoptRef(new ClientRectList(quads)); }
50 ClientRectList(const Vector<FloatQuad>&);
52 Vector<RefPtr<ClientRect> > m_list;
H A DStaticNodeList.h35 #include <wtf/Vector.h>
44 static PassRefPtr<StaticNodeList> adopt(Vector<RefPtr<Node> >& nodes)
54 StaticNodeList(Vector<RefPtr<Node> >& nodes)
58 Vector<RefPtr<Node> > m_nodes;
/external/webkit/WebCore/html/canvas/
H A DCanvasNumberArray.h31 #include <wtf/Vector.h>
42 Vector<float>& data() { return m_data; }
43 const Vector<float>& data() const { return m_data; }
50 Vector<float> m_data;
/external/webkit/WebCore/platform/graphics/chromium/
H A DIconChromiumMac.cpp42 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>&) argument
/external/webkit/WebCore/platform/win/
H A DTemporaryLinkStubs.cpp35 void getSupportedKeySizes(Vector<String>&) { notImplemented(); }

Completed in 188 milliseconds

1234567891011>>