Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 2294) sorted by relevance

12345678910>>...92

/development/pdk/docs/source/
Dcode-lines.jd7 current stable version of Android from unstable experimental work.</p>
17 <li>A <i>release</i> corresponds to a formal version of the Android platform, such
19 corresponds to a version of the <code>SdkVersion</code> field used in
36 code for a given Android platform version. OEMs and other groups building devices
45 <li>The "n+1"th version (that is, next major version of the framework and
50 <li>When the platform APIs for the next version have stabilized and been fully
51 tested, Google will cut a release of the next platform version. (This
55 <li>When a new platform version is cut, a corresponding experimental
61 version of Android.</p>
63 latest version of Android. Similarly, application developers don't want to
[all …]
/development/ndk/platforms/android-4/samples/san-angeles/jni/
DREADME.txt2 San Angeles Observation OpenGL ES version example
17 The original version was made for desktop with OpenGL. It was
19 limit. For this OpenGL ES version example much of the code is
23 The Win32 (2000/XP) binary package of original version is
26 First version of this OpenGL ES port was submitted to the Khronos
44 As the original version was optimized for size instead of
45 performance, that holds true for this OpenGL ES version as
52 * Hybrid's OpenGL ES API Implementation (Gerbera) version 2.0.4
54 * PowerVR MBX SDK, OpenGL ES Windows PC Emulation version 1.04.14.0170
72 * Toni L�nnberg (!Cube) created the music for original version, which
Dlicense.txt1 San Angeles Observation OpenGL ES version example
9 Software Foundation; either version 2.1 of the License, or (at
10 your option) any later version. The text of the GNU Lesser
/development/ide/xcode/SampleCode/English.lproj/main.nib/
Dinfo.nib1 <?xml version="1.0" encoding="UTF-8"?>
3 <plist version="1.0">
5 <key>IBFramework Version</key>
13 <key>IBSystem Version</key>
Dclasses.nib1 <?xml version="1.0" encoding="UTF-8"?>
3 <plist version="1.0">
/development/ide/xcode/animatorTest/English.lproj/main.nib/
Dinfo.nib1 <?xml version="1.0" encoding="UTF-8"?>
3 <plist version="1.0">
12 <key>IBFramework Version</key>
21 <key>IBSystem Version</key>
/development/pdk/docs/compatibility/2.2/
Dversions.jd1 page.title=Permitted Version Strings for Android 2.2
7 <code>android.os.Build.VERSION.RELEASE</code>. The reason for this is that
9 so that end users can easily and reliably identify the version of Android
15 <p>The value of <code>android.os.Build.VERSION.RELEASE</code> for Android 2.2
/development/pdk/docs/compatibility/2.1/
Dversions.jd1 page.title=Permitted Version Strings for Android 2.1
7 <code>android.os.Build.VERSION.RELEASE</code>. The reason for this is that
9 so that end users can easily and reliably identify the version of Android
15 <code>android.os.Build.VERSION.RELEASE</code> for Android 2.1 are:</p>
/development/pdk/docs/compatibility/2.3/
Dversions.jd1 page.title=Permitted Version Strings for Android 2.3
7 <code>android.os.Build.VERSION.RELEASE</code>. The reason for this is that
9 so that end users can easily and reliably identify the version of Android
15 <p>The value of <code>android.os.Build.VERSION.RELEASE</code> for Android 2.3
/development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
DGLEScontext.h25 class Version{
27 Version();
28 Version(int major,int minor,int release);
29 Version(const char* versionString);
30 Version(const Version& ver);
31 bool operator<(const Version& ver) const;
32 Version& operator=(const Version& ver);
54 Version glslVersion;
151 static Version glslVersion(){return s_glSupport.glslVersion;} in glslVersion()
/development/samples/Support4Demos/res/values/
Dstyles.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
18 <!-- This is a theme that will adjust itself depending on the API version.
27 platform version. On older platforms, we always use the generic
/development/data/etc/
Dapns-conf_sdk.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
25 <!-- This version must agree with that in apps/common/res/apns.xml -->
26 <apns version="7">
/development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
DShaderParser.cpp21 void ShaderParser::setSrc(const Version& ver,GLsizei count,const GLchar** strings,const GLint* leng… in setSrc()
32 // parseGLSLversion must be called first since #version should be the in setSrc()
37 version 1.30.10 is the first version of GLSL Language containing precision qualifiers in setSrc()
38 if the glsl version is less than 1.30.10 than we will use a shader parser which omits in setSrc()
43 if(ver < Version(1,30,10)){ in setSrc()
76 // find in shader the #version token if exist. in parseGLSLversion()
117 // a comment, this must be a #version token or else #version in parseGLSLversion()
120 if (!strncmp(c,"#version",8)) { in parseGLSLversion()
124 // parsed version string correctly, blank out the in parseGLSLversion()
125 // version token from the source, we will add it later at in parseGLSLversion()
[all …]
/development/tools/emulator/opengl/tests/ut_renderer/
DRendererContext.cpp4 * Licensed under the Apache License, Version 2.0 (the "License");
20 …* RendererContext::create(EGLDisplay dpy, EGLConfig config, RendererContext *shareCtx, int version) in create() argument
26 context_attributes[1] = version; in create()
31 return new RendererContext(dpy, ctx, version); in create()
/development/tools/emulator/opengl/tests/gles_android_wrapper/
DThreadInfo.h4 * Licensed under the Apache License, Version 2.0 (the "License");
27 version = _version; in EGLWrapperContext()
36 int version; member
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeySourceNetworkVars.java4 * Licensed under the Apache License, Version 2.0 (the "License");
79 VAR_MAP.put("build.version.incremental", new StaticVarGetter(Build.VERSION.INCREMENTAL));
80 VAR_MAP.put("build.version.release", new StaticVarGetter(Build.VERSION.RELEASE));
81 … VAR_MAP.put("build.version.sdk", new StaticVarGetter(Integer.toString(Build.VERSION.SDK_INT)));
82 VAR_MAP.put("build.version.codename", new StaticVarGetter(Build.VERSION.CODENAME));
162 VAR_MAP.put("monkey.version", new VarGetter() {
/development/samples/SampleSyncAdapter/res/xml-v11/
Dsyncadapter.xml1 <?xml version="1.0" encoding="utf-8"?>
6 * Licensed under the Apache License, Version 2.0 (the "License");
24 See xml/syncadapter.xml for greater details, but this version of
/development/samples/Obb/
DAndroidManifest.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
20 <!-- OBBs were introduced in SDK version 9 -->
/development/samples/Support4Demos/res/layout/
Dfragment_layout_support.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
17 <!-- Top-level content view for the layout fragment sample. This version is
/development/samples/ApiDemos/res/layout/
Dfragment_layout.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
17 <!-- Top-level content view for the layout fragment sample. This version is
/development/tools/idegen/templates/
Dandroid.iml1 <?xml version="1.0" encoding="UTF-8"?>
2 <module version="4" relativePaths="true" type="JAVA_MODULE">
/development/samples/SampleSyncAdapter/res/xml/
Dsyncadapter.xml1 <?xml version="1.0" encoding="utf-8"?>
6 * Licensed under the Apache License, Version 2.0 (the "License");
28 version of the file specifies that the adapter DOES support
/development/samples/Support4Demos/res/layout-land/
Dfragment_layout_support.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
17 <!-- Top-level content view for the layout fragment sample. This version is
/development/tools/glesv2debugger/META-INF/
DMANIFEST.MF1 Manifest-Version: 1.0
5 Bundle-Version: 1.0.0.qualifier
/development/samples/ApiDemos/res/layout-land/
Dfragment_layout.xml1 <?xml version="1.0" encoding="utf-8"?>
4 Licensed under the Apache License, Version 2.0 (the "License");
17 <!-- Top-level content view for the layout fragment sample. This version is

12345678910>>...92