HomeSort by relevance Sort by last modified time
    Searched defs:Impl (Results 26 - 50 of 80) sorted by null

12 3 4

  /packages/apps/Launcher2/src/com/android/launcher2/
DeferredHandler.java 37 private Impl mHandler = new Impl();
39 private class Impl extends Handler implements MessageQueue.IdleHandler {
  /external/opencv3/modules/core/src/
cuda_stream.cpp 258 /// Stream::Impl
262 class cv::cuda::Stream::Impl
265 Impl(void* ptr = 0)
279 class cv::cuda::Stream::Impl
285 Impl();
286 Impl(cudaStream_t stream);
288 ~Impl();
291 cv::cuda::Stream::Impl::Impl() : stream(0)
298 cv::cuda::Stream::Impl::Impl(cudaStream_t stream_) : stream(stream_
374 Ptr<Stream::Impl> impl = makePtr<Stream::Impl>(stream); local
    [all...]
command_line_parser.cpp 17 struct CommandLineParser::Impl
96 for (size_t i = 0; i < impl->data.size(); i++)
98 for (size_t j = 0; j < impl->data[i].keys.size(); j++)
100 if (name.compare(impl->data[i].keys[j]) == 0)
102 String v = impl->data[i].def_value;
104 v = impl->cat_string(v);
110 impl->error = true;
111 impl->error_message = impl->error_message + "Unknown parameter " + name + "\n";
115 impl->error = true
    [all...]
  /external/opencv3/modules/ml/src/
knearest.cpp 56 class Impl
59 Impl()
66 virtual ~Impl() {}
137 class BruteForceImpl : public Impl
361 class KDTreeImpl : public Impl
437 CV_IMPL_PROPERTY(int, DefaultK, impl->defaultK)
438 CV_IMPL_PROPERTY(bool, IsClassifier, impl->isclassifier)
439 CV_IMPL_PROPERTY(int, Emax, impl->Emax)
444 return impl->getType();
462 bool isClassifier() const { return impl->isclassifier;
509 Ptr<Impl> impl; member in class:cv::ml::KNearestImpl
    [all...]
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 116 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy
119 directory_iterator(std::shared_ptr<detail::DirIterImpl> I) : Impl(I) {
120 assert(Impl.get() != nullptr && "requires non-null implementation");
121 if (!Impl->CurrentEntry.isStatusKnown())
122 Impl.reset(); // Normalize the end iterator to Impl == nullptr.
130 assert(Impl && "attempting to increment past end");
131 EC = Impl->increment();
132 if (EC || !Impl->CurrentEntry.isStatusKnown())
133 Impl.reset(); // Normalize the end iterator to Impl == nullptr
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
FileClientSessionCache.java 55 static class Impl implements SSLClientSessionCache {
77 Impl(File directory) throws IOException {
315 static final Map<File, FileClientSessionCache.Impl> caches
316 = new HashMap<File, FileClientSessionCache.Impl>();
330 FileClientSessionCache.Impl cache = caches.get(directory);
332 cache = new FileClientSessionCache.Impl(directory);
  /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;
115 inline Block(XprType& xpr, Index i) : Impl(xpr,i)
125 : Impl(xpr, a_startRow, a_startCol)
137 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols)
152 typedef internal::BlockImpl_dense<XprType, BlockRows, BlockCols, InnerPanel> Impl;
155 typedef Impl Base;
157 inline BlockImpl(XprType& xpr, Index i) : Impl(xpr,i) {}
158 inline BlockImpl(XprType& xpr, Index a_startRow, Index a_startCol) : Impl(xpr, a_startRow, a_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 59 public static final class Impl implements BaseColumns {
60 private Impl() {}
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 184 const TargetLibraryInfoImpl *Impl;
187 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {}
190 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
191 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
193 Impl = TLI.Impl;
    [all...]
TargetTransformInfo.h 67 template <typename T> TargetTransformInfo(T Impl);
641 T Impl;
644 Model(T Impl) : Impl(std::move(Impl)) {}
648 return Impl.getDataLayout();
652 return Impl.getOperationCost(Opcode, Ty, OpTy);
656 return Impl.getGEPCost(PointeeType, Ptr, Operands);
659 return Impl.getCallCost(FTy, NumArgs);
662 return Impl.getCallCost(F, NumArgs)
    [all...]
  /external/llvm/include/llvm/CodeGen/
Passes.h 112 PassConfigImpl *Impl; // Internal data structures
  /external/opencv3/modules/videostab/src/
global_motion.cpp 364 typedef Mat (*Impl)(int, Point2f*, Point2f*, float*);
365 static Impl impls[] = { estimateGlobMotionLeastSquaresTranslation,
  /frameworks/base/services/core/java/com/android/server/connectivity/
IpConnectivityMetrics.java 56 public final Impl impl = new Impl(); field in class:IpConnectivityMetrics
82 publishBinderService(SERVICE_NAME, impl);
185 public final class Impl extends IIpConnectivityMetrics.Stub {
  /frameworks/support/design/base/android/support/design/widget/
ValueAnimatorCompat.java 85 static abstract class Impl {
112 private final Impl mImpl;
114 ValueAnimatorCompat(Impl impl) {
115 mImpl = impl;
132 mImpl.addUpdateListener(new Impl.AnimatorUpdateListenerProxy() {
145 mImpl.addListener(new Impl.AnimatorListenerProxy() {
  /external/llvm/include/llvm/Support/
FileSystem.h 226 enum Impl {
258 file_magic(Impl V) : V(V) {}
259 operator Impl() const { return V; }
262 Impl V;
  /external/gmock/include/gmock/
gmock-actions.h 289 // Constructs an Action from its implementation. A NULL impl is
291 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
351 template <typename Impl>
354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 289 // Constructs an Action from its implementation. A NULL impl is
291 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
351 template <typename Impl>
354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 399 ImplTy Impl;
404 Impl.insert(N);
410 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N);
416 unsigned size() const { return Impl.size(); }
417 bool empty() const { return Impl.empty(); }
418 bool erase(ExplodedNode *N) { return Impl.erase(N); }
420 void clear() { Impl.clear(); }
424 Impl = S.Impl;
426 Impl.insert(S.begin(), S.end())
    [all...]
  /external/guice/core/test/com/google/inject/
MethodInterceptionTest.java 260 bind(Interface.class).to(Impl.class);
282 public static class Impl extends Superclass<RetType> implements Interface {
  /external/v8/include/
v8-util.h 42 typedef std::map<K, PersistentContainerValue> Impl;
43 typedef typename Impl::iterator Iterator;
45 static bool Empty(Impl* impl) { return impl->empty(); }
46 static size_t Size(Impl* impl) { return impl->size(); }
47 static void Swap(Impl& a, Impl& b) { std::swap(a, b); } // NOLIN
235 typename Traits::Impl impl; local
306 typename Traits::Impl* impl() { return &impl_; } function in class:v8::PersistentValueMapBase
    [all...]
  /external/v8/src/compiler/
code-assembler.cc 710 class CodeAssembler::Variable::Impl : public ZoneObject {
712 explicit Impl(MachineRepresentation rep) : value_(nullptr), rep_(rep) {}
719 : impl_(new (assembler->zone()) Impl(rep)), assembler_(assembler) {
823 CodeAssembler::Variable::Impl* var_impl = var.first;
  /frameworks/base/core/java/android/provider/
Downloads.java 41 public static final class Impl implements BaseColumns {
42 private Impl() {}
802 private static final String QUERY_WHERE_CLAUSE = Impl.COLUMN_NOTIFICATION_PACKAGE + "=? AND "
803 + Impl.COLUMN_NOTIFICATION_CLASS + "=?";
810 context.getContentResolver().delete(Impl.CONTENT_URI, QUERY_WHERE_CLAUSE,
  /packages/apps/Messaging/src/com/android/messaging/mmslib/
Downloads.java 41 public static final class Impl implements BaseColumns {
42 private Impl() {}
796 private static final String QUERY_WHERE_CLAUSE = Impl.COLUMN_NOTIFICATION_PACKAGE + "=? AND "
797 + Impl.COLUMN_NOTIFICATION_CLASS + "=?";
804 context.getContentResolver().delete(Impl.CONTENT_URI, QUERY_WHERE_CLAUSE,

Completed in 2318 milliseconds

12 3 4