/external/libbrillo/brillo/strings/ |
string_utils.h | 84 template <class Container> 85 std::string Join(const std::string& delimiter, const Container& strings) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
KeyguardUserSwitcher.java | 47 private final Container mUserSwitcherContainer; 64 mUserSwitcherContainer = (Container) userSwitcher.inflate(); 300 public static class Container extends FrameLayout { 304 public Container(Context context, AttributeSet attrs) {
|
/external/google-benchmark/test/ |
benchmark_test.cc | 97 template<typename Container, typename ValueType = typename Container::value_type> 101 Container c;
|
/external/webrtc/webrtc/system_wrappers/include/ |
stl_util.h | 37 // For a range within a container of pointers, calls delete (non-array version) 55 // For a range within a container of pairs, calls delete (non-array version) on 59 // container may call the hash function on the iterator when it is advanced, 73 // For a range within a container of pairs, calls delete (non-array version) on 86 // For a range within a container of pairs, calls delete. 133 // STLDeleteElements() deletes all the elements in an STL container and clears 134 // the container. This function is suitable for use with a vector, set, 135 // hash_set, or any other STL container which defines sensible begin(), end(), 138 // If container is NULL, this function is a no-op. 141 // STLElementDeleter (defined below), which ensures that your container' [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
unordered_test.cpp | 389 //We are going to add at least 20 values, to get a stable hash container while doing that 406 //Now we put some more elements until hash container is resized: 418 // Now we remove some elements until hash container is resized: 452 cout << "Hash container dump: Nb elems: " << hum.size() << ", Nb buckets: " << hum.bucket_count() << "\n"; 572 typedef unordered_set<Key, KeyHash, KeyEqual> Container; 573 Container cont; 586 Container const& ccont = cont; 593 typedef unordered_set<Key*, KeyHashPtr, KeyEqualPtr> Container; 594 Container cont; 607 Container const& ccont = cont [all...] |
/ndk/tests/device/test-stlport/unit/ |
unordered_test.cpp | 389 //We are going to add at least 20 values, to get a stable hash container while doing that 406 //Now we put some more elements until hash container is resized: 418 // Now we remove some elements until hash container is resized: 452 cout << "Hash container dump: Nb elems: " << hum.size() << ", Nb buckets: " << hum.bucket_count() << "\n"; 572 typedef unordered_set<Key, KeyHash, KeyEqual> Container; 573 Container cont; 586 Container const& ccont = cont; 593 typedef unordered_set<Key*, KeyHashPtr, KeyEqualPtr> Container; 594 Container cont; 607 Container const& ccont = cont [all...] |
/external/google-breakpad/src/testing/include/gmock/ |
gmock-generated-matchers.h | 315 template <typename Container> 316 operator Matcher<Container>() const { 317 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer; 329 return MakeMatcher(new ElementsAreMatcherImpl<Container>(&matcher, 1)); 343 template <typename Container> 344 operator Matcher<Container>() const { 345 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer; 354 return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 2)); 370 template <typename Container> 371 operator Matcher<Container>() const [all...] |
/external/clang/lib/AST/ |
DeclObjC.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGObjCRuntime.cpp | 33 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface(); 42 if (ID && declaresSameEntity(ID->getClassInterface(), Container)) 45 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container); 54 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
|
/external/clang/test/SemaTemplate/ |
ms-lookup-template-base-classes.cpp | 184 class Container : public Base<T> { 187 bool operator=(const Container<S>& rhs) { 193 Container<A> text_provider; 194 Container<B> text_provider2;
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
Server.java | 40 import org.eclipse.jetty.util.component.Container; 73 private final Container _container=new Container(); 129 * @return Returns the container. 131 public Container getContainer() 506 * The bean will be added to the servers {@link Container}
|
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafetyTraverse.h | 135 // Container is a minimal interface used to store results when traversing 137 template <class T> class Container { 139 // Allocate a new container with a capacity for n elements. 140 Container(CopyReducerBase &S, unsigned N) : Elems(S.Arena, N) {} 142 // Push a new element onto the container. 162 // A visitor "container" is a single bool, which accumulates success. 163 template <class T> class Container { 165 Container(VisitReducerBase &S, unsigned N) : Success(true) {} 226 R_SExpr reduceSCFG(SCFG &Orig, Container<BasicBlock *> Bbs) { 229 R_BasicBlock reduceBasicBlock(BasicBlock &Orig, Container<R_SExpr> &As [all...] |
/external/google-breakpad/src/testing/gtest/src/ |
gtest-internal-inl.h | 275 // STL container utilities. 277 // Returns the number of elements in the given container that satisfy 279 template <class Container, typename Predicate> 280 inline int CountIf(const Container& c, Predicate predicate) { 284 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { 291 // Applies a function/functor to each element in the container. 292 template <class Container, typename Functor> 293 void ForEach(const Container& c, Functor functor) { [all...] |
/external/gtest/src/ |
gtest-internal-inl.h | 277 // STL container utilities. 279 // Returns the number of elements in the given container that satisfy 281 template <class Container, typename Predicate> 282 inline int CountIf(const Container& c, Predicate predicate) { 286 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { 293 // Applies a function/functor to each element in the container. 294 template <class Container, typename Functor> 295 void ForEach(const Container& c, Functor functor) { [all...] |
/external/llvm/utils/unittest/googletest/src/ |
gtest-internal-inl.h | 271 // STL container utilities. 273 // Returns the number of elements in the given container that satisfy 275 template <class Container, typename Predicate> 276 inline int CountIf(const Container& c, Predicate predicate) { 280 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { 287 // Applies a function/functor to each element in the container. 288 template <class Container, typename Functor> 289 void ForEach(const Container& c, Functor functor) { [all...] |
/external/mesa3d/src/gtest/src/ |
gtest-internal-inl.h | 268 // STL container utilities. 270 // Returns the number of elements in the given container that satisfy 272 template <class Container, typename Predicate> 273 inline int CountIf(const Container& c, Predicate predicate) { 277 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { 284 // Applies a function/functor to each element in the container. 285 template <class Container, typename Functor> 286 void ForEach(const Container& c, Functor functor) { [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/ |
gtest-internal-inl.h | 277 // STL container utilities. 279 // Returns the number of elements in the given container that satisfy 281 template <class Container, typename Predicate> 282 inline int CountIf(const Container& c, Predicate predicate) { 286 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { 293 // Applies a function/functor to each element in the container. 294 template <class Container, typename Functor> 295 void ForEach(const Container& c, Functor functor) { [all...] |
/ndk/sources/third_party/googletest/googletest/src/ |
gtest-internal-inl.h | 277 // STL container utilities. 279 // Returns the number of elements in the given container that satisfy 281 template <class Container, typename Predicate> 282 inline int CountIf(const Container& c, Predicate predicate) { 286 for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { 293 // Applies a function/functor to each element in the container. 294 template <class Container, typename Functor> 295 void ForEach(const Container& c, Functor functor) { [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
_abcoll.py | 15 "Sized", "Container", "Callable", 106 class Container: 115 if cls is Container: 139 class Set(Sized, Iterable, Container): 140 """A set is a finite, iterable container. 264 """A mutable set is a finite, iterable container. 346 class Mapping(Sized, Iterable, Container): 348 """A Mapping is a generic container for associating key/value 473 """A MutableMapping is a generic container for associating 566 class Sequence(Sized, Iterable, Container) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
_abcoll.py | 15 "Sized", "Container", "Callable", 106 class Container: 115 if cls is Container: 139 class Set(Sized, Iterable, Container): 140 """A set is a finite, iterable container. 264 """A mutable set is a finite, iterable container. 346 class Mapping(Sized, Iterable, Container): 348 """A Mapping is a generic container for associating key/value 473 """A MutableMapping is a generic container for associating 566 class Sequence(Sized, Iterable, Container) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_abcoll.py | 15 "Sized", "Container", "Callable", 106 class Container: 115 if cls is Container: 139 class Set(Sized, Iterable, Container): 140 """A set is a finite, iterable container. 264 """A mutable set is a finite, iterable container. 346 class Mapping(Sized, Iterable, Container): 348 """A Mapping is a generic container for associating key/value 473 """A MutableMapping is a generic container for associating 566 class Sequence(Sized, Iterable, Container) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_abcoll.py | 15 "Sized", "Container", "Callable", 106 class Container: 115 if cls is Container: 139 class Set(Sized, Iterable, Container): 140 """A set is a finite, iterable container. 264 """A mutable set is a finite, iterable container. 346 class Mapping(Sized, Iterable, Container): 348 """A Mapping is a generic container for associating key/value 473 """A MutableMapping is a generic container for associating 566 class Sequence(Sized, Iterable, Container) [all...] |
/frameworks/base/core/java/android/widget/ |
ZoomButtonsController.java | 58 * client access to the zoom controls container, allowing for additional 99 * The container that is added as a window. 109 * the touch down hits the container. It will be reset on the touch up. 127 /** Whether the container has been added to the window manager. */ 256 FrameLayout container = new Container(mContext); local 257 container.setLayoutParams(lp); 258 container.setMeasureAllChildren(true); 262 inflater.inflate(com.android.internal.R.layout.zoom_container, container); 264 mControls = (ZoomControls) container.findViewById(com.android.internal.R.id.zoomControls) [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_common.h | 556 template<class Container, class Compare> 557 void InternalSort(Container *v, uptr size, Compare comp) { 592 template<class Container, class Value, class Compare> 593 uptr InternalBinarySearch(const Container &v, uptr first, uptr last,
|
/external/protobuf/gtest/src/ |
gtest-internal-inl.h | 264 // STL container utilities. 266 // Returns the number of elements in the given container that satisfy 268 template <class Container, typename Predicate> 269 inline int CountIf(const Container& c, Predicate predicate) { 273 // Applies a function/functor to each element in the container. 274 template <class Container, typename Functor> 275 void ForEach(const Container& c, Functor functor) { [all...] |