Searched refs:vector (Results 1 - 25 of 1085) sorted by relevance

1234567891011>>

/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/backward/
H A Dbvector.h60 #include <vector>
62 typedef std::vector<bool, std::allocator<bool> > bit_vector;
H A Dvector.h62 #include <vector>
64 using std::vector;
/macosx-10.9.5/xnu-2422.115.4/pexpert/i386/
H A Dpe_interrupt.c55 i386_interrupt_handler_t *vector; local
57 vector = &PE_interrupt_handler;
60 DTRACE_INT5(interrupt_start, void *, vector->nub, int, 0,
61 void *, vector->target, IOInterruptHandler, vector->handler,
62 void *, vector->refCon);
65 vector->handler(vector->target, NULL, vector->nub, interrupt);
68 DTRACE_INT5(interrupt_complete, void *, vector
80 i386_interrupt_handler_t *vector; local
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-weak/
H A Dbundle.cxx23 #include <vector>
31 std::vector<int>().at(1);
/macosx-10.9.5/swig-10/Lib/ruby/
H A Dstd_vector.i9 struct traits_asptr<std::vector<T> > {
10 static int asptr(VALUE obj, std::vector<T> **vec) {
11 return traits_asptr_stdseq<std::vector<T> >::asptr(obj, vec);
16 struct traits_from<std::vector<T> > {
17 static VALUE from(const std::vector<T>& vec) {
18 return traits_from_stdseq<std::vector<T> >::from(vec);
37 %mixin std::vector "Enumerable";
38 %ignore std::vector::push_back;
39 %ignore std::vector::pop_back;
42 %rename("delete") std::vector
[all...]
H A Dstd_vectora.i9 struct traits_asptr<std::vector<T,A> > {
10 typedef std::vector<T,A> vector_type;
18 struct traits_from<std::vector<T,A> > {
19 typedef std::vector<T,A> vector_type;
31 %mixin std::vector "Enumerable";
32 %ignore std::vector::push_back;
33 %ignore std::vector::pop_back;
34 %alias std::vector::push "<<";
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DProfileInfoLoader.h19 #include <vector>
31 std::vector<std::string> CommandLines;
32 std::vector<unsigned> FunctionCounts;
33 std::vector<unsigned> BlockCounts;
34 std::vector<unsigned> EdgeCounts;
35 std::vector<unsigned> OptimalEdgeCounts;
36 std::vector<unsigned> BBTrace;
52 const std::vector<unsigned> &getRawFunctionCounts() const {
59 const std::vector<unsigned> &getRawBlockCounts() const {
66 const std::vector<unsigne
[all...]
/macosx-10.9.5/swig-10/Lib/lua/
H A Dstd_vector.i7 * std::vector typemaps for LUA
11 #include <vector>
15 A really cut down version of the vector class.
17 Note: this does not match the true std::vector class
23 It would be useful to have a vector<->Lua table conversion routine
29 class vector {
31 vector();
32 vector(unsigned int);
33 vector(const vector
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Examples/drvGenericInterruptController/
H A DGenericInterruptController.cpp126 IOInterruptVector *vector; local
135 // Get the vector's date from the controller's array.
136 vector = &vectors[vectorNumber];
138 // Set the vector as active. This store must compleat before
141 vector->interruptActive = 1;
145 // If the vector is not disabled soft, handle it.
146 if (!vector->interruptDisabledSoft) {
151 if (vector->interruptRegistered) {
152 vector->handler(vector
168 vectorCanBeShared(long vectorNumber, IOInterruptVector *vector) argument
175 initVector(long vectorNumber, IOInterruptVector *vector) argument
183 disableVectorHard(long vectorNumber, IOInterruptVector *vector) argument
190 enableVector(long vectorNumber, IOInterruptVector *vector) argument
197 causeVector(long vectorNumber, IOInterruptVector *vector) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOInterruptController.cpp62 IOInterruptVector *vector; local
76 vector = &vectors[vectorNumber];
78 // Get the lock for this vector.
79 IOLockLock(vector->interruptLock);
82 canBeShared = vectorCanBeShared(vectorNumber, vector);
94 wasAlreadyRegisterd = vector->interruptRegistered;
96 // If the vector is registered and can not be shared return error.
98 IOLockUnlock(vector->interruptLock);
102 // If this vector is already in use, and can be shared (implied),
106 // If this vector i
222 IOInterruptVector *vector; local
265 IOInterruptVector *vector; local
284 IOInterruptVector *vector; local
316 IOInterruptVector *vector; local
341 IOInterruptVector *vector; local
489 IOInterruptVector *vector = 0; local
553 IOInterruptVector *vector; local
612 IOInterruptVector *vector; local
644 IOInterruptVector *vector; local
683 IOInterruptVector *vector; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/efl/
H A DWKArrayEfl.cpp43 Vector<WKTypeRef> vector;
44 vector.reserveInitialCapacity(count);
49 vector.uncheckedAppend(createWKType(data));
51 return WKArrayCreateAdoptingValues(vector.data(), count);
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DBitSet.hpp12 #include <vector>
33 * others at runtime. It's really just a wrapper around vector<bool>,
42 ANTLR_USE_NAMESPACE(std)vector<bool> storage;
53 ANTLR_USE_NAMESPACE(std)vector<unsigned int> toArray() const;
/macosx-10.9.5/swig-10/Lib/octave/
H A Dstd_vector.i7 struct traits_asptr<std::vector<T> > {
8 static int asptr(const octave_value& obj, std::vector<T> **vec) {
9 return traits_asptr_stdseq<std::vector<T> >::asptr(obj, vec);
14 struct traits_from<std::vector<T> > {
15 static octave_value from(const std::vector<T>& vec) {
16 return traits_from_stdseq<std::vector<T> >::from(vec);
/macosx-10.9.5/swig-10/Lib/python/
H A Dstd_vector.i9 struct traits_asptr<std::vector<T> > {
10 static int asptr(PyObject *obj, std::vector<T> **vec) {
11 return traits_asptr_stdseq<std::vector<T> >::asptr(obj, vec);
16 struct traits_from<std::vector<T> > {
17 static PyObject *from(const std::vector<T>& vec) {
18 return traits_from_stdseq<std::vector<T> >::from(vec);
/macosx-10.9.5/swig-10/Lib/std/
H A Dstd_vector.i2 // std::vector
9 %define %std_vector_methods(vector...)
10 %std_sequence_methods(vector)
17 %define %std_vector_methods_val(vector...)
18 %std_sequence_methods_val(vector)
26 // std::vector
28 // The aim of all that follows would be to integrate std::vector with
34 // -- f(std::vector<T>), f(const std::vector<T>&):
36 // previously wrapped std::vector<
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DCodeGenIntrinsics.h18 #include <vector>
44 std::vector<MVT::SimpleValueType> RetVTs;
47 std::vector<Record*> RetTypeDefs;
53 std::vector<MVT::SimpleValueType> ParamVTs;
56 std::vector<Record*> ParamTypeDefs;
82 std::vector<std::pair<unsigned, ArgAttribute> > ArgumentAttributes;
89 std::vector<CodeGenIntrinsic> LoadIntrinsics(const RecordKeeper &RC,
/macosx-10.9.5/WebCore-7537.78.1/svg/properties/
H A DSVGAttributeToPropertyMap.cpp34 const PropertiesVector* vector = it->value.get(); local
35 ASSERT(vector);
38 // properties in a single vector are guaranteed to have the same attribute name.
39 // FIXME: This grows the vector one item at a time, even though we know up front exactly how many
40 // elements we are adding to the vector.
41 PropertiesVector::const_iterator vectorEnd = vector->end();
42 for (PropertiesVector::const_iterator vectorIt = vector->begin(); vectorIt != vectorEnd; ++vectorIt)
51 if (PropertiesVector* vector = m_map.get(info->attributeName)) {
52 vector->append(info);
56 OwnPtr<PropertiesVector> vector local
64 PropertiesVector* vector = m_map.get(attributeName); local
75 PropertiesVector* vector = m_map.get(attributeName); local
89 PropertiesVector* vector = it->value.get(); local
101 PropertiesVector* vector = m_map.get(attributeName); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLIdentifier.h48 HTMLIdentifier(const Vector<UChar, inlineCapacity>& vector, CharacterWidth width) argument
49 : m_index(findIndex(vector.data(), vector.size()))
54 m_string = StringImpl::create8BitIfPossible(vector);
56 m_string = String::make8BitFrom16BitSource(vector);
58 m_string = String(vector);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundleBackForwardListItem.cpp39 Vector<RefPtr<APIObject>> vector(size);
41 vector[i] = InjectedBundleBackForwardListItem::create(children[i]);
42 return ImmutableArray::adopt(vector);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DImmutableDictionary.cpp52 Vector<RefPtr<APIObject>> vector;
53 vector.reserveInitialCapacity(m_map.size());
58 vector.uncheckedAppend(WebString::create(*it));
60 return ImmutableArray::adopt(vector);
H A DWebOpenPanelParameters.cpp56 Vector<RefPtr<APIObject>> vector; local
57 vector.reserveInitialCapacity(size);
60 vector.uncheckedAppend(WebString::create(m_settings.acceptMIMETypes[i]));
61 return ImmutableArray::adopt(vector);
75 Vector<RefPtr<APIObject>> vector; local
76 vector.reserveInitialCapacity(size);
79 vector.uncheckedAppend(WebString::create(m_settings.selectedFiles[i]));
80 return ImmutableArray::adopt(vector);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/TableGen/
H A DStringMatcher.h17 #include <vector>
36 const std::vector<StringPair> &Matches;
41 const std::vector<StringPair> &matches, raw_ostream &os)
48 bool EmitStringMatcherForChar(const std::vector<const StringPair*> &Matches,
/macosx-10.9.5/llvmCore-3425.0.33/tools/bugpoint/
H A DToolRunner.h26 #include <vector>
42 std::vector<std::string> gccArgs; // GCC-specific arguments.
44 const std::vector<std::string> *GCCArgs)
53 const std::vector<std::string> *Args);
63 const std::vector<std::string> &Args,
68 const std::vector<std::string> &GCCArgs =
69 std::vector<std::string>(),
78 const std::vector<std::string> &ArgsForGCC,
93 const std::vector<std::string> *Args = 0,
94 const std::vector<st
[all...]
/macosx-10.9.5/apache-786.1/httpd/test/
H A Dtest-writev.c53 struct iovec vector[3]; local
91 vector[0].iov_base = buf;
92 vector[0].iov_len = sizeof(buf);
93 vector[1].iov_base = buf;
94 vector[1].iov_len = sizeof(buf);
95 vector[2].iov_base = buf;
96 vector[2].iov_len = sizeof(buf);
98 i = writev( s, &vector[0], 3 );
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Transforms/Utils/
H A DPromoteMemToReg.h18 #include <vector>
39 void PromoteMemToReg(const std::vector<AllocaInst*> &Allocas,

Completed in 175 milliseconds

1234567891011>>