HomeSort by relevance Sort by last modified time
    Searched refs:Impl (Results 1 - 25 of 600) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/targets/
InterfaceOnlyDefaultMethodsTarget.java 29 public class Impl implements InterfaceOnlyDefaultMethodsTarget {
31 public Impl() {
37 new Impl();
InterfaceDefaultMethodsTarget.java 31 public class Impl implements InterfaceDefaultMethodsTarget {
33 public Impl() {
39 new Impl();
  /art/test/DefaultMethods/
IterableBase.java 22 class Impl implements Iface {
  /packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/
PublicApiAccessTest.java 35 Downloads.Impl.COLUMN_COOKIE_DATA,
36 Downloads.Impl.COLUMN_REFERER,
37 Downloads.Impl.COLUMN_USER_AGENT,
38 Downloads.Impl.COLUMN_NO_INTEGRITY,
39 Downloads.Impl.COLUMN_NOTIFICATION_CLASS,
40 Downloads.Impl.COLUMN_NOTIFICATION_EXTRAS,
41 Downloads.Impl.COLUMN_OTHER_UID,
42 Downloads.Impl.COLUMN_APP_DATA,
43 Downloads.Impl.COLUMN_CONTROL,
44 Downloads.Impl.COLUMN_STATUS
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
PassRegistry.cpp 76 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(pImpl);
78 for (std::vector<const PassInfo*>::iterator I = Impl->ToFree.begin(),
79 E = Impl->ToFree.end(); I != E; ++I)
82 delete Impl;
88 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl());
89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI);
90 return I != Impl->PassInfoMap.end() ? I->second : 0;
95 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl());
97 I = Impl->PassInfoStringMap.find(Arg);
98 return I != Impl->PassInfoStringMap.end() ? I->second : 0
    [all...]
  /external/skia/src/core/
SkRefDict.cpp 12 struct SkRefDict::Impl {
13 Impl* fNext;
29 Impl* rec = fImpl;
44 Impl* rec = fImpl;
45 Impl* prev = nullptr;
71 rec = new Impl;
80 Impl* rec = fImpl;
82 Impl* next = rec->fNext;
SkRefDict.h 49 struct Impl;
50 Impl* fImpl;
  /external/skia/src/pdf/
SkDeflate.h 49 struct Impl;
50 std::unique_ptr<Impl> fImpl;
  /external/skqp/src/core/
SkRefDict.cpp 12 struct SkRefDict::Impl {
13 Impl* fNext;
29 Impl* rec = fImpl;
44 Impl* rec = fImpl;
45 Impl* prev = nullptr;
71 rec = new Impl;
80 Impl* rec = fImpl;
82 Impl* next = rec->fNext;
SkRefDict.h 49 struct Impl;
50 Impl* fImpl;
  /external/skqp/src/pdf/
SkDeflate.h 49 struct Impl;
50 std::unique_ptr<Impl> fImpl;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 20 import static android.provider.Downloads.Impl.COLUMN_DESTINATION;
21 import static android.provider.Downloads.Impl.COLUMN_MEDIA_SCANNED;
22 import static android.provider.Downloads.Impl.COLUMN_MIME_TYPE;
23 import static android.provider.Downloads.Impl.DESTINATION_NON_DOWNLOADMANAGER_DOWNLOAD;
24 import static android.provider.Downloads.Impl._DATA;
119 "my_downloads/#/" + Downloads.Impl.RequestHeaders.URI_SEGMENT,
122 "all_downloads/#/" + Downloads.Impl.RequestHeaders.URI_SEGMENT,
128 "download/#/" + Downloads.Impl.RequestHeaders.URI_SEGMENT,
131 Downloads.Impl.PUBLICLY_ACCESSIBLE_DOWNLOADS_URI_SEGMENT + "/#",
137 Downloads.Impl.CONTENT_URI
    [all...]
  /device/google/cuttlefish_common/common/libs/threads/
thunkers.h 19 template <typename HalType, typename Impl, typename F> struct ThunkerBase;
24 * template <typename HalType, typename Impl, typename R, typename... Args>
25 * struct ThunkerBase<HalType, Impl, R(Args...)> {
26 * template <R (Impl::*MemFn)(Args...)>
28 * return (reinterpret_cast<Impl*>(in)->*MemFn)(args...);
33 template <typename HalType, typename Impl, typename R>
34 struct ThunkerBase<HalType, Impl, R()> {
35 template <R (Impl::*MemFn)()>
37 return (reinterpret_cast<Impl*>(in)->*MemFn)();
40 template <R (Impl::*MemFn)() const
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 70 public final static String COLUMN_ID = Downloads.Impl._ID;
76 public final static String COLUMN_TITLE = Downloads.Impl.COLUMN_TITLE;
82 public final static String COLUMN_DESCRIPTION = Downloads.Impl.COLUMN_DESCRIPTION;
87 public final static String COLUMN_URI = Downloads.Impl.COLUMN_URI;
128 public final static String COLUMN_STATUS = Downloads.Impl.COLUMN_STATUS;
165 public static final String COLUMN_MEDIAPROVIDER_URI = Downloads.Impl.COLUMN_MEDIAPROVIDER_URI;
170 public final static String COLUMN_ALLOW_WRITE = Downloads.Impl.COLUMN_ALLOW_WRITE;
333 Downloads.Impl._ID,
334 Downloads.Impl._DATA + " AS " + COLUMN_LOCAL_FILENAME,
335 Downloads.Impl.COLUMN_MEDIAPROVIDER_URI
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
array_slice.h 110 typedef array_slice_internal::ArraySliceImpl<T> Impl;
114 typedef typename Impl::pointer pointer;
115 typedef typename Impl::const_pointer const_pointer;
116 typedef typename Impl::reference reference;
117 typedef typename Impl::const_reference const_reference;
118 typedef typename Impl::iterator iterator;
119 typedef typename Impl::const_iterator const_iterator;
120 typedef typename Impl::reverse_iterator reverse_iterator;
121 typedef typename Impl::const_reverse_iterator const_reverse_iterator;
122 typedef typename Impl::size_type size_type
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
optimizer.cpp 24 struct Optimizer::PassToken::Impl {
25 Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {}
31 std::unique_ptr<Optimizer::PassToken::Impl> impl)
32 : impl_(std::move(impl)) {}
43 struct Optimizer::Impl {
44 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {}
50 Optimizer::Optimizer(spv_target_env env) : impl_(new Impl(env)) {}
90 return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::NullPass>());
94 return MakeUnique<Optimizer::PassToken::Impl>(
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
TargetLibraryInfo.h 214 const TargetLibraryInfoImpl *Impl;
217 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
220 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
221 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
223 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
TargetLibraryInfo.h 214 const TargetLibraryInfoImpl *Impl;
217 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
220 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
221 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
223 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
TargetLibraryInfo.h 210 const TargetLibraryInfoImpl *Impl;
213 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
219 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
TargetLibraryInfo.h 210 const TargetLibraryInfoImpl *Impl;
213 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
219 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
TargetLibraryInfo.h 210 const TargetLibraryInfoImpl *Impl;
213 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
219 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
TargetLibraryInfo.h 210 const TargetLibraryInfoImpl *Impl;
213 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
219 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
TargetLibraryInfo.h 214 const TargetLibraryInfoImpl *Impl;
217 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
220 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
221 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
223 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
TargetLibraryInfo.h 214 const TargetLibraryInfoImpl *Impl;
217 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
220 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
221 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
223 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
TargetLibraryInfo.h 210 const TargetLibraryInfoImpl *Impl;
213 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
219 Impl = TLI.Impl;
    [all...]

Completed in 1246 milliseconds

1 2 3 4 5 6 7 8 91011>>