/external/oprofile/doc/xsl/ |
catalog-1.xml.in | 3 "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> 9 <uri name="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" 11 <uri name="http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl"
|
/external/qemu/distrib/sdl-1.2.15/VisualC/tests/testplatform/ |
testplatform.vcproj | 110 Name="Release|Win32" 111 OutputDirectory=".\Release" 112 IntermediateDirectory=".\Release" 136 TypeLibraryName=".\Release/testplatform.tlb" 148 PrecompiledHeaderFile=".\Release/testplatform.pch" 149 AssemblerListingLocation=".\Release/" 150 ObjectFile=".\Release/" 151 ProgramDataBaseFileName=".\Release/" 168 OutputFile=".\Release/testplatform.exe" 171 ProgramDatabaseFile=".\Release/testplatform.pdb [all...] |
/external/qemu/distrib/sdl-1.2.15/src/main/macos/ |
SDL.shlib.r | 14
#ifndef __TYPES_R__
#include "Types.r"
#endif
#ifndef __BALLOONS_R__
#include "Balloons.r"
#endif
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define REVISION 13
#define STATE release /* development | alpha | beta | release */
#define RELEASE_NO 0 /* number after letter, or zero for release */
#define COUNTRY verUS
#define VERSION_STRING "1.2.13"
#define NAME "SDL"
#de (…)
|
/external/chromium_org/third_party/npapi/npspy/windows/ |
npspy.vcproj | 115 Name="Release|Win32" 116 OutputDirectory=".\Release" 117 IntermediateDirectory=".\Release" 142 TypeLibraryName=".\Release/npspy.tlb" 154 PrecompiledHeaderFile=".\Release/npspy.pch" 155 AssemblerListingLocation=".\Release/" 156 ObjectFile=".\Release/" 157 ProgramDataBaseFileName=".\Release/" 174 OutputFile=".\Release/npspy.dll" 178 ProgramDatabaseFile=".\Release/npspy.pdb [all...] |
/external/zlib/src/contrib/vstudio/vc10/ |
minizip.vcxproj | 16 <ProjectConfiguration Include="Release|Itanium">
17 <Configuration>Release</Configuration>
20 <ProjectConfiguration Include="Release|Win32">
21 <Configuration>Release</Configuration>
24 <ProjectConfiguration Include="Release|x64">
25 <Configuration>Release</Configuration>
34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
61 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
PowerManager_WakeLockTest.java | 30 * 2 Release your claim to the CPU or screen being on 40 wl.release(); 43 // Try ref-counted acquire/release 49 wl.release(); 51 wl.release(); 60 wl.release();
|
/external/chromium/base/memory/ |
ref_counted.cc | 24 DCHECK(in_dtor_) << "RefCounted object deleted without calling Release()"; 30 // Current thread books the critical section "AddRelease" without release it. 38 bool RefCountedBase::Release() const { 40 // Current thread books the critical section "AddRelease" without release it. 68 "calling Release()"; 79 bool RefCountedThreadSafeBase::Release() const {
|
/external/chromium_org/base/memory/ |
ref_counted.cc | 24 DCHECK(in_dtor_) << "RefCounted object deleted without calling Release()"; 30 // Current thread books the critical section "AddRelease" without release it. 38 bool RefCountedBase::Release() const { 40 // Current thread books the critical section "AddRelease" without release it. 68 "calling Release()"; 79 bool RefCountedThreadSafeBase::Release() const {
|
/external/replicaisland/src/com/replica/replicaisland/ |
InputXY.java | 40 public final void release() { method in class:InputXY 41 mXAxis.release(); 42 mYAxis.release(); 71 mXAxis.release(); 75 mYAxis.release(); 93 release(); method
|
/external/chromium/build/internal/ |
README.chromium | 3 Contains the common settings used throughout the projects. Is included by either ..\debug.vsprops or ..\release.vsprops, so in general, it is not included directly. 6 Included by ..\release.vsprops. Its settings are overriden by release_impl$(CHROME_BUILD_TYPE).vsprops. Uses the default VS setting which is "Maximize Speed". Results in relatively fast build with reasonable optimization level but without whole program optimization to reduce build time. 9 Included by ..\release.vsprops by default when CHROME_BUILD_TYPE is undefined. Includes release_defaults.vsprops. 12 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_checksenabled. Matches what release_defaults.vsprops does, but doesn't actually inherit from it as we couldn't quite get that working. The only difference is that _DEBUG is set instead of NDEBUG. Used for keeping debug checks enabled with a build that is fast enough to dogfood with. 15 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_official. Includes release_defaults.vsprops. Enables Whole Program Optimizations (WPO), which doubles the build time. Results in much more optimized build. Uses "Full Optimization" and "Flavor small code". 18 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_instrument. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) instrumentation (first pass). Uses "Full Optimization" and "Flavor small code". 21 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_optimize. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) optimization (second pass). Uses "Full Optimization" and "Flavor small code". 24 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_purify. Includes release_defaults.vsprops. Disables optimizations. Used with Purify to test without debug tools and without optimization; i.e. NDEBUG is defined but the compiler doesn't optimize the binary.
|
/external/chromium_org/build/internal/ |
README.chromium | 3 Contains the common settings used throughout the projects. Is included by either ..\debug.vsprops or ..\release.vsprops, so in general, it is not included directly. 6 Included by ..\release.vsprops. Its settings are overriden by release_impl$(CHROME_BUILD_TYPE).vsprops. Uses the default VS setting which is "Maximize Speed". Results in relatively fast build with reasonable optimization level but without whole program optimization to reduce build time. 9 Included by ..\release.vsprops by default when CHROME_BUILD_TYPE is undefined. Includes release_defaults.vsprops. 12 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_checksenabled. Matches what release_defaults.vsprops does, but doesn't actually inherit from it as we couldn't quite get that working. The only difference is that _DEBUG is set instead of NDEBUG. Used for keeping debug checks enabled with a build that is fast enough to dogfood with. 15 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_official. Includes release_defaults.vsprops. Enables Whole Program Optimizations (WPO), which doubles the build time. Results in much more optimized build. Uses "Full Optimization" and "Flavor small code". 18 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_instrument. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) instrumentation (first pass). Uses "Full Optimization" and "Flavor small code". 21 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_optimize. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) optimization (second pass). Uses "Full Optimization" and "Flavor small code". 24 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_purify. Includes release_defaults.vsprops. Disables optimizations. Used with Purify to test without debug tools and without optimization; i.e. NDEBUG is defined but the compiler doesn't optimize the binary.
|
/external/chromium_org/chrome/browser/chromeos/system_logs/ |
lsb_release_log_source.h | 11 // Fetches release information form /etc/lsb-release file.
|
/external/chromium_org/chrome/browser/devtools/frontend/ |
devtools_discovery_page_resources.grd | 15 <release seq="1"> 20 </release>
|
/external/chromium_org/chrome/browser/resources/ |
options_resources.grd | 9 <release seq="1"> 14 </release>
|
translate_internals_resources.grd | 11 <release seq="1"> 16 </release>
|
/external/chromium_org/third_party/icu/source/tools/gennorm2/ |
gennorm2.vcxproj | 12 <ProjectConfiguration Include="Release|Win32">
13 <Configuration>Release</Configuration>
16 <ProjectConfiguration Include="Release|x64">
17 <Configuration>Release</Configuration>
31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
51 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
57 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
63 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\x86\Release\</OutDir> [all...] |
/external/chromium_org/third_party/mesa/src/docs/ |
RELNOTES-3.2 | 2 Mesa 3.2 release notes 7 Mesa 3.2 is a stabilization of the Mesa 3.1 release. No new features
|
relnotes-7.8.1.html | 5 <title>Mesa Release Notes</title> 10 <h1>Mesa 7.8.1 Release Notes / April 5, 2010</h1> 13 Mesa 7.8.1 fixes a couple critical bugs in the recent Mesa 7.8 release. Even 14 though this is a bug fix release, given its proximity to the 7.8 release, a 15 new development release, it should also be considered new development release. 17 with a previous release, such as 7.7.1, or wait for Mesa 7.8.2.
|
/external/chromium_org/tools/gyp/test/configurations/inheritance/ |
configurations.gyp | 25 'Release': { 27 'defines': ['RELEASE'],
|
/external/clang/test/ARCMT/ |
with-arc-mode-migrate.m | 8 - (oneway void)release; 12 [p release];
|
/external/clang/test/SemaObjC/ |
access-property-getter.m | 4 - (oneway void)release; 33 _outputStream.release; // expected-warning {{property access result unused - getters should not be used for side effects}}
|
/external/icu4c/tools/gennorm2/ |
gennorm2.vcxproj | 12 <ProjectConfiguration Include="Release|Win32">
13 <Configuration>Release</Configuration>
16 <ProjectConfiguration Include="Release|x64">
17 <Configuration>Release</Configuration>
31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
51 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
57 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
63 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\x86\Release\</OutDir> [all...] |
/external/markdown/docs/ |
release-2.0.2.txt | 1 Python-Markdown 2.0.2 Release Notes 4 Python-Markdown 2.0.2 is a bug-fix release. No new features have been added.
|
/external/mesa3d/docs/ |
RELNOTES-3.2 | 2 Mesa 3.2 release notes 7 Mesa 3.2 is a stabilization of the Mesa 3.1 release. No new features
|
relnotes-7.8.1.html | 5 <title>Mesa Release Notes</title> 10 <h1>Mesa 7.8.1 Release Notes / April 5, 2010</h1> 13 Mesa 7.8.1 fixes a couple critical bugs in the recent Mesa 7.8 release. Even 14 though this is a bug fix release, given its proximity to the 7.8 release, a 15 new development release, it should also be considered new development release. 17 with a previous release, such as 7.7.1, or wait for Mesa 7.8.2.
|