OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SetVector
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/ADT/
SetVector.h
1
//===- llvm/ADT/
SetVector
.h - Set with insert order iteration ---*- C++ -*-===//
15
// This file defines
SetVector
and SmallSetVector, which performs no allocations
16
// if the
SetVector
has less than a certain number of elements.
36
class
SetVector
{
48
/// @brief Construct an empty
SetVector
49
SetVector
() {}
51
/// @brief Initialize a
SetVector
with a range of elements
53
SetVector
(It Start, It End) {
57
/// @brief Determine if the
SetVector
is empty or not.
62
/// @brief Determine the number of elements in the
SetVector
[
all
...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java
83
protected void
SetVector
(NodeVector v)
181
SetVector
((NodeVector) nodeVector);
459
SetVector
(new NodeVector());
465
SetVector
(null);
562
newCache.
setVector
(nv);
783
// A copy of the code of what
SetVector
() would do.
786
m_cache.
setVector
(v);
789
m_cache.
setVector
(v);
911
private void
setVector
(NodeVector nv) {
Completed in 368 milliseconds