HomeSort by relevance Sort by last modified time
    Searched full:newdelete (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/Analysis/
Malloc+NewDelete_intersections.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete -std=c++11 -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks -std=c++11 -verify %s
9 // Check that unix.Malloc + cplusplus.NewDelete does not enable
NewDelete+MismatchedDeallocator_intersections.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,unix.MismatchedDeallocator -std=c++11 -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks,unix.MismatchedDeallocator -DLEAKS -std=c++11 -verify %s
10 // Check that alpha.cplusplus.NewDelete + unix.MismatchedDeallocator
NewDelete-variadic.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks,unix.Malloc -std=c++11 -fblocks -verify %s
NewDelete-intersections.mm 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete -std=c++11 -fblocks -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks -std=c++11 -DLEAKS -fblocks -verify %s
12 // checkers bounded with cplusplus.NewDelete.
NewDelete-custom.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,unix.Malloc -std=c++11 -fblocks -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks,unix.Malloc -std=c++11 -DLEAKS -fblocks -verify %s
Malloc+MismatchedDeallocator_intersections.cpp 10 // warnings produced by the alpha.cplusplus.NewDelete checker.
Malloc+MismatchedDeallocator+NewDelete.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,unix.MismatchedDeallocator,cplusplus.NewDelete -std=c++11 -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,unix.MismatchedDeallocator,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks -DLEAKS -std=c++11 -verify %s
44 // Check that alpha.cplusplus.NewDelete catches all types of bugs.
uninit-const.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=cplusplus.NewDelete,core,alpha.core.CallAndMessageUnInitRefArg -analyzer-output=text -verify %s
MismatchedDeallocator-checker-test.mm 123 // new/delete oparators are subjects of cplusplus.NewDelete.
157 // Check for intersection with cplusplus.NewDelete bounded with
NewDelete-checker-test.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete -std=c++11 -fblocks -verify %s
new.cpp 122 // new/delete oparators are subjects of cplusplus.NewDelete.
NewDelete-path-notes.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=cplusplus.NewDelete,unix.Malloc -analyzer-output=text -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=cplusplus.NewDelete,unix.Malloc -analyzer-output=plist -analyzer-config path-diagnostics-alternate=false %s -o %t.plist
  /external/clang/test/Analysis/inlining/
stl.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,debug.ExprInspection -analyzer-config c++-container-inlining=true -analyzer-config c++-stdlib-inlining=false -std=c++11 -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,cplusplus.NewDelete,debug.ExprInspection -analyzer-config c++-container-inlining=true -analyzer-config c++-stdlib-inlining=true -std=c++11 -DINLINE=1 -verify %s
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentProviderOperationTest.java 64 public void newDelete() {
66 Builder builder = ContentProviderOperation.newDelete(URI);
ContentResolverTest.java 224 operations.add(ContentProviderOperation.newDelete(uri)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentProviderOperation.java 43 public static Builder newDelete(Uri uri) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDiff.java 72 builder = ContentProviderOperation.newDelete(child.uri);
77 builder = ContentProviderOperation.newDelete(targetUri);
103 builder = ContentProviderOperation.newDelete(beforeChild.uri);
  /external/chromium_org/chrome/browser/media/
cast_transport_host_filter_unittest.cc 42 TEST_F(CastTransportHostFilterTest, NewDelete) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 133 .newDelete(uri)
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncParser.java 156 public int newDelete(long id, String serverId) {
234 add(new Operation(ContentProviderOperation.newDelete(
238 .newDelete(mAsSyncAdapterEvents)
389 .newDelete(mAsSyncAdapterAttendees)
395 deleteOffset = ops.newDelete(id, serverId);
    [all...]
AbstractSyncAdapter.java 300 ContentProviderOperation.newDelete(ContentUris.withAppendedId(uri, SEPARATOR_ID)));
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 266 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 266 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncAdapter.java 266 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
NotificationAttentionManagementVerifierActivity.java     [all...]

Completed in 1132 milliseconds

1 2 3