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 35 // For an object to be able to be put into a ScopedGeneric, it must support
54 // typedef ScopedGeneric<int, FooScopedTraits> ScopedFoo;
56 class ScopedGeneric {
57 DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(ScopedGeneric)
76 ScopedGeneric() : data_(traits_type::InvalidValue()) {}
80 explicit ScopedGeneric(const element_type& value) : data_(value) {}
83 ScopedGeneric(const element_type& value, const traits_type& traits)
87 // Move constructor. Allows initialization from a ScopedGeneric rvalue.
88 ScopedGeneric(ScopedGeneric<T, Traits>&& rvalue
    [all...]

Completed in 53 milliseconds