/prebuilts/go/linux-x86/test/ |
closedchan.go | 26 Impl() string 79 func (c XChan) Impl() string { 142 func (c SChan) Impl() string { 213 func (c SSChan) Impl() string { 231 println("test1: recv on closed:", x, c.Impl()) 235 println("test1: recv2 on closed:", x, ok, c.Impl()) 242 println("test1: recv on closed nb:", x, selected, c.Impl()) 247 println("test1: recv2 on closed nb:", x, ok, selected, c.Impl()) 257 println("test1: recv on closed got non-zero after send on closed:", x, c.Impl()) 264 println("test1: recv on closed got non-zero after send on closed:", x, c.Impl()) [all...] |
/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/clang/include/clang/AST/ |
ParentMap.h | 22 void* Impl;
|
/external/skia/tools/ |
SkShaper_primitive.cpp | 12 struct SkShaper::Impl { 16 SkShaper::SkShaper(sk_sp<SkTypeface> tf) : fImpl(new Impl) {
|
/external/clang/lib/AST/ |
ParentMap.cpp | 97 ParentMap::ParentMap(Stmt *S) : Impl(nullptr) { 101 Impl = M; 106 delete (MapTy*) Impl; 111 BuildParentMap(*(MapTy*) Impl, S); 118 MapTy *M = reinterpret_cast<MapTy *>(Impl); 123 MapTy* M = (MapTy*) Impl;
|
/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);
|
/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/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
FuturesCombineBenchmark.java | 37 enum Impl { 76 @Param Impl impl; 85 Impl impl = this.impl; 89 sum += impl.combine(callable, INLINE_EXECUTOR, futures).get(); 100 Impl impl = this.impl; [all...] |
StripedBenchmark.java | 50 @Param Impl impl; field in class:StripedBenchmark 52 enum Impl { 77 this.striped = impl.get(numStripes); 90 return impl.get(numStripes); 98 Striped<Lock> striped = impl.get(numStripes); 108 Impl implLocal = impl;
|
MoreExecutorsDirectExecutorBenchmark.java | 40 enum Impl { 54 @Param Impl impl; field in class:MoreExecutorsDirectExecutorBenchmark 69 executor = impl.executor();
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
SettingsStorageService.java | 49 final Intent intent = new Intent(context, Impl.class); 56 final Intent intent = new Intent(context, Impl.class); 63 final Intent intent = new Intent(context, Impl.class); 69 public static class Impl extends IntentService { 71 public Impl() { 72 super(Impl.class.getName());
|
/external/llvm/lib/Support/ |
CrashRecoveryContext.cpp | 97 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 189 // there may not actually be an Impl available, or even a current 318 assert(!Impl && "Crash recovery context already initialized!"); 320 Impl = CRCI; 332 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 375 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
CrashRecoveryContext.cpp | 79 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 172 // there may not actually be an Impl available, or even a current 304 assert(!Impl && "Crash recovery context already initialized!"); 306 Impl = CRCI; 318 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; 324 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl;
|
/external/v8/src/base/ |
logging.h | 60 if (std::string* _msg = ::v8::base::Check##name##Impl( \ 77 // Build the error message string. This is separate from the "Impl" 79 // be out of line, while the "Impl" code should be inline. Caller 113 V8_INLINE std::string* Check##NAME##Impl(Lhs const& lhs, Rhs const& rhs, \ 117 V8_INLINE std::string* Check##NAME##Impl(int lhs, int rhs, \ 121 extern template V8_BASE_EXPORT std::string* Check##NAME##Impl<float, float>( \ 124 Check##NAME##Impl<double, double>(double const& lhs, double const& rhs, \
|
/frameworks/support/compat/java/android/support/v4/app/ |
RemoteInput.java | 261 return IMPL.getDataResultsFromIntent(intent, remoteInputResultKey); 273 return IMPL.getResultsFromIntent(intent); 289 IMPL.addResultsToIntent(remoteInputs, intent, results); 302 IMPL.addDataResultToIntent(remoteInput, intent, results); 305 private static final Impl IMPL; 307 interface Impl { 316 static class ImplBase implements Impl { 343 static class ImplJellybean implements Impl { 369 static class ImplApi20 implements Impl { [all...] |
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
AbstractDownloadProviderFunctionalTest.java | 195 Cursor cursor = mResolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, 207 cursor = mResolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, null, 228 String[] columns = new String[] {Downloads.Impl._DATA}; 229 Cursor cursor = mResolver.query(Downloads.Impl.CONTENT_URI, columns, null, null, null); 240 mResolver.delete(Downloads.Impl.CONTENT_URI, null, null);
|
/external/clang/include/clang/Analysis/ |
CFG.h | 356 ImplTy Impl; 358 ElementList(BumpVectorContext &C) : Impl(C, 4) {} 366 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } 369 return Impl.insert(I, Cnt, E, C); 372 const_reference front() const { return Impl.back(); } 373 const_reference back() const { return Impl.front(); } 375 iterator begin() { return Impl.rbegin(); } 376 iterator end() { return Impl.rend(); } 377 const_iterator begin() const { return Impl.rbegin(); } 378 const_iterator end() const { return Impl.rend(); [all...] |
/external/google-breakpad/src/testing/include/gmock/ |
gmock-matchers.h | 223 explicit MatcherBase(const MatcherInterface<T>* impl) 224 : impl_(impl) {} 259 explicit Matcher(const MatcherInterface<T>* impl) 260 : internal::MatcherBase<T>(impl) {} 276 explicit Matcher(const MatcherInterface<const internal::string&>* impl) 277 : internal::MatcherBase<const internal::string&>(impl) {} 293 explicit Matcher(const MatcherInterface<internal::string>* impl) 294 : internal::MatcherBase<internal::string>(impl) {} 308 // To define a polymorphic matcher, a user should provide an Impl 316 template <class Impl> 327 const Impl& impl() const { return impl_; } function in class:testing::PolymorphicMatcher [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadScanner.java | 162 values.put(Downloads.Impl.COLUMN_MEDIA_SCANNED, 1); 164 values.put(Downloads.Impl.COLUMN_MEDIAPROVIDER_URI, uri.toString()); 169 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, req.id);
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_test_util.h | 117 struct Impl; 118 Impl *impl_;
|
/external/llvm/include/llvm/Support/ |
CrashRecoveryContext.h | 42 void *Impl; 46 CrashRecoveryContext() : Impl(nullptr), head(nullptr) {}
|
/external/skia/src/pdf/ |
SkDeflate.cpp | 56 // Hide all zlib impl details. 57 struct SkDeflateWStream::Impl { 67 : fImpl(skstd::make_unique<SkDeflateWStream::Impl>()) {
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
CrashRecoveryContext.h | 46 void *Impl; 50 CrashRecoveryContext() : Impl(0), head(0) {}
|
/external/clang/lib/ARCMigrate/ |
TransformActions.cpp | 603 Impl = new TransformActionsImpl(capturedDiags, ctx, PP); 607 delete static_cast<TransformActionsImpl*>(Impl); 611 static_cast<TransformActionsImpl*>(Impl)->startTransaction(); 615 return static_cast<TransformActionsImpl*>(Impl)->commitTransaction(); 619 static_cast<TransformActionsImpl*>(Impl)->abortTransaction(); 624 static_cast<TransformActionsImpl*>(Impl)->insert(loc, text); 629 static_cast<TransformActionsImpl*>(Impl)->insertAfterToken(loc, text); 633 static_cast<TransformActionsImpl*>(Impl)->remove(range); 637 static_cast<TransformActionsImpl*>(Impl)->removeStmt(S); 641 static_cast<TransformActionsImpl*>(Impl)->replace(range, text) [all...] |
/external/clang/lib/Index/ |
CodegenNameGenerator.cpp | 179 : Impl(new Implementation(Ctx)) { 186 return Impl->writeName(D, OS); 190 return Impl->getName(D); 194 return Impl->getAllManglings(D);
|