HomeSort by relevance Sort by last modified time
    Searched refs:version (Results 1 - 25 of 8384) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fonttools/Lib/fontTools/
__init__.py 0 version = "2.4"
1 version = "2.4" variable
  /external/llvm/test/MC/ELF/
version.s 3 .version "1234"
4 .version "123"
  /external/tcpdump/
version.c 1 const char version[] = "4.5.1"; variable
  /external/valgrind/coregrind/m_gdbserver/
version.c 2 const char version[] = "gdbserver protocol box extracted from gdb 6.6"; variable
  /external/mesa3d/src/glsl/glcpp/tests/
064-version.c 0 #version 130
  /external/clang/test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/Headers/
Types.h 3 unsigned version; member in struct:FrameworkSubStruct
  /external/sonic/
mkorig 6 version=`head -1 debian/changelog | sed 's/.*(//
8 sed -i "s/LIB_TAG=.*/LIB_TAG=$version/" Makefile
9 if [ "`basename $PWD`" != "sonic-$version" ]; then
10 echo "Directory name should be sonic-$version"
15 echo "sonic_${version} (git: `git log -1 --oneline | sed 's/ .*//'`)" > version
18 if ! tar -cvzf sonic_$version.orig.tar.gz --exclude-vcs --exclude=debian sonic-$version; then
19 echo "Could not create sonic_$version.orig.tar.gz"
22 echo "Successfully created sonic_$version.orig.tar.gz
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
spl_version.c 21 WebRtc_Word16 WebRtcSpl_get_version(char* version, WebRtc_Word16 length_in_bytes)
23 strncpy(version, "1.2.0", length_in_bytes);
  /external/libopus/win32/
genversion.bat 5 for /f %%v in ('git --git-dir="%~dp0..\.git" describe --tags --match "v*"') do set version=%%v variable
7 if not "%version%"=="" goto :gotversion
9 if exist "%~dp0..\version.mk" goto :getversion
11 echo Git cannot be found, nor can version.mk. Generating unknown version.
13 set version=unknown variable
19 for /f "delims== tokens=2" %%v in (%~dps0..\version.mk) do set version=%%v variable
21 set version=!version:^"= variable
22 set version=!version: =! variable
    [all...]
  /external/elfutils/src/libelf/
elf_version.c 10 Software Foundation; either version 3 of the License, or (at
11 your option) any later version
16 Software Foundation; either version 2 of the License, or (at
17 your option) any later version
37 /* Is the version initialized? */
40 /* Currently selected version. */
45 elf_version (version)
46 unsigned int version;
48 if (version == EV_NONE)
51 if (likely (version < EV_NUM)
    [all...]
  /external/ceres-solver/jni/
assert_ndk_version.sh 3 # Bash script to assert that the current version of the NDK is at least the
4 # specified version. Prints 'true' to standard out if it's the right version,
10 # $(error NDK version r5c or greater required)
13 # See https://gist.github.com/2878774 for asserting SDK version.
48 local version=$(echo "$1" | sed 's/r\([0-9]\{1,2\}[a-z]\{0,1\}\).*/\1/')
49 local major=$(echo "$version" | sed 's/\([0-9]\{1,2\}\).*/\1/')
50 local minor=$(echo "$version" | sed 's/^[0-9]*//')
55 echo "Usage: $0 <required version> <NDK_ROOT>" >&2
60 # Assert that the expected version is at least 4
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-maxp-table.hh 53 likely (version.major == 1 || (version.major == 0 && version.minor == 0x5000u)));
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/libdrm/tests/
setversion.c 35 * This tests that we can get the actual version out, and that setting invalid
37 * behavior differenses resulting from an increased DI version.
42 drm_set_version_t sv, version; local
52 memset(&version, 0, sizeof(version));
53 version.drm_di_major = -1;
54 version.drm_di_minor = -1;
55 version.drm_dd_major = -1;
56 version.drm_dd_minor = -1;
57 ret = ioctl(fd, DRM_IOCTL_SET_VERSION, &version);
    [all...]
  /external/libunwind/include/
dwarf-eh.h 107 #define DW_EH_VERSION 1 /* The version we're implementing */
111 unsigned char version; member in struct:dwarf_eh_frame_hdr
  /external/dexmaker/src/dx/java/com/android/dx/dex/
DexFormat.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
47 /** 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]); local
75 if (version.equals(VERSION_CURRENT)) {
77 } else if (version.equals(VERSION_FOR_API_13)) {
88 String version; local
91 version = VERSION_CURRENT;
93 version = VERSION_FOR_API_13;
96 return MAGIC_PREFIX + version + MAGIC_SUFFIX
    [all...]
  /external/vboot_reference/tests/
rollback_index3_tests.c 21 uint32_t version; local
26 version = 1;
27 TEST_EQ(RollbackFirmwareSetup(0, 0, 0, &is_virt_dev, &version),
30 TEST_EQ(version, 0, "rfs version");
35 version = 1;
36 TEST_EQ(RollbackKernelRead(&version), 0, "RollbackKernelRead()");
37 TEST_EQ(version, 0, "rkr version");
  /external/libdrm/tests/tegra/
openclose.c 39 drmVersionPtr version; local
52 version = drmGetVersion(fd);
53 if (version) {
54 printf("Version: %d.%d.%d\n", version->version_major,
55 version->version_minor, version->version_patchlevel);
56 printf(" Name: %s\n", version->name);
57 printf(" Date: %s\n", version->date);
58 printf(" Description: %s\n", version->desc)
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
ClientRegistrationMessage.java 51 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/
boot-bundles.properties 4 # Licensed under the Apache License, Version 2.0 (the "License");
16 # Licensed under the Apache License, Version 2.0 (the "License");
42 # 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}
    [all...]
  /external/slf4j/
version.pl 3 print "Usage: version.pl VER FILE {FILE, FILE}\n";
25 if($hitCount == 0 && /<version>.*<\/version>/) {
26 s/<version>.*<\/version>/<version>${V}<\/version>/;
  /frameworks/ml/bordeaux/learning/multiclass_pa/native/
util.cpp 4 * Licensed under the Apache License, Version 2.0 (the "License");
31 MulticlassPA* CreateMulticlassPA(const string& version,
36 if (StringCaseEqual(version, "max")) {
39 } else if (StringCaseEqual(version, "opt")) {
42 } else if (StringCaseEqual(version, "random")) {
44 } else if (StringCaseEqual(version, "warp")) {
48 LOG(ERROR) << "Machine type (" << version << ") unknown";
  /libcore/luni/src/main/java/org/xml/sax/ext/
Locator2Impl.java 25 * @version TBS
30 private String version; field in class:Locator2Impl
43 * <em>encoding</em> and <em>version</em>strings are copied,
54 version = l2.getXMLVersion ();
64 * Returns the current value of the version property.
66 * @return the current value of the version property.
71 { return version; }
89 * Assigns the current value of the version property.
91 * @param version the new "version" valu
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
global.h 14 * published by the Free Software Foundation; either version 2.1 of
15 * the License, or (at your option) any later version.
57 #define __SND_DLSYM_VERSION(name, version) _ ## name ## version
60 * \brief Appends the build version to the name of a versioned dynamic symbol.
62 #define SND_DLSYM_BUILD_VERSION(name, version) char __SND_DLSYM_VERSION(name, version);
75 #define __SND_DLSYM_VERSION(prefix, name, version) _ ## prefix ## name ## version
78 * \brief Appends the build version to the name of a versioned dynamic symbol
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
global.h 14 * published by the Free Software Foundation; either version 2.1 of
15 * the License, or (at your option) any later version.
57 #define __SND_DLSYM_VERSION(name, version) _ ## name ## version
60 * \brief Appends the build version to the name of a versioned dynamic symbol.
62 #define SND_DLSYM_BUILD_VERSION(name, version) char __SND_DLSYM_VERSION(name, version);
75 #define __SND_DLSYM_VERSION(prefix, name, version) _ ## prefix ## name ## version
78 * \brief Appends the build version to the name of a versioned dynamic symbol
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
52 public boolean hasFeature(String feature, String version) {
53 boolean anyVersion = version == null || version.length() == 0;
63 return anyVersion || version.equals("1.0") || version.equals("2.0") || version.equals("3.0");
65 return anyVersion || version.equals("1.0") || version.equals("2.0") || version.equals("3.0")
    [all...]

Completed in 1229 milliseconds

1 2 3 4 5 6 7 8 91011>>