/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadReceiver.java | 126 try (Cursor cursor = resolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, null, null, 147 final int disowned = resolver.update(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, values, 148 Constants.UID + "=" + uid + " AND " + Downloads.Impl.COLUMN_DESTINATION + " IN (" 149 + Downloads.Impl.DESTINATION_EXTERNAL + "," 150 + Downloads.Impl.DESTINATION_FILE_URI + ")", 154 final int deleted = resolver.delete(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, 192 final Uri uri = ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, id); 196 status = getInt(cursor, Downloads.Impl.COLUMN_STATUS); 197 visibility = getInt(cursor, Downloads.Impl.COLUMN_VISIBILITY); 206 if (Downloads.Impl.isStatusCompleted(status) & [all...] |
DownloadIdleService.java | 101 Downloads.Impl._ID, 102 Downloads.Impl.COLUMN_STATUS, 103 Downloads.Impl.COLUMN_LAST_MODIFICATION, 104 Downloads.Impl.COLUMN_IS_VISIBLE_IN_DOWNLOADS_UI }; 118 final Cursor cursor = resolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, 119 StaleQuery.PROJECTION, Downloads.Impl.COLUMN_STATUS + " >= '200' AND " 120 + Downloads.Impl.COLUMN_LAST_MODIFICATION + " <= '" + modifiedBefore 121 + "' AND " + Downloads.Impl.COLUMN_IS_VISIBLE_IN_DOWNLOADS_UI + " == '0'", 129 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, id), null, null); 141 Downloads.Impl._ID [all...] |
StopRequestException.java | 18 import static android.provider.Downloads.Impl.STATUS_UNHANDLED_HTTP_CODE; 19 import static android.provider.Downloads.Impl.STATUS_UNHANDLED_REDIRECT;
|
DownloadThread.java | 19 import static android.provider.Downloads.Impl.COLUMN_CONTROL; 20 import static android.provider.Downloads.Impl.COLUMN_DELETED; 21 import static android.provider.Downloads.Impl.COLUMN_STATUS; 22 import static android.provider.Downloads.Impl.CONTROL_PAUSED; 23 import static android.provider.Downloads.Impl.STATUS_BAD_REQUEST; 24 import static android.provider.Downloads.Impl.STATUS_CANCELED; 25 import static android.provider.Downloads.Impl.STATUS_CANNOT_RESUME; 26 import static android.provider.Downloads.Impl.STATUS_FILE_ERROR; 27 import static android.provider.Downloads.Impl.STATUS_HTTP_DATA_ERROR; 28 import static android.provider.Downloads.Impl.STATUS_PAUSED_BY_APP [all...] |
DownloadNotifier.java | 22 import static android.provider.Downloads.Impl.STATUS_QUEUED_FOR_WIFI; 23 import static android.provider.Downloads.Impl.STATUS_RUNNING; 141 Downloads.Impl._ID, 142 Downloads.Impl.COLUMN_STATUS, 143 Downloads.Impl.COLUMN_VISIBILITY, 144 Downloads.Impl.COLUMN_NOTIFICATION_PACKAGE, 145 Downloads.Impl.COLUMN_CURRENT_BYTES, 146 Downloads.Impl.COLUMN_TOTAL_BYTES, 147 Downloads.Impl.COLUMN_DESTINATION, 148 Downloads.Impl.COLUMN_TITLE [all...] |
/external/clang/include/clang/Index/ |
CodegenNameGenerator.h | 46 std::unique_ptr<Implementation> Impl;
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
DeferredHandler.java | 38 private Impl mHandler = new Impl(); 40 @Thunk class Impl extends Handler implements MessageQueue.IdleHandler {
|
/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/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldMachO.h | 140 /// Concrete, target specific sub-classes can be accessed via the impl() 144 template <typename Impl> 147 Impl &impl() { return static_cast<Impl &>(*this); } function in class:llvm::RuntimeDyldMachOCRTPBase 148 const Impl &impl() const { return static_cast<const Impl &>(*this); } function in class:llvm::RuntimeDyldMachOCRTPBase
|
/external/v8/src/parsing/ |
parser-base.h | 95 if (!*ok) return impl()->x(__VA_ARGS__); \ 104 // The Impl parameter is the actual class of the parser/pre-parser, 110 // template <typename Impl> 114 // // parser behavior. The Impl parameter is the actual derived 117 // template <typename Impl> 136 // implementation class Impl, it is expected to contain the following typedefs: 139 // struct ParserTypes<Impl> { 140 // // Synonyms for ParserBase<Impl> and Impl, respectively. 142 // typedef Impl; 190 Impl* impl() { return static_cast<Impl*>(this); } function in class:v8::internal::ParseFunctionFlags::ParserBase 191 const Impl* impl() const { return static_cast<const Impl*>(this); } function in class:v8::internal::ParseFunctionFlags::ParserBase [all...] |
/frameworks/opt/telephony/src/java/com/google/android/mms/util/ |
DrmConvertSession.java | 118 * @return Downloads.Impl.STATUS_SUCCESS if execution is ok. 119 * Downloads.Impl.STATUS_FILE_ERROR in case converted file can not 120 * be accessed. Downloads.Impl.STATUS_NOT_ACCEPTABLE if a problem 122 * Downloads.Impl.STATUS_UNKNOWN_ERROR if a general error occurred. 126 int result = Downloads.Impl.STATUS_UNKNOWN_ERROR; 133 result = Downloads.Impl.STATUS_NOT_ACCEPTABLE; 140 result = Downloads.Impl.STATUS_SUCCESS; 142 result = Downloads.Impl.STATUS_FILE_ERROR; 145 result = Downloads.Impl.STATUS_FILE_ERROR; 148 result = Downloads.Impl.STATUS_FILE_ERROR [all...] |
/packages/apps/Messaging/src/com/android/messaging/mmslib/util/ |
DrmConvertSession.java | 120 * @return Downloads.Impl.STATUS_SUCCESS if execution is ok. 121 * Downloads.Impl.STATUS_FILE_ERROR in case converted file can not 122 * be accessed. Downloads.Impl.STATUS_NOT_ACCEPTABLE if a problem 124 * Downloads.Impl.STATUS_UNKNOWN_ERROR if a general error occurred. 128 int result = Downloads.Impl.STATUS_UNKNOWN_ERROR; 135 result = Downloads.Impl.STATUS_NOT_ACCEPTABLE; 142 result = Downloads.Impl.STATUS_SUCCESS; 144 result = Downloads.Impl.STATUS_FILE_ERROR; 147 result = Downloads.Impl.STATUS_FILE_ERROR; 150 result = Downloads.Impl.STATUS_FILE_ERROR [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ExplodedGraph.h | 409 ImplTy Impl; 414 Impl.insert(N); 420 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N); 426 unsigned size() const { return Impl.size(); } 427 bool empty() const { return Impl.empty(); } 428 bool erase(ExplodedNode *N) { return Impl.erase(N); } 430 void clear() { Impl.clear(); } 434 Impl = S.Impl; 436 Impl.insert(S.begin(), S.end()) [all...] |
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/java8/ |
InterfaceDefaultMethodsTest.java | 29 loader.add(InterfaceDefaultMethodsTarget.Impl.class).newInstance();
|
/external/llvm/include/llvm/ExecutionEngine/ |
RuntimeDyldChecker.h | 101 std::unique_ptr<RuntimeDyldCheckerImpl> Impl;
|
/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/googletest/googlemock/include/gmock/ |
gmock-actions.h | 364 // Constructs an Action from its implementation. A NULL impl is 366 explicit Action(ActionInterface<F>* impl) : impl_(impl) {} 426 template <typename Impl> 429 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} 443 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} [all...] |
/external/v8/src/base/ |
logging.cc | 33 template std::string* Check##NAME##Impl<float, float>( \ 35 template std::string* Check##NAME##Impl<double, double>( \
|
/external/v8/testing/gmock/include/gmock/ |
gmock-actions.h | 364 // Constructs an Action from its implementation. A NULL impl is 366 explicit Action(ActionInterface<F>* impl) : impl_(impl) {} 426 template <typename Impl> 429 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} 443 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} [all...] |
/packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/ |
DownloadProviderPermissionsTest.java | 78 values.put(Downloads.Impl.COLUMN_URI, "foo"); 79 mContentResolver.insert(Downloads.Impl.CONTENT_URI, values);
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
BasicInliner.cpp | 155 Impl = new BasicInlinerImpl(TD); 159 delete Impl; 166 Impl->addFunction(F); 172 Impl->neverInlineFunction(F); 179 Impl->inlineFunctions();
|
/frameworks/av/media/libstagefright/codec2/include/ |
C2Buffer.h | 132 class Impl; 133 std::shared_ptr<Impl> mImpl; 192 class Impl; 193 std::shared_ptr<Impl> mImpl; 418 class Impl; 419 std::shared_ptr<Impl> mImpl; 451 class Impl; 452 std::shared_ptr<Impl> mImpl; 480 class Impl; 483 std::shared_ptr<Impl> mImpl [all...] |
/frameworks/base/core/java/android/provider/ |
Downloads.java | 41 public static final class Impl implements BaseColumns { 42 private Impl() {} 804 private static final String QUERY_WHERE_CLAUSE = Impl.COLUMN_NOTIFICATION_PACKAGE + "=? AND " 805 + Impl.COLUMN_NOTIFICATION_CLASS + "=?"; 812 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,
|
/prebuilts/go/darwin-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...] |