HomeSort by relevance Sort by last modified time
    Searched defs:ScopedGeneric (Results 1 - 2 of 2) sorted by null

  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
ScopedGeneric.java 7 class ScopedGeneric<T> {
9 @Inject ScopedGeneric(T t) {
  /external/libchrome/base/
scoped_generic.h 34 // For an object to be able to be put into a ScopedGeneric, it must support
53 // typedef ScopedGeneric<int, FooScopedTraits> ScopedFoo;
55 class ScopedGeneric {
73 ScopedGeneric() : data_(traits_type::InvalidValue()) {}
77 explicit ScopedGeneric(const element_type& value) : data_(value) {}
80 ScopedGeneric(const element_type& value, const traits_type& traits)
84 // Move constructor. Allows initialization from a ScopedGeneric rvalue.
85 ScopedGeneric(ScopedGeneric<T, Traits>&& rvalue)
89 ~ScopedGeneric() {
    [all...]

Completed in 134 milliseconds