HomeSort by relevance Sort by last modified time
    Searched defs:Impl (Results 101 - 125 of 249) sorted by null

1 2 3 45 6 7 8 910

  /external/clang/include/clang/Basic/
VirtualFileSystem.h 124 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy
128 : Impl(std::move(I)) {
129 assert(Impl.get() != nullptr && "requires non-null implementation");
130 if (!Impl->CurrentEntry.isStatusKnown())
131 Impl.reset(); // Normalize the end iterator to Impl == nullptr.
139 assert(Impl && "attempting to increment past end");
140 EC = Impl->increment();
141 if (EC || !Impl->CurrentEntry.isStatusKnown())
142 Impl.reset(); // Normalize the end iterator to Impl == nullptr
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
FileClientSessionCache.java 58 static class Impl implements SSLClientSessionCache {
80 Impl(File directory) throws IOException {
316 static final Map<File, FileClientSessionCache.Impl> caches
317 = new HashMap<File, FileClientSessionCache.Impl>();
331 FileClientSessionCache.Impl cache = caches.get(directory);
333 cache = new FileClientSessionCache.Impl(directory);
SslSessionWrapper.java 53 return new Impl(context, ref, activeSession.getPeerHost(),
60 return new Impl(context, ref, null, -1, null, null, null);
152 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData);
209 private static final class Impl extends SslSessionWrapper {
222 private Impl(AbstractSessionContext context, NativeRef.SSL_SESSION ref, String host,
348 return Impl.this.getId();
353 return Impl.this.getCipherSuite();
358 return Impl.this.getProtocol();
363 return Impl.this.getPeerHost();
368 return Impl.this.getPeerPort()
    [all...]
  /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/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();
  /external/guava/guava-tests/benchmark/com/google/common/math/
ApacheBenchmark.java 40 private enum Impl {
130 Impl impl; field in class:ApacheBenchmark
144 } while (!Impl.GUAVA.noAddOverflow(intsToAdd[i][0], intsToAdd[i][1]));
149 } while (!Impl.GUAVA.noAddOverflow(longsToAdd[i][0], longsToAdd[i][1]));
154 } while (!Impl.GUAVA.noMulOverflow(intsToMul[i][0], intsToMul[i][1]));
159 } while (!Impl.GUAVA.noMulOverflow(longsToMul[i][0], longsToMul[i][1]));
170 tmp += Double.doubleToRawLongBits(impl.factorialDouble(factorials[j]));
179 tmp += impl.gcdInt(nonnegInt[j][0], nonnegInt[j][1]);
188 tmp += impl.gcdLong(nonnegLong[j][0], nonnegLong[j][1])
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
Contacts.java 65 public static final class Impl implements BaseColumns {
66 private Impl() {}
  /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...]
TargetTransformInfo.h 68 template <typename T> TargetTransformInfo(T Impl);
    [all...]
  /external/llvm/include/llvm/CodeGen/
TargetPassConfig.h 105 PassConfigImpl *Impl; // Internal data structures
  /external/llvm/lib/Transforms/Scalar/
AlignmentFromAssumptions.cpp 69 AlignmentFromAssumptionsPass Impl;
410 return Impl.runImpl(F, AC, SE, DT);
ConstantHoisting.cpp 75 void releaseMemory() override { Impl.releaseMemory(); }
78 ConstantHoistingPass Impl;
102 bool MadeChange = Impl.runImpl(
Float2Int.cpp 64 return Impl.runImpl(F);
73 Float2IntPass Impl;
GuardWidening.cpp 216 GuardWideningPass Impl;
MergedLoadStoreMotion.cpp 559 MergedLoadStoreMotion Impl;
561 return Impl.run(F, MDWP ? &MDWP->getMemDep() : nullptr,
594 MergedLoadStoreMotion Impl;
597 if (!Impl.run(F, MD, AA))
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 107 PassConfigImpl *Impl; // Internal data structures
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 107 PassConfigImpl *Impl; // Internal data structures
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 107 PassConfigImpl *Impl; // Internal data structures
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 107 PassConfigImpl *Impl; // Internal data structures
  /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-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 107 PassConfigImpl *Impl; // Internal data structures

Completed in 1080 milliseconds

1 2 3 45 6 7 8 910