Searched defs:Vector (Results 1 - 25 of 63) sorted by relevance

123

/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;
H A Dmangle-ms-arg-qualifiers.cpp63 typedef double Vector[3]; typedef
65 void foo(Vector*) {}
68 void foo(Vector) {}
71 void foo_const(const Vector) {} argument
74 void foo_volatile(volatile Vector) {} argument
77 void foo(Vector*, const Vector, const double) {} argument
/external/clang/test/Index/
H A Dfile-refs.c14 } Vector; typedef in typeref:struct:__anon4429
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]
H A Dtargeted-top.h17 } Vector; typedef in typeref:struct:__anon4434
19 static inline int vector_get_x(Vector v) {
/external/clang/test/SemaCXX/
H A Dfor-range-unused.cpp6 struct Vector { struct
19 Vector<int> vector;
H A Dliteral-type.cpp11 typedef int Vector __attribute__((vector_size(16))); typedef
13 static_assert(__is_literal(Vector), "fail");
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebPageProxyQt.cpp39 void WebPageProxy::saveRecentSearches(const String&, const Vector<String>&) argument
44 void WebPageProxy::loadRecentSearches(const String&, Vector<String>&)
/external/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h1 //===------ Math.h - PBQP Vector and Matrix classes -------------*- C++ -*-===//
21 /// \brief PBQP Vector class.
22 class Vector { class in namespace:PBQP
26 explicit Vector(unsigned length) : function in class:PBQP::Vector
31 Vector(unsigned length, PBQPNum initVal) : function in class:PBQP::Vector
37 Vector(const Vector &v) : function in class:PBQP::Vector
43 ~Vector() { delete[] data; }
46 Vector& operator=(const Vector
[all...]
/external/webkit/Source/WebCore/platform/efl/
H A DSearchPopupMenuEfl.cpp40 void SearchPopupMenuEfl::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
45 void SearchPopupMenuEfl::loadRecentSearches(const AtomicString&, Vector<String>&)
/external/webkit/Source/WebCore/platform/gtk/
H A DSearchPopupMenuGtk.cpp37 void SearchPopupMenuGtk::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
42 void SearchPopupMenuGtk::loadRecentSearches(const AtomicString&, Vector<String>&)
/external/webkit/Source/WebCore/storage/
H A DIDBKeyPathBackendImpl.cpp35 void IDBKeyPathBackendImpl::createIDBKeysFromSerializedValuesAndKeyPath(const Vector<RefPtr<SerializedScriptValue>&, 0> values, const String& keyPath, Vector<RefPtr<IDBKey>, 0>& keys) argument
/external/webkit/Source/WebCore/storage/chromium/
H A DIDBKeyPathBackendImpl.cpp37 void IDBKeyPathBackendImpl::createIDBKeysFromSerializedValuesAndKeyPath(const Vector<RefPtr<SerializedScriptValue>, 0>& values, const String& keyPath, Vector<RefPtr<IDBKey>, 0>& keys) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DSearchPopupMenuQt.cpp36 void SearchPopupMenuQt::saveRecentSearches(const AtomicString&, const Vector<String>&) argument
40 void SearchPopupMenuQt::loadRecentSearches(const AtomicString&, Vector<String>&)
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFormClient.cpp36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy* listener) argument
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebPageProxyGtk.cpp42 void WebPageProxy::getEditorCommandsForKeyEvent(Vector<WTF::String>& commandsList)
47 void WebPageProxy::saveRecentSearches(const String&, const Vector<String>&) argument
52 void WebPageProxy::loadRecentSearches(const String&, Vector<String>&)
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_vector.h25 class Vector { class in namespace:__tsan
27 explicit Vector(MBlockType typ) function in class:__tsan::Vector
34 ~Vector() {
105 Vector(const Vector&);
106 void operator=(const Vector&);
/external/chromium/base/
H A Dstack_container_unittest.cc32 TEST(StackContainer, Vector) {
76 typedef StackVector<scoped_refptr<Dummy>, 2> Vector; typedef
77 typedef Vector::ContainerType Container;
78 Vector vect;
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-right.h82 template<typename T> class Vector { class
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h29 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
31 std::vector<T> Vector; member in class:llvm::UniqueVector
44 Val = static_cast<unsigned>(Vector.size()) + 1;
47 Vector.push_back(Entry);
68 return Vector[ID - 1];
73 size_t size() const { return Vector.size(); }
77 bool empty() const { return Vector.empty(); }
83 Vector.resize(0, 0);
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/webkit/Source/WebCore/platform/android/
H A DSearchPopupMenuAndroid.h50 virtual void saveRecentSearches(const AtomicString&, const Vector<String>&) { } argument
51 virtual void loadRecentSearches(const AtomicString&, Vector<String>&) { }
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBKeyPath.cpp34 #include <wtf/Vector.h>
42 WTF::Vector<IDBKeyPathElement> idbElements;
48 WebIDBKeyPath::WebIDBKeyPath(const WTF::Vector<IDBKeyPathElement>& elements, int parseError)
49 : m_private(new WTF::Vector<IDBKeyPathElement>(elements))
62 m_private.reset(new WTF::Vector<IDBKeyPathElement>(keyPath));
70 WebIDBKeyPath::operator const WTF::Vector<IDBKeyPathElement, 0>&() const
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageFormClient.cpp86 void InjectedBundlePageFormClient::willSubmitForm(WebPage* page, HTMLFormElement* formElement, WebFrame* frame, WebFrame* sourceFrame, const Vector<std::pair<String, String> >& values, RefPtr<APIObject>& userData) argument
/external/chromium/testing/gtest/test/
H A Dgtest-typed-test_test.cc62 typedef std::vector<T> Vector; typedef in class:CommonTest
104 typename TestFixture::Vector empty;
/external/clang/include/clang/AST/
H A DDeclContextInternals.h50 if (DeclsTy *Vector = getAsVector())
51 delete Vector;
55 if (DeclsTy *Vector = getAsVector())
56 delete Vector;
117 DeclsTy &Vector = *getAsVector(); local
120 return DeclContext::lookup_result(&Vector[0], &Vector[0]+Vector.size());

Completed in 5355 milliseconds

123