Searched refs:Vector (Results 176 - 200 of 2082) sorted by relevance

1234567891011>>

/external/junit/src/junit/runner/
H A DSorter.java3 import java.util.Vector;
12 public void swap(Vector values, int left, int right);
15 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
/external/v8/src/
H A Dutils.h299 class Vector { class in namespace:v8::internal
301 Vector() : start_(NULL), length_(0) {} function in class:v8::internal::Vector
302 Vector(T* data, int length) : start_(data), length_(length) { function in class:v8::internal::Vector
306 static Vector<T> New(int length) {
307 return Vector<T>(NewArray<T>(length), length);
312 Vector<T> SubVector(int from, int to) {
316 return Vector<T>(start() + from, to - from);
341 Vector<T> Clone() const {
344 return Vector<T>(result, length_);
372 inline Vector<
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DSourceProviderCacheItem.h27 #include <wtf/Vector.h>
62 Vector<RefPtr<StringImpl> > usedVariables;
63 Vector<RefPtr<StringImpl> > writtenVariables;
/external/webkit/Source/WebCore/dom/
H A DScriptRunner.h33 #include <wtf/Vector.h>
61 Vector<PendingScript> m_scriptsToExecuteInOrder;
62 Vector<PendingScript> m_scriptsToExecuteSoon; // http://www.whatwg.org/specs/web-apps/current-work/#set-of-scripts-that-will-execute-as-soon-as-possible
H A DDocumentMarkerController.h32 #include <wtf/Vector.h>
70 Vector<DocumentMarker> markersForNode(Node*);
71 Vector<DocumentMarker> markersInRange(Range*, DocumentMarker::MarkerType);
72 Vector<IntRect> renderedRectsForMarkers(DocumentMarker::MarkerType);
80 typedef std::pair<Vector<DocumentMarker>, Vector<IntRect> > MarkerMapVectorPair;
/external/webkit/Source/WebCore/page/
H A DUserContentURLPattern.h30 #include <wtf/Vector.h>
56 static bool matchesPatterns(const KURL&, const Vector<String>* whitelist, const Vector<String>* blacklist);
/external/webkit/Source/WebCore/platform/android/
H A DPlatformTouchEventAndroid.cpp41 PlatformTouchEvent::PlatformTouchEvent(const Vector<int>& ids, const Vector<IntPoint>& windowPoints, TouchEventType type, const Vector<PlatformTouchPoint::State>& states, int metaState)
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DTexture.h39 #include <wtf/Vector.h>
57 Texture(GraphicsContext3D*, PassOwnPtr<Vector<unsigned int> > tileTextureIds, Format format, int width, int height, int maxTextureSize);
61 OwnPtr<Vector<unsigned int> > m_tileTextureIds;
/external/webkit/Source/WebCore/platform/network/
H A DProxyServer.h29 #include <wtf/Vector.h>
71 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*);
75 String toString(const Vector<ProxyServer>&);
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuQt.cpp76 Vector<ContextMenuItem> contextMenuItemVector(const QList<ContextMenuItem>* items)
79 Vector<ContextMenuItem> menuItemVector(itemCount);
85 PlatformMenuDescription platformMenuDescription(Vector<ContextMenuItem>& menuItemVector)
H A DTemporaryLinkStubsQt.cpp74 Vector<String> PluginDatabase::defaultPluginDirectories()
77 return Vector<String>();
107 void getSupportedKeySizes(Vector<String>&)
/external/webkit/Source/WebCore/rendering/
H A DAutoTableLayout.h26 #include <wtf/Vector.h>
70 Vector<Layout, 4> m_layoutStruct;
71 Vector<RenderTableCell*, 4> m_spanCells;
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextChunk.h52 Vector<SVGInlineTextBox*>& boxes() { return m_boxes; }
53 const Vector<SVGInlineTextBox*>& boxes() const { return m_boxes; }
62 Vector<SVGInlineTextBox*> m_boxes;
H A DSVGTextLayoutAttributesBuilder.h25 #include <wtf/Vector.h>
64 void propagateLayoutAttributes(RenderObject*, Vector<SVGTextLayoutAttributes>& allAttributes, unsigned& atCharacter, UChar& lastCharacter) const;
68 Vector<TextPosition> m_textPositions;
/external/webkit/Source/WebCore/svg/
H A DGradientAttributes.h44 const Vector<Gradient::ColorStop>& stops() const { return m_stops; }
64 void setStops(const Vector<Gradient::ColorStop>& value)
80 Vector<Gradient::ColorStop> m_stops;
/external/webkit/Source/WebKit/android/jni/
H A DWebIconDatabase.h33 #include <wtf/Vector.h>
67 Vector<WebIconDatabaseClient*> mClients;
70 Vector<WTF::String> mNotifications;
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKPrintingView.h41 Vector<WebCore::IntRect> _printingPageRects;
43 HashMap<WebCore::IntRect, Vector<uint8_t> > _pagePreviews;
45 Vector<uint8_t> _printedPagesData;
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginProcessManager.h35 #include <wtf/Vector.h>
57 void clearSiteData(const PluginInfoStore::Plugin&, WebPluginSiteDataManager*, const Vector<String>& sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID);
67 Vector<PluginProcessProxy*> m_pluginProcesses;
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/
H A DPluginInfoStoreMac.mm39 Vector<String> PluginInfoStore::pluginsDirectories()
41 Vector<String> pluginsDirectories;
56 Vector<String> PluginInfoStore::pluginPathsInDirectory(const String& directory)
58 Vector<String> pluginPaths;
69 Vector<String> PluginInfoStore::individualPluginPaths()
71 return Vector<String>();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DVectorTest.java27 import java.util.Vector;
33 private Vector tVector = new Vector();
40 * @tests java.util.Vector#Vector()
43 // Test for method java.util.Vector()
45 Vector tv = new Vector(100);
50 tv = new Vector(200);
55 Vector
[all...]
/external/webkit/Source/WebCore/platform/
H A DSharedBuffer.h33 #include <wtf/Vector.h>
60 static PassRefPtr<SharedBuffer> adoptVector(Vector<char>& vector);
135 const Vector<char>& buffer() const;
142 mutable Vector<char> m_buffer;
143 mutable Vector<char*> m_segments;
146 mutable Vector<RetainPtr<CFDataRef> > m_dataArray;
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEConvolveMatrix.h32 #include <wtf/Vector.h>
49 bool, const Vector<float>&);
54 const Vector<float>& kernel() const;
55 void setKernel(const Vector<float>&);
84 const IntPoint&, EdgeModeType, const FloatPoint&, bool, const Vector<float>&);
113 Vector<float> m_kernelMatrix;
/external/webkit/Source/WebCore/platform/mac/
H A DMIMETypeRegistryMac.mm43 Vector<String> MIMETypeRegistry::getExtensionsForMIMEType(const String& type)
46 Vector<String> stringsVector = Vector<String>();
/external/webkit/Source/WebCore/plugins/
H A DPluginDatabase.h34 #include <wtf/Vector.h>
67 Vector<PluginPackage*> plugins() const;
78 void setPluginDirectories(const Vector<String>& directories)
84 static Vector<String> defaultPluginDirectories();
85 Vector<String> pluginDirectories() const { return m_pluginDirectories; }
107 Vector<String> m_pluginDirectories;
/external/webkit/Source/WebCore/xml/
H A DXPathStep.h67 Vector<Predicate*>& mergedPredicates() { return m_mergedPredicates; }
68 const Vector<Predicate*>& mergedPredicates() const { return m_mergedPredicates; }
76 Vector<Predicate*> m_mergedPredicates;
79 Step(Axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates = Vector<Predicate*>());
99 Vector<Predicate*> m_predicates;

Completed in 509 milliseconds

1234567891011>>