HomeSort by relevance Sort by last modified time
    Searched refs:Impl (Results 1 - 25 of 376) 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/skia/tools/
SkShaper.h 41 struct Impl;
42 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...]
DownloadInfo.java 19 import static android.provider.Downloads.Impl.VISIBILITY_VISIBLE;
20 import static android.provider.Downloads.Impl.VISIBILITY_VISIBLE_NOTIFY_COMPLETED;
66 info.mId = getLong(Downloads.Impl._ID);
67 info.mUri = getString(Downloads.Impl.COLUMN_URI);
68 info.mNoIntegrity = getInt(Downloads.Impl.COLUMN_NO_INTEGRITY) == 1;
69 info.mHint = getString(Downloads.Impl.COLUMN_FILE_NAME_HINT);
70 info.mFileName = getString(Downloads.Impl._DATA);
71 info.mMimeType = Intent.normalizeMimeType(getString(Downloads.Impl.COLUMN_MIME_TYPE));
72 info.mDestination = getInt(Downloads.Impl.COLUMN_DESTINATION);
73 info.mVisibility = getInt(Downloads.Impl.COLUMN_VISIBILITY)
    [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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
TargetTransformInfo.h 78 template <typename T> TargetTransformInfo(T Impl);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
TargetTransformInfo.h 78 template <typename T> TargetTransformInfo(T Impl);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
TargetTransformInfo.h 78 template <typename T> TargetTransformInfo(T Impl);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
TargetTransformInfo.h 78 template <typename T> TargetTransformInfo(T Impl);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 216 const TargetLibraryInfoImpl *Impl;
219 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
222 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
223 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
225 Impl = TLI.Impl;
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 196 const TargetLibraryInfoImpl *Impl;
199 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
202 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
203 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
205 Impl = TLI.Impl;
    [all...]

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 91011>>