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

1234567891011>>

/external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
H A DVector.h1 #include <JavaScriptCore/Vector.h>
/external/webkit/Source/WebCore/platform/network/soup/
H A DProxyServerSoup.cpp33 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
36 return Vector<ProxyServer>();
/external/webkit/Source/WebCore/platform/network/win/
H A DProxyServerWin.cpp31 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
34 return Vector<ProxyServer>();
/external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
H A DVector.h1 #import <JavaScriptCore/Vector.h>
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebProcessProxyWin.cpp31 Vector<HWND> WebProcessProxy::windowsToReceiveSentMessagesWhileWaitingForSyncReply()
33 return Vector<HWND>();
/external/webkit/Tools/DumpRenderTree/
H A DCyclicRedundancyCheck.h34 #include <wtf/Vector.h>
36 unsigned computeCrc(const Vector<unsigned char>&);
/external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
H A DVector.h1 #include <JavaScriptCore/Vector.h>
/external/clang/test/CodeGenCXX/
H A Dnoinline-template.cpp6 // CHECK: define linkonce_odr void @_ZN6VectorIiE13growStorageByEv(%struct.Vector* %this) nounwind noinline
8 template <class Ty> struct Vector { struct
11 template <class T> __attribute__((noinline)) void Vector<T>::growStorageBy() {
14 Vector<int> strs;
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DVector.h3 #include <JavaScriptCore/Vector.h>
/external/webkit/Source/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/Source/WebCore/platform/network/android/
H A DProxyServerAndroid.cpp34 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
37 return Vector<ProxyServer>();
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextLayoutAttributes.h25 #include <wtf/Vector.h>
39 Vector<float> xValues;
40 Vector<float> yValues;
41 Vector<float> dxValues;
42 Vector<float> dyValues;
43 Vector<float> rotateValues;
58 Vector<float>& xValues() { return m_positioningLists.xValues; }
59 const Vector<float>& xValues() const { return m_positioningLists.xValues; }
61 Vector<float>& yValues() { return m_positioningLists.yValues; }
62 const Vector<floa
[all...]
/external/webkit/Source/WebKit2/UIProcess/Plugins/gtk/
H A DPluginInfoStoreGtk.cpp38 Vector<String> PluginInfoStore::pluginsDirectories()
41 return Vector<String>();
44 Vector<String> PluginInfoStore::pluginPathsInDirectory(const String& directory)
47 return Vector<String>();
50 Vector<String> PluginInfoStore::individualPluginPaths()
52 return Vector<String>();
/external/clang/test/SemaCXX/
H A Dfor-range-unused.cpp6 struct Vector { struct
19 Vector<int> vector;
/external/webkit/Source/WebCore/platform/network/curl/
H A DProxyServerCurl.cpp34 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
37 return Vector<ProxyServer>();
/external/webkit/Source/WebKit/android/wds/client/
H A DDeviceList.h29 #include <utils/Vector.h>
33 typedef android::Vector<Device*> DeviceList;
/external/webkit/Source/WebCore/platform/text/
H A DLineEnding.h36 #include <wtf/Vector.h>
44 void normalizeLineEndingsToCR(const CString& from, Vector<char>& result);
47 void normalizeLineEndingsToLF(const CString& from, Vector<char>& result);
51 void normalizeLineEndingsToNative(const CString& from, Vector<char>& result);
H A DBase64.h30 #include <wtf/Vector.h>
38 void base64Encode(const char*, unsigned, Vector<char>&, bool insertLFs = false);
39 void base64Encode(const Vector<char>&, Vector<char>&, bool insertLFs = false);
40 void base64Encode(const CString&, Vector<char>&, bool insertLFs = false);
42 String base64Encode(const Vector<char>&, bool insertLFs = false);
45 bool base64Decode(const String&, Vector<char>&, Base64DecodePolicy = FailOnInvalidCharacter);
46 bool base64Decode(const Vector<char>&, Vector<char>&, Base64DecodePolicy = FailOnInvalidCharacter);
47 bool base64Decode(const char*, unsigned, Vector<cha
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DNoSuchElementExceptionTest.java21 import java.util.Vector;
32 Vector v = new Vector();
48 Vector v = new Vector();
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEColorMatrix.h29 #include <wtf/Vector.h>
43 static PassRefPtr<FEColorMatrix> create(Filter*, ColorMatrixType, const Vector<float>&);
48 const Vector<float>& values() const;
49 bool setValues(const Vector<float>&);
57 FEColorMatrix(Filter*, ColorMatrixType, const Vector<float>&);
60 Vector<float> m_values;
/external/llvm/include/llvm/ADT/
H A DSmallSet.h35 SmallVector<T, N> Vector; member in class:llvm::SmallSet
42 bool empty() const { return Vector.empty() && Set.empty(); }
44 return isSmall() ? Vector.size() : Set.size();
51 return vfind(V) != Vector.end();
63 if (I != Vector.end()) // Don't reinsert if it already exists.
65 if (Vector.size() < N) {
66 Vector.push_back(V);
71 while (!Vector.empty()) {
72 Set.insert(Vector.back());
73 Vector
[all...]
/external/android-mock/tests/com/google/android/testing/mocking/
H A DFileUtilsTest.java21 import java.util.Vector;
45 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.CUPCAKE));
47 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.DONUT));
49 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.ECLAIR_0_1));
51 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.ECLAIR_MR1));
53 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.FROYO));
55 FileUtils.getInterfaceNameFor(Vector.class, SdkVersion.UNKNOWN));
60 FileUtils.getSubclassNameFor(Vector.class, SdkVersion.CUPCAKE));
62 FileUtils.getSubclassNameFor(Vector.class, SdkVersion.DONUT));
64 FileUtils.getSubclassNameFor(Vector
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-typed-test2_test.cc42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
/external/clang/test/Index/
H A Dfile-refs.c14 } Vector; typedef in typeref:struct:__anon3534
16 int vector_get_x(Vector v) {
47 // CHECK-NEXT: TypeRef=Vector:14:3
48 // CHECK-NEXT: TypedefDecl=Vector:14:3 (Definition) =[14:3 - 14:9]
49 // CHECK-NEXT: TypeRef=Vector:14:3 =[16:18 - 16:24]
/external/webkit/Source/WebCore/platform/
H A DSSLKeyGenerator.h29 #include <wtf/Vector.h>
39 void getSupportedKeySizes(Vector<String>& sizes);

Completed in 487 milliseconds

1234567891011>>