Searched refs:version (Results 1 - 25 of 2312) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/version120/
H A Dshell.js22 /* all files in this dir need version(120) called before they are *loaded* */
24 version(120)
/external/llvm/test/MC/ELF/
H A Dversion.s3 .version "1234"
4 .version "123"
/external/tcpdump/
H A Dversion.c1 char version[] = "3.9.8"; variable
/external/valgrind/main/coregrind/m_gdbserver/
H A Dversion.c2 const char version[] = "gdbserver protocol box extracted from gdb 6.6"; variable
/external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/Headers/
H A DTypes.h3 unsigned version; member in struct:FrameworkSubStruct
/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
H A Drelease_src.sh19 version=`grep '^\$VERSION' iexploder-$$/src/version.rb | cut -d\" -f2`
20 echo "Version: $version"
21 mv iexploder-$$ iexploder-$version
22 cd iexploder-$version
27 GZIP="-9" tar -zcvf iexploder-${version}.tgz iexploder-${version}/
28 rm -Rf iexploder-${version}
/external/clang/test/Driver/
H A Ddarwin-version.c5 #error Invalid version
13 #error Invalid version
21 #error Invalid version
29 #error Invalid version
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitVersionChecks.m35 BOOL WebKitLinkedOnOrAfter(int version)
37 return (WebKitLinkTimeVersion() >= version);
40 void setWebKitLinkTimeVersion(int version)
42 overridenWebKitLinkTimeVersion = version;
/external/webrtc/src/common_audio/signal_processing/
H A Dspl_version.c21 WebRtc_Word16 WebRtcSpl_get_version(char* version, WebRtc_Word16 length_in_bytes) argument
23 strncpy(version, "1.2.0", length_in_bytes);
/external/elfutils/libelf/
H A Delf_version.c8 Free Software Foundation; version 2 of the License.
38 exception to your version of the file, but you are not obligated to do
40 you must delete this exception statement from your version and license
58 /* Is the version initialized? */
61 /* Currently selected version. */
66 elf_version (version)
67 unsigned int version;
69 if (version == EV_NONE)
72 if (likely (version < EV_NUM))
74 /* Phew, we know this version
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBVersionChangeEvent.cpp36 PassRefPtr<IDBVersionChangeEvent> IDBVersionChangeEvent::create(const String& version, const AtomicString& eventType) argument
38 return adoptRef(new IDBVersionChangeEvent(version, eventType));
41 IDBVersionChangeEvent::IDBVersionChangeEvent(const String& version, const AtomicString& eventType) argument
43 , m_version(version)
51 String IDBVersionChangeEvent::version() function in class:WebCore::IDBVersionChangeEvent
H A DIDBVersionChangeEvent.idl31 readonly attribute DOMString version;
/external/harfbuzz_ng/src/
H A Dhb-ot-maxp-table.hh53 likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000)));
56 /* We only implement version 0.5 as none of the extra fields in version 1.0 are useful. */
58 FixedVersion version; /* Version of the maxp table (0.5 or 1.0), member in struct:OT::maxp
/external/webkit/Source/WebKit/win/
H A DProgIDMacros.h29 #define STRINGIFIED_VERSION(version) STRINGIFY(version)
35 #define VERSIONED_PROGID(versionIndependentProgID, version) versionIndependentProgID L##"." STRINGIFIED_VERSION(version)
/external/dexmaker/src/dx/java/com/android/dx/dex/
H A DDexFormat.java47 /** dex file version number for the current format variant */
50 /** dex file version number for API level 13 and earlier */
73 String version = "" + ((char) magic[4]) + ((char) magic[5]) +((char) magic[6]);
75 if (version.equals(VERSION_CURRENT)) {
77 } else if (version.equals(VERSION_FOR_API_13)) {
88 String version;
91 version = VERSION_CURRENT;
93 version = VERSION_FOR_API_13;
96 return MAGIC_PREFIX + version + MAGIC_SUFFIX;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DClientRegistrationMessage.java51 private int version; field in class:ClientRegistrationMessage
69 public void setVersion( int version ) {
70 this.version = version;
74 return version;
/external/objenesis/tck/test/org/springframework/osgi/test/internal/
H A Dboot-bundles.properties42 # format: <groupId,artifactId,version>=+/-15
44 # - see Spring org.springframework.core.JdkVersion for jdk major version codes.
56 ignore.backport.version=3.1.0
57 ignore.junit.version=3.8.2
58 # EDITED: Upgrade the version from 1.2.15-SNAPSHOT to ${log4j.version}
59 ignore.log4j.version=${log4j.version}
61 ignore.spring.version=2.5.6.SEC01
62 # EDITED: Filter the version t
[all...]
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dteraterm.php13 * This version of ttl.php was created for Tera Term 4.60 and LogMeTT 2.9.4.
33 * the Free Software Foundation; either version 2 of the License, or
34 * (at your option) any later version.
60 'Break', // (version 4.53 or later)
62 'CallMenu', // (version 4.56 or later)
65 'Clipb2Var', //(version 4.46 or later)
70 'CRC32', // (version 4.60 or later)
71 'CRC32File', // (version 4.60 or later)
72 'CygConnect', // (version 4.57 or later)
75 'Do', // (version 4.5
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DRC5ParameterSpecTest.java38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
44 int version = 1;
50 new RC5ParameterSpec(version, rounds, wordSize, null);
57 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
85 int version = 1;
92 new RC5ParameterSpec(version, rounds, wordSize, null, offset);
99 new RC5ParameterSpec(version, round
[all...]
/external/bluetooth/bluedroid/conf/
H A Dbt_did.conf21 # Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N
22 # JJ: major version number, M: minor version number, N: sub-minor version number
25 version = 0x1436
53 # Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N
54 # JJ: major version number, M: minor version number, N: sub-minor version number
57 #version
[all...]
/external/chromium/net/disk_cache/
H A Ddisk_format.cc12 version = kCurrentVersion;
18 version = kCurrentVersion;
/external/e2fsprogs/lib/e2p/
H A Dsetversion.c2 * setversion.c - Set a file version on an ext2 file system
10 * General Public License, version 2.
26 int setversion (int fd, unsigned long version) argument
31 ver = (int) version;
/external/libpng/scripts/
H A Dlibpng-config-head.in14 version=1.2.46
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBDatabaseCallbacksImpl.cpp47 void WebIDBDatabaseCallbacksImpl::onVersionChange(const WebString& version) argument
49 m_callbacks->onVersionChange(version);
/external/e2fsprogs/lib/ext2fs/
H A Dversion.c2 * version.c --- Return the version of the ext2 library
8 * General Public License, version 2.
22 #include "../../version.h"
30 int version = 0, dot_count = 0; local
41 version = (version * 10) + (*cp - '0');
43 return version;

Completed in 647 milliseconds

1234567891011>>