Home
last modified time | relevance | path

Searched full:cleanup (Results 1 – 25 of 7339) sorted by relevance

12345678910>>...294

/external/cldr/tools/cldr-code/.settings/
Dorg.eclipse.jdt.ui.prefs1 cleanup.add_default_serial_version_id=true
2 cleanup.add_generated_serial_version_id=false
3 cleanup.add_missing_annotations=true
4 cleanup.add_missing_deprecated_annotations=true
5 cleanup.add_missing_methods=false
6 cleanup.add_missing_nls_tags=false
7 cleanup.add_missing_override_annotations=true
8 cleanup.add_missing_override_annotations_interface_methods=true
9 cleanup.add_serial_version_id=false
10 cleanup.always_use_blocks=true
[all …]
/external/gson/lib/
Dgson-cleanup-styles.xml4 <setting id="cleanup.add_missing_nls_tags" value="false"/>
5 <setting id="cleanup.format_source_code" value="false"/>
6 <setting id="cleanup.add_missing_override_annotations" value="true"/>
7 <setting id="cleanup.qualify_static_method_accesses_with_declaring_class" value="false"/>
8 <setting id="cleanup.remove_unused_private_types" value="true"/>
9 <setting id="cleanup.remove_unused_private_fields" value="true"/>
10 <setting id="cleanup.always_use_parentheses_in_expressions" value="false"/>
11 <setting id="cleanup.never_use_blocks" value="false"/>
12 <setting id="cleanup.make_local_variable_final" value="true"/>
13 <setting id="cleanup.add_missing_deprecated_annotations" value="true"/>
[all …]
/external/linux-kselftest/tools/testing/selftests/cgroup/
Dtest_freezer.c144 goto cleanup; in test_cgfreezer_simple()
147 goto cleanup; in test_cgfreezer_simple()
153 goto cleanup; in test_cgfreezer_simple()
156 goto cleanup; in test_cgfreezer_simple()
159 goto cleanup; in test_cgfreezer_simple()
162 goto cleanup; in test_cgfreezer_simple()
166 cleanup: in test_cgfreezer_simple()
196 goto cleanup; in test_cgfreezer_tree()
200 goto cleanup; in test_cgfreezer_tree()
204 goto cleanup; in test_cgfreezer_tree()
[all …]
Dtest_core.c88 goto cleanup; in test_cgcore_destroy()
92 goto cleanup; in test_cgcore_destroy()
98 goto cleanup; in test_cgcore_destroy()
102 goto cleanup; in test_cgcore_destroy()
105 goto cleanup; in test_cgcore_destroy()
110 goto cleanup; in test_cgcore_destroy()
117 goto cleanup; in test_cgcore_destroy()
120 goto cleanup; in test_cgcore_destroy()
123 cleanup: in test_cgcore_destroy()
155 goto cleanup; in test_cgcore_populated()
[all …]
Dtest_memcontrol.c106 goto cleanup; in alloc_anon_50M_check()
109 goto cleanup; in alloc_anon_50M_check()
113 goto cleanup; in alloc_anon_50M_check()
116 goto cleanup; in alloc_anon_50M_check()
119 cleanup: in alloc_anon_50M_check()
136 goto cleanup; in alloc_pagecache_50M_check()
140 goto cleanup; in alloc_pagecache_50M_check()
144 goto cleanup; in alloc_pagecache_50M_check()
147 goto cleanup; in alloc_pagecache_50M_check()
151 cleanup: in alloc_pagecache_50M_check()
[all …]
Dtest_cpu.c46 goto cleanup; in test_cpucg_subtree_control()
49 goto cleanup; in test_cpucg_subtree_control()
52 goto cleanup; in test_cpucg_subtree_control()
56 goto cleanup; in test_cpucg_subtree_control()
59 goto cleanup; in test_cpucg_subtree_control()
62 goto cleanup; in test_cpucg_subtree_control()
67 goto cleanup; in test_cpucg_subtree_control()
70 goto cleanup; in test_cpucg_subtree_control()
74 goto cleanup; in test_cpucg_subtree_control()
77 goto cleanup; in test_cpucg_subtree_control()
[all …]
/external/ltp/testcases/kernel/syscalls/utils/
Dcompat_16.h46 # define LTP_CREATE_SYSCALL(sys_name, cleanup, ...) \ argument
50 tst_brkm(TCONF, cleanup, \
55 # define LTP_CREATE_SYSCALL(sys_name, cleanup, ...) \ argument
56 (void) cleanup; \
60 #define UID16_CHECK(uid, sys_name, cleanup) \ argument
62 tst_brkm(TBROK, cleanup, \
67 #define GID16_CHECK(gid, sys_name, cleanup) \ argument
69 tst_brkm(TBROK, cleanup, \
75 int SETGROUPS(void (cleanup)(void), size_t gidsetsize, GID_T *list) in SETGROUPS()
77 LTP_CREATE_SYSCALL(setgroups, cleanup, gidsetsize, list); in SETGROUPS()
[all …]
/external/llvm/test/CodeGen/PowerPC/
DBoolRetToIntTest.ll17 br i1 %cmp.4, label %cleanup, label %for.body.preheader
24 br i1 %cmp, label %cleanup.loopexit, label %for.body
31 br i1 %call, label %cleanup.loopexit, label %for.cond
33 cleanup.loopexit: ; preds = %for.body, %for.cond
35 %cleanup.dest.slot.0.ph = phi i1 [ true, %for.body ], [ false, %for.cond ]
36 br label %cleanup
38 cleanup: ; preds = %cleanup.loopexit, %entry
39 ; CHECK: = phi i32 [ 0, %entry ], [ [[PHI]], %cleanup.loopexit ]
40 %cleanup.dest.slot.0 = phi i1 [ false, %entry ], [ %cleanup.dest.slot.0.ph, %cleanup.loopexit ]
43 ret i1 %cleanup.dest.slot.0
[all …]
/external/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/libtextclassifier/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/tensorflow/third_party/absl/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/webrtc/third_party/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/cronet/third_party/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/angle/third_party/abseil-cpp/absl/cleanup/
Dcleanup_test.cc15 #include "absl/cleanup/cleanup.h"
41 // `FunctorClass` is a type used for testing `absl::Cleanup`. It is intended to
97 auto cleanup = absl::MakeCleanup(std::move(callback)); in TYPED_TEST() local
100 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
105 auto cleanup = absl::MakeCleanup(&FnPtrFunction); in TYPED_TEST() local
107 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
112 auto cleanup = absl::MakeCleanup(FnPtrFunction); in TYPED_TEST() local
114 static_assert(IsSame<absl::Cleanup<Tag, void (*)()>, decltype(cleanup)>(), in TYPED_TEST()
123 absl::Cleanup cleanup = std::move(callback); in TYPED_TEST() local
126 IsSame<absl::Cleanup<Tag, decltype(callback)>, decltype(cleanup)>(), in TYPED_TEST()
[all …]
/external/clang/test/Sema/
Dattr-cleanup.c5 extern int g1 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}}
6 int g2 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}}
7 static int g3 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}}
11 int v1 __attribute((cleanup)); // expected-error {{'cleanup' attribute takes one argument}} in t1()
12 … int v2 __attribute((cleanup(1, 2))); // expected-error {{'cleanup' attribute takes one argument}} in t1()
14 static int v3 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}} in t1()
16 int v4 __attribute((cleanup(h))); // expected-error {{use of undeclared identifier 'h'}} in t1()
18 int v5 __attribute((cleanup(c1))); in t1()
19 … int v6 __attribute((cleanup(v3))); // expected-error {{'cleanup' argument 'v3' is not a function}} in t1()
31 …int v1 __attribute__((cleanup(c2))); // expected-error {{'cleanup' function 'c2' must take 1 param… in t2()
[all …]
/external/ltp/testcases/kernel/syscalls/open/
Dopen14.c38 static void cleanup(void) in cleanup() function
55 tst_brkm(TCONF, cleanup, "O_TMPFILE not supported"); in setup()
57 tst_brkm(TBROK | TERRNO, cleanup, "open() failed"); in setup()
60 SAFE_CLOSE(cleanup, fd); in setup()
68 SAFE_WRITE(cleanup, SAFE_WRITE_ALL, fd, buf, size); in write_file()
77 fd = SAFE_OPEN(cleanup, ".", O_TMPFILE | O_RDWR, 0600); in test01()
82 SAFE_FSTAT(cleanup, fd, &st); in test01()
88 SAFE_CLOSE(cleanup, fd); in test01()
93 if (!tst_dir_is_empty(cleanup, ".", 1)) in test01()
94 tst_brkm(TFAIL, cleanup, "found a file, this is not expected"); in test01()
[all …]
Dopen12.c47 static void cleanup(void);
73 cleanup(); in main()
83 tst_sig(FORK, DEF_HANDLER, cleanup); in setup()
87 SAFE_MKDIR(cleanup, MNTPOINT, DIR_MODE); in setup()
89 if (tst_path_has_mnt_flags(cleanup, NULL, mount_flags)) { in setup()
93 device = tst_acquire_device(cleanup); in setup()
101 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
103 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, MS_STRICTATIME, NULL); in setup()
108 SAFE_FILE_PRINTF(cleanup, TEST_FILE, TEST_FILE); in setup()
122 len1 = SAFE_LSEEK(cleanup, TEST_RETURN, 0, SEEK_CUR); in test_append()
[all …]
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dhashmap.c61 goto cleanup; in test_hashmap_generic()
69 goto cleanup; in test_hashmap_generic()
74 goto cleanup; in test_hashmap_generic()
78 goto cleanup; in test_hashmap_generic()
81 goto cleanup; in test_hashmap_generic()
86 goto cleanup; in test_hashmap_generic()
90 goto cleanup; in test_hashmap_generic()
100 goto cleanup; in test_hashmap_generic()
104 goto cleanup; in test_hashmap_generic()
113 goto cleanup; in test_hashmap_generic()
[all …]
Dlookup_and_delete.c56 goto cleanup; in setup_prog()
60 goto cleanup; in setup_prog()
64 goto cleanup; in setup_prog()
68 goto cleanup; in setup_prog()
72 cleanup: in setup_prog()
111 goto cleanup; in test_lookup_and_delete_hash()
118 goto cleanup; in test_lookup_and_delete_hash()
123 goto cleanup; in test_lookup_and_delete_hash()
128 goto cleanup; in test_lookup_and_delete_hash()
130 cleanup: in test_lookup_and_delete_hash()
[all …]
/external/llvm/test/CodeGen/X86/
D2010-04-30-LocalAlloc-LandingPad.ll22 %cleanup.dst = alloca i32 ; <i32*> [#uses=3]
23 %cleanup.dst7 = alloca i32 ; <i32*> [#uses=6]
29 store i32 1, i32* %cleanup.dst7
34 cleanup
56 store i32 1, i32* %cleanup.dst
61 cleanup
64 store i32 2, i32* %cleanup.dst
67 cleanup.pad: ; preds = %cleanup.switch
68 store i32 1, i32* %cleanup.dst7
71 cleanup.pad4: ; preds = %cleanup.switch
[all …]
/external/ltp/testcases/kernel/syscalls/openat/
Dopenat03.c39 static void cleanup(void) in cleanup() function
56 tst_brkm(TCONF, cleanup, "O_TMPFILE not supported"); in setup()
58 tst_brkm(TBROK | TERRNO, cleanup, "openat() failed"); in setup()
61 SAFE_CLOSE(cleanup, fd); in setup()
71 tst_brkm(TBROK | TERRNO, cleanup, "openat() failed"); in openat_tmp()
79 SAFE_WRITE(cleanup, SAFE_WRITE_ALL, fd, buf, size); in write_file()
93 SAFE_FSTAT(cleanup, fd, &st); in test01()
99 SAFE_CLOSE(cleanup, fd); in test01()
104 if (!tst_dir_is_empty(cleanup, ".", 1)) in test01()
105 tst_brkm(TFAIL, cleanup, "found a file, this is not expected"); in test01()
[all …]
/external/clang/lib/CodeGen/
DCGCleanup.cpp13 // A "cleanup" is a piece of code which needs to be executed whenever
152 EHCleanupScope *cleanup = dyn_cast<EHCleanupScope>(&*it); in containsOnlyLifetimeMarkers() local
153 if (!cleanup || !cleanup->isLifetimeMarker()) in containsOnlyLifetimeMarkers()
163 if (auto *cleanup = dyn_cast<EHCleanupScope>(&*find(si))) in requiresLandingPad() local
164 if (cleanup->isLifetimeMarker()) { in requiresLandingPad()
165 si = cleanup->getEnclosingEHScope(); in requiresLandingPad()
178 EHCleanupScope &cleanup = cast<EHCleanupScope>(*find(si)); in getInnermostActiveNormalCleanup() local
179 if (cleanup.isActive()) return si; in getInnermostActiveNormalCleanup()
180 si = cleanup.getEnclosingNormalCleanup(); in getInnermostActiveNormalCleanup()
214 EHCleanupScope &Cleanup = cast<EHCleanupScope>(*begin()); in popCleanup() local
[all …]
/external/selinux/libsemanage/src/
Ddirect_api.c484 goto cleanup; in semanage_direct_update_user_extra()
497 goto cleanup; in semanage_direct_update_user_extra()
501 goto cleanup; in semanage_direct_update_user_extra()
510 goto cleanup; in semanage_direct_update_user_extra()
514 goto cleanup; in semanage_direct_update_user_extra()
522 cleanup: in semanage_direct_update_user_extra()
539 goto cleanup; in semanage_direct_update_seuser()
552 goto cleanup; in semanage_direct_update_seuser()
556 goto cleanup; in semanage_direct_update_seuser()
565 goto cleanup; in semanage_direct_update_seuser()
[all …]

12345678910>>...294