Home
last modified time | relevance | path

Searched refs:release (Results 1 – 25 of 1653) sorted by relevance

12345678910>>...67

/external/clang/test/Analysis/
Dproperties.m24 -(oneway void)release; method
109 value = [self.myNumber retain]; // this line fixes the over release
218 [p.name release]; // expected-warning{{not owned}}
221 [p.friend release]; // expected-warning{{not owned}}
226 [friend release]; // expected-warning{{not owned}}
236 [_name release]; // no-warning
240 [other.name release]; // no-warning
249 [name release];
254 [self.name release];
255 [self.name release]; // expected-warning{{not owned}}
[all …]
DPR2978.m3 // Tests for the checker which checks missing/extra ivar 'release' calls
7 - (void)release; method
49 [_X release];
50 [_Z release];
51 [_N release];
53 self.M = 0; // This will release '_M'
54 [self setV:0]; // This will release '_V'
55 [self setW:@"newW"]; // This will release '_W', but retain the new value
/external/libusb/
DNEWS1 This file lists notable changes in each release. For the full history of all
19 2009-11-06: v1.0.4 release
25 2009-08-27: v1.0.3 release
29 2009-06-13: v1.0.2 release
32 2009-05-12: v1.0.1 release
36 2008-12-13: v1.0.0 release
39 2008-11-21: v0.9.4 release
43 2008-08-23: v0.9.3 release
46 2008-07-19: v0.9.2 release
49 2008-06-28: v0.9.1 release
[all …]
/external/llvm/utils/release/
Dexport.sh20 release=""
33 release_no_dot=`echo $release | sed -e 's,\.,,g'`
44 $proj-$release$rc.src
47 tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src
53 -release | --release )
55 release=$1
77 if [ "x$release" = "x" ]; then
Dtag.sh17 release=""
73 -release | --release )
75 release=$1
107 if [ "x$release" = "x" ]; then
114 branch_release=`echo $release | sed -e 's,\([0-9]*\.[0-9]*\).*,\1,' | sed -e 's,\.,,g'`
115 tag_release=`echo $release | sed -e 's,\.,,g'`
/external/llvm/docs/
DReleaseProcess.rst12 This document contains information about testing the release candidates that will
13 ultimately be the next LLVM release. For more information on how to manage the
14 actual release, please refer to :doc:`HowToReleaseLLVM`.
19 Once the release process starts, the Release Manager will ask for volunteers,
22 * Test and benchmark the previous release
24 * Test and benchmark each release candidate, comparing to the previous release and candidates
28 * Make sure the critical bugs get fixed and merged to the next release candidate
31 should be fixed before the next candidate and what can wait until the next release.
39 * The stage in the release. Less critical bugs should be considered to be fixed between
50 The scripts are in the ``utils/release`` directory.
[all …]
DHowToReleaseLLVM.rst17 If you're looking for the document on how to test the release candidates and
27 The release manager will determine if and when to make a dot release based
35 The release process is roughly as follows:
38 date. Announce release schedule to the LLVM community and update the website.
40 * Create release branch and begin release process.
42 * Send out release candidate sources for first round of testing. Testing lasts
44 fixed. Patches are merged from mainline into the release branch. Also, all
47 release.
49 * Generate and send out the second release candidate sources. Only *critial*
53 * The release notes are updated.
[all …]
DReleaseNotes.rst9 These are in-progress notes for the upcoming LLVM 3.7 release. You may
17 This document contains the release notes for the LLVM Compiler Infrastructure,
18 release 3.7. Here we describe the status of LLVM, including major improvements
19 from the previous release, improvements in various subprojects of LLVM, and
24 release, please check out the `main LLVM web site <http://llvm.org/>`_. If you
30 LLVM web page, this document applies to the *next* release, not the current
31 one. To see the release notes for a specific release, please see the `releases
34 Non-comprehensive list of changes in this release
71 During this release ...
77 During this release ...
[all …]
/external/libusb-compat/
DNEWS1 This file lists notable changes in each release. For the full history of all
4 2009-07-09: libusb-compat-0.1.3 release
8 2009-06-11: libusb-compat-0.1.2 release
11 2009-05-28: libusb-compat-0.1.1 release
14 2008-12-13: libusb-compat-0.1.0 release
17 2008-11-21: libusb-compat-0.1.0-beta3 release
20 2008-06-28: libusb-compat-0.1.0-beta2 release
24 2008-05-25: libusb-compat-0.1.0-beta1 release
25 * Initial beta release
/external/valgrind/docs/internals/
Drelease-HOWTO.txt2 TODO list when doing a Valgrind release (with release number "X.Y.Z")
14 - Tell valgrind-developers you want to do a release. Give a timeframe for
16 release.
21 release date probably won't be known yet, updating it is in the list below
22 of tasks for the official release.)
25 for the release. (include/valgrind.h)
27 - Write release notes, add to NEWS. Include a list of fixed bugs from
37 at the previous release. Work backwards through this list until
43 Suggestion for next release: when a bug is fixed, update NEWS
63 For each release candidate (should do release candidates for feature
[all …]
/external/clang/test/ARCMT/
Dreleases.m14 - (oneway void)release; method
36 [x release];
38 [IhaveSideEffect() release];
40 [x release], x = 0;
44 [x release];
51 [p release];
52 (([p release]));
62 [_foo release];
71 [p release];
80 #define RELEASE_MACRO(x) [x release]
[all …]
Dreleases-driver.m14 - (oneway void)release; method
36 [x release];
38 [IhaveSideEffect() release];
40 [x release], x = 0;
46 [p release];
47 (([p release]));
57 [_foo release];
61 #define RELEASE_MACRO(x) [x release]
/external/elfutils/src/libdwfl/
Dlinux-kernel-modules.c146 if (utsname.release[0] == '\0' && uname (&utsname) != 0) in kernel_release()
148 return utsname.release; in kernel_release()
152 find_kernel_elf (Dwfl *dwfl, const char *release, char **fname) in find_kernel_elf() argument
154 if ((release[0] == '/' in find_kernel_elf()
155 ? asprintf (fname, "%s/vmlinux", release) in find_kernel_elf()
156 : asprintf (fname, "/boot/vmlinux-%s", release)) < 0) in find_kernel_elf()
160 if (fd < 0 && release[0] != '/') in find_kernel_elf()
163 if (asprintf (fname, MODULEDIRFMT "/vmlinux", release) < 0) in find_kernel_elf()
172 get_release (Dwfl *dwfl, const char **release) in get_release() argument
177 const char *release_string = release == NULL ? NULL : *release; in get_release()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
Dmain.m27 [lexer release];
28 [stream release];
29 [tokenStream release];
30 [parser release];
31 // [treeStream release];
32 // [walker release];
34 [pool release];
/external/replicaisland/src/com/replica/replicaisland/
DDrawableFactory.java56 public void release(DrawableObject object) { in release() method in DrawableFactory
59 pool.release(object); in release()
85 public void release(Object entry) { in release() method in DrawableFactory.DrawableBitmapPool
87 super.release(entry); in release()
122 public void release(Object entry) { in release() method in DrawableFactory.ScrollableBitmapPool
124 super.release(entry); in release()
151 public void release(Object entry) { in release() method in DrawableFactory.TiledBackgroundVertexGridPool
154 super.release(entry); in release()
DInputXY.java40 public final void release() { in release() method in InputXY
41 mXAxis.release(); in release()
42 mYAxis.release(); in release()
71 mXAxis.release(); in releaseX()
75 mYAxis.release(); in releaseY()
93 release(); in clone()
/external/jpeg/
Dltconfig1113 library_names_spec='${libname}${release}.so.$versuffix $libname.a'
1117 soname_spec='${libname}${release}.so.$major'
1128 library_names_spec='${libname}${release}.so.$versuffix $libname.so'
1135 library_names_spec='${libname}${release}.so.$versuffix'
1145 library_names_spec='${libname}${release}.sl.$versuffix ${libname}${release}.sl.$major $libname.sl'
1146 soname_spec='${libname}${release}.sl.$major'
1153 soname_spec='${libname}${release}.so'
1154 library_names_spec='${libname}${release}.so.$versuffix $libname.so'
1166 library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so'
1167 soname_spec='${libname}${release}.so.$major'
[all …]
/external/apache-http/src/org/apache/http/util/
DVersionInfo.java102 String release, String time, String clsldr) { in VersionInfo() argument
110 infoRelease = (release != null) ? release : UNAVAILABLE; in VersionInfo()
294 String release = null; in fromMap() local
302 release = (String) info.get(PROPERTY_RELEASE); in fromMap()
303 if ((release != null) && ((release.length() < 1) || in fromMap()
304 (release.equals("${pom.version}")))) in fromMap()
305 release = null; in fromMap()
319 return new VersionInfo(pckg, module, release, timestamp, clsldrstr); in fromMap()
/external/bison/
DREADME-release1 Here are most of the steps we (maintainers) follow when making a release.
18 * Ensure that you've pushed all changes that belong in the release:
30 * Pre-release testing: ensure that the following command succeeds:
34 * To (i) set the date, version number, and release TYPE on line 3 of
35 NEWS, (ii) commit that, and (iii) tag the release, run
38 make release-commit RELEASE='X.Y TYPE'
40 * Run the following to create release tarballs. Your choice selects the
45 make release RELEASE='X.Y TYPE'
50 * While that's happening, write the release announcement that you will
56 * Run the gnupload command that was suggested by your "make release"
[all …]
/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_clock_test.cc46 vector.release(&cache, &chunked); in TEST()
59 vector1.release(&cache, &chunked); in TEST()
92 vector.release(&cache, &chunked); in TEST()
118 vector1.release(&cache, &chunked); in TEST()
120 vector2.release(&cache, &chunked); in TEST()
126 vector2.release(&cache, &chunked); in TEST()
128 vector1.release(&cache, &chunked); in TEST()
134 vector1.release(&cache, &chunked); in TEST()
141 vector2.release(&cache, &chunked); in TEST()
155 vector.release(&cache, &sync); in TEST()
[all …]
/external/libcxxabi/src/
Dcxa_vector.cpp49 void release () { enabled_ = false; } in release() function in __cxxabiv1::__anonc0890d0c0111::st_heap_block2
64 void release () { enabled_ = false; } in release() function in __cxxabiv1::__anonc0890d0c0111::st_heap_block3
85 void release () { enabled_ = false; } in release() function in __cxxabiv1::__anonc0890d0c0111::st_cxa_cleanup
99 void release () { enabled_ = false; } in release() function in __cxxabiv1::__anonc0890d0c0111::st_terminate
159 heap.release (); // We're good! in __cxa_vec_new2()
188 heap.release (); // We're good! in __cxa_vec_new3()
218 cleanup.release (); // We're good! in __cxa_vec_cctor()
242 cleanup.release (); // We're good! in __cxa_vec_ctor()
268 exception_guard.release (); // We're good ! in __cxa_vec_dtor()
270 cleanup.release (); // We're still good! in __cxa_vec_dtor()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
DIntersection.java135 vars.release(); in intersect()
146 vars.release(); in intersect()
157 vars.release(); in intersect()
172 vars.release(); in intersect()
183 vars.release(); in intersect()
194 vars.release(); in intersect()
209 vars.release(); in intersect()
220 vars.release(); in intersect()
231 vars.release(); in intersect()
247 vars.release(); in intersect()
[all …]
/external/libdrm/
DRELEASING1 The release criteria for libdrm is essentially "if you need a release,
2 make one". There is no designated release engineer or maintainer.
3 Anybody is free to make a release if there's a certain feature or bug
7 support to libdrm, at which point we typically create a new release.
10 Follow these steps to release a new version of libdrm:
41 commit with the version number of the release as the name and a
42 message of "libdrm X.Y.Z". For example, for the 2.4.16 release
53 6) Use the release.sh script from the xorg/util/modular repo to
59 ../modular/release.sh libdrm 2.4.15 2.4.16
66 what prompted this release. Send out the email and you're done!
/external/skia/experimental/iOSSampleApp/Shared/
DSkUIDetailViewController.mm24 [swipe release];
30 [swipe release];
71 [flexibleSpace release];
72 [fixedSpace release];
73 [toolbar release];
88 [fPrintButton release];
89 [fOptionsButton release];
90 [fPopOverController release];
91 [fOptionsController release];
147 [navigation release];
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/token/
DANTLRCommonTokenTest.m19 [token release];
27 [token release];
38 [token release];
48 [token release];
59 [token release];
60 [stream release];
82 [token release];
83 [newToken release];
84 [stream release];
94 [token release];
[all …]

12345678910>>...67