HomeSort by relevance Sort by last modified time
    Searched refs:Impl (Results 76 - 100 of 200) sorted by null

1 2 34 5 6 7 8

  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
StorageTest.java 23 import static android.provider.Downloads.Impl.DESTINATION_CACHE_PARTITION;
24 import static android.provider.Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION;
30 import android.provider.Downloads.Impl;
231 if (dest == Impl.DESTINATION_SYSTEMCACHE_PARTITION) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 224 template <typename Impl>
226 RuntimeDyldMachOCRTPBase<Impl>::finalizeLoad(const ObjectFile &Obj,
237 // if they're present. Otherwise call down to the impl to handle other
259 if (auto Err = impl().finalizeSection(Obj, I->second, Section))
269 template <typename Impl>
270 unsigned char *RuntimeDyldMachOCRTPBase<Impl>::processFDE(uint8_t *P,
273 typedef typename Impl::TargetPtrT TargetPtrT;
312 template <typename Impl>
313 void RuntimeDyldMachOCRTPBase<Impl>::registerEHFrames() {
  /external/eigen/Eigen/src/Core/
Block.h 106 typedef BlockImpl<XprType, BlockRows, BlockCols, InnerPanel, typename internal::traits<XprType>::StorageKind> Impl;
108 //typedef typename Impl::Base Base;
109 typedef Impl Base;
118 inline Block(XprType& xpr, Index i) : Impl(xpr,i)
129 : Impl(xpr, startRow, startCol)
142 : Impl(xpr, startRow, startCol, blockRows, blockCols)
157 typedef internal::BlockImpl_dense<XprType, BlockRows, BlockCols, InnerPanel> Impl;
160 typedef Impl Base;
162 EIGEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index i) : Impl(xpr,i) {}
163 EIGEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRow, startCol) {
    [all...]
  /external/googletest/googlemock/include/gmock/
gmock-matchers.h 291 explicit MatcherBase(const MatcherInterface<T>* impl)
292 : impl_(impl) {}
327 explicit Matcher(const MatcherInterface<T>* impl)
328 : internal::MatcherBase<T>(impl) {}
344 explicit Matcher(const MatcherInterface<const internal::string&>* impl)
345 : internal::MatcherBase<const internal::string&>(impl) {}
361 explicit Matcher(const MatcherInterface<internal::string>* impl)
362 : internal::MatcherBase<internal::string>(impl) {}
382 explicit Matcher(const MatcherInterface<const StringPiece&>* impl)
383 : internal::MatcherBase<const StringPiece&>(impl) {}
440 const Impl& impl() const { return impl_; } function in class:testing::PolymorphicMatcher
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
CapabilityPolling.java 499 long id = cursor.getLong(cursor.getColumnIndex(Contacts.Impl._ID));
501 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP));
506 cursor.getColumnIndex(Contacts.Impl.CONTACT_NUMBER)));
508 cursor.getColumnIndex(Contacts.Impl.CONTACT_NAME)));
510 cursor.getColumnIndex(Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP)));
512 cursor.getColumnIndex(Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP)));
570 sb.append(Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP + "<='" + last + "'");
572 sb.append(Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP + "<='" + last + "'");
574 sb.append(Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP + ">='" + last3year + "'");
600 long id = cursor.getLong(cursor.getColumnIndex(Contacts.Impl._ID))
    [all...]
Contacts.java 65 public static final class Impl implements BaseColumns {
66 private Impl() {}
  /external/v8/testing/gmock/include/gmock/
gmock-matchers.h 291 explicit MatcherBase(const MatcherInterface<T>* impl)
292 : impl_(impl) {}
327 explicit Matcher(const MatcherInterface<T>* impl)
328 : internal::MatcherBase<T>(impl) {}
344 explicit Matcher(const MatcherInterface<const internal::string&>* impl)
345 : internal::MatcherBase<const internal::string&>(impl) {}
361 explicit Matcher(const MatcherInterface<internal::string>* impl)
362 : internal::MatcherBase<internal::string>(impl) {}
382 explicit Matcher(const MatcherInterface<const StringPiece&>* impl)
383 : internal::MatcherBase<const StringPiece&>(impl) {}
440 const Impl& impl() const { return impl_; } function in class:testing::PolymorphicMatcher
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 23 import static android.provider.Downloads.Impl.FLAG_REQUIRES_CHARGING;
24 import static android.provider.Downloads.Impl.FLAG_REQUIRES_DEVICE_IDLE;
208 if (destination == Downloads.Impl.DESTINATION_FILE_URI) {
237 if (destination == Downloads.Impl.DESTINATION_FILE_URI) {
550 case Downloads.Impl.DESTINATION_CACHE_PARTITION:
551 case Downloads.Impl.DESTINATION_CACHE_PARTITION_PURGEABLE:
552 case Downloads.Impl.DESTINATION_CACHE_PARTITION_NOROAMING:
559 case Downloads.Impl.DESTINATION_SYSTEMCACHE_PARTITION:
567 case Downloads.Impl.DESTINATION_EXTERNAL:
OpenHelper.java 22 import static android.provider.Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI;
36 import android.provider.Downloads.Impl.RequestHeaders;
DownloadJobService.java 19 import static android.provider.Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI;
  /external/clang/include/clang/Frontend/
Utils.h 112 void *Impl; // Opaque implementation
113 DependencyFileGenerator(void *Impl);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 280 struct ScopedThread::Impl {
291 void ScopedThread::Impl::HandleEvent(Event *ev) {
376 void *ScopedThread::Impl::ScopedThreadCallback(void *arg) {
378 Impl *impl = (Impl*)arg;
380 Event* ev = (Event*)atomic_load(&impl->event, memory_order_acquire);
386 atomic_store(&impl->event, 0, memory_order_release);
389 impl->HandleEvent(ev);
390 atomic_store(&impl->event, 0, memory_order_release)
    [all...]
  /external/llvm/lib/CodeGen/
TargetPassConfig.cpp 249 delete Impl;
257 AddingMachinePasses(false), TM(tm), Impl(nullptr), Initialized(false),
260 Impl = new PassConfigImpl();
291 Impl->InsertedPasses.emplace_back(TargetPassID, InsertedPassID, VerifyAfter,
316 Impl->TargetPasses[StandardID] = TargetID;
321 I = Impl->TargetPasses.find(ID);
322 if (I == Impl->TargetPasses.end())
364 for (auto IP : Impl->InsertedPasses) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
CrossDSOCFI.cpp 159 CrossDSOCFI Impl;
160 bool Changed = Impl.runOnModule(M);
PartialInlining.cpp 42 auto PA = Impl.run(M, DummyMAM);
47 PartialInlinerPass Impl;
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 161 auto PA = Impl.run(F, DummyFAM);
166 LowerAtomicPass Impl;
  /external/skia/tools/
SkShaper_harfbuzz.cpp 42 struct SkShaper::Impl {
54 SkShaper::SkShaper(sk_sp<SkTypeface> tf) : fImpl(new Impl) {
  /prebuilts/tools/common/m2/repository/com/google/gradle/osdetector-gradle-plugin/1.4.0/
osdetector-gradle-plugin-1.4.0.jar 
  /external/webrtc/webrtc/base/
checks.h 94 rtc::Check##name##Impl((val1), (val2), #val1 " " #op " " #val2)) \
97 // Build the error message string. This is separate from the "Impl"
99 // be out of line, while the "Impl" code should be inline. Caller
135 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
142 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
  /frameworks/base/services/core/java/com/android/server/connectivity/
IpConnectivityMetrics.java 78 public final Impl impl = new Impl(); field in class:IpConnectivityMetrics
114 publishBinderService(SERVICE_NAME, impl);
238 public final class Impl extends IIpConnectivityMetrics.Stub {
  /external/clang/lib/Frontend/
DependencyFile.cpp 230 DependencyFileGenerator::DependencyFileGenerator(void *Impl)
231 : Impl(Impl) { }
253 DFGImpl *I = reinterpret_cast<DFGImpl *>(Impl);
  /external/fmtlib/fmt/
printf.h 183 Pass the subclass as the *Impl* template parameter. When a formatting
192 template <typename Impl, typename Char>
193 class BasicPrintfArgFormatter : public internal::ArgFormatterBase<Impl, Char> {
200 typedef internal::ArgFormatterBase<Impl, Char> Base;
211 : internal::ArgFormatterBase<Impl, Char>(w, s) {}
  /system/extras/perfprofd/quipper/base/
logging.h 242 logging::Check##name##Impl((val1), (val2), \
246 // Build the error message string. This is separate from the "Impl"
248 // be out of line, while the "Impl" code should be inline. Caller
284 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
289 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
406 logging::Check##name##Impl((val1), (val2), \
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
vfp1xD.d 242 0+3a0 <[^>]*> eef90a10 (vmrs|fmrx) r0, fpinst @ Impl def
243 0+3a4 <[^>]*> eefa0a10 (vmrs|fmrx) r0, fpinst2 @ Impl def
246 0+3b0 <[^>]*> eefc0a10 (vmrs|fmrx) r0, <impl def 0xc>
247 0+3b4 <[^>]*> eee90a10 (vmsr|fmxr) fpinst, r0 @ Impl def
248 0+3b8 <[^>]*> eeea0a10 (vmsr|fmxr) fpinst2, r0 @ Impl def
251 0+3c4 <[^>]*> eeec0a10 (vmsr|fmxr) <impl def 0xc>, r0
283 0+444 <[^>]*> eee93a10 vmsr fpinst, r3 @ Impl def
284 0+448 <[^>]*> eeea4a10 vmsr fpinst2, r4 @ Impl def
285 0+44c <[^>]*> eeef5a10 vmsr (c15|<impl def 0xf>), r5
290 0+460 <[^>]*> eef97a10 vmrs r7, fpinst @ Impl de
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MapBenchmark.java 41 private Impl impl; field in class:MapBenchmark
43 public enum Impl {
190 this.mapToTest = impl.create(values);
214 dummy += impl.create(values).size();

Completed in 952 milliseconds

1 2 34 5 6 7 8