HomeSort by relevance Sort by last modified time
    Searched refs:version (Results 51 - 75 of 1927) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/libexec/gcc/arm-eabi/4.3.1/install-tools/
mkinstalldirs 18 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
38 --version)
73 # from a parallel make. We use --version in the probe to restrict
77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
86 test -d ./--version && rmdir ./--version
90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
91 test ! -d ./--version; then
96 for d in ./-m ./-p ./--version "./$dirmode"
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/libexec/gcc/arm-eabi/4.4.0/install-tools/
mkinstalldirs 18 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
38 --version)
73 # from a parallel make. We use --version in the probe to restrict
77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
86 test -d ./--version && rmdir ./--version
90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
91 test ! -d ./--version; then
96 for d in ./-m ./-p ./--version "./$dirmode"
    [all...]
  /prebuilt/linux-x86/toolchain/sh-4.3.3/libexec/gcc/sh-linux-gnu/4.3.3/install-tools/
mkinstalldirs 18 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
38 --version)
73 # from a parallel make. We use --version in the probe to restrict
77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
86 test -d ./--version && rmdir ./--version
90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
91 test ! -d ./--version; then
96 for d in ./-m ./-p ./--version "./$dirmode"
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC5ParameterSpecTest.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
20 * @version $Revision$
45 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
57 int version = 1; local
63 new RC5ParameterSpec(version, rounds, wordSize, null);
70 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
77 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
83 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
92 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
104 int version = 1 local
166 int version = 1; local
187 int version = 1; local
208 int version = 1; local
231 int version = 1; local
264 int version = 1; local
320 int version = 1; local
339 int version = 1; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
RC2CBCParameter.java 17 DERInteger version; field in class:RC2CBCParameter
34 this.version = null;
42 this.version = new DERInteger(parameterVersion);
51 version = null;
56 version = (DERInteger)seq.getObjectAt(0);
63 if (version == null)
68 return version.getValue();
80 if (version != null)
82 v.add(version);
  /bionic/libc/kernel/common/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/res/
XSLTInfo.properties 6 # to you under the Apache License, Version 2.0 (the "License");
27 # Product Version: Xalan-Java @impl.version@
29 # W3C XSL Transformations (XSLT) Version 1.0
30 version=1.0
  /external/e2fsprogs/lib/e2p/
getversion.c 2 * getversion.c - Get a file version on an ext2 file system
24 int getversion (int fd, unsigned long * version)
30 *version = ver;
  /external/kernel-headers/original/asm-generic/
ipc.h 29 #define IPCCALL(version,op) ((version)<<16 | (op))
  /external/webkit/WebKitTools/pywebsocket/
setup.py 43 if sys.version < '2.3':
59 version='0.4.8', variable
  /frameworks/base/awt/javax/imageio/spi/
ImageTranscoderSpi.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
19 * @version $Revision: 1.3 $
42 * version.
46 * @param version
47 * the version.
49 public ImageTranscoderSpi(String vendorName, String version) {
50 super(vendorName, version);
  /ndk/build/platforms/android-3/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /ndk/build/platforms/android-4/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /ndk/build/platforms/android-5/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /ndk/build/platforms/android-8/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 36 * @param version This is the version number of the feature to test. In
37 * Level 2, the string can be either "2.0" or "1.0". If the version is
38 * not specified, supporting any version of the feature causes the
41 * specified version, <code>false</code> otherwise.
44 String version) {
46 return version == null || version.equals("1.0") || version.equals("2.0");
55 * future version of the DOM will provide a way for populating
    [all...]
  /external/blktrace/btreplay/
btrecord.h 8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
66 * @version: Version information
72 __u64 version; member in struct:io_file_hdr
83 static inline void get_btversion(__u64 version, int *mjr, int *mnr, int *sub)
85 *mjr = (int)((version >> 16) & 0xff);
86 *mnr = (int)((version >> 8) & 0xff);
87 *sub = (int)((version >> 0) & 0xff);
  /external/quake/quake/src/QW/
qwcl.x11.spec.sh 3 # $1 is version
8 %define version ${1}
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: qwcl.x11-%{version}.tar.gz
21 BuildRoot: /var/tmp/%{name}-%{version}
  /external/quake/quake/src/WinQuake/
quake-hipnotic.spec.sh 3 # $1 is version
8 %define version ${1}
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: quake-hipnotic-%{version}.tar.gz
22 BuildRoot: /var/tmp/%{name}-%{version}
91 Full Version of QUAKE required to operate.
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
MidiDevice.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
30 private String version; field in class:MidiDevice.Info
32 protected Info(String name, String vendor, String description, String version) {
36 this.version = version;
62 return version;
72 result = PRIME * result + ((version == null) ? 0 : version.hashCode());
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
Mixer.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
26 private String version; field in class:Mixer.Info
28 protected Info(String name, String vendor, String description, String version) {
32 this.version = version;
53 return version;
58 return name.hashCode() + vendor.hashCode() + description.hashCode() + version.hashCode();
63 return name + ", version " + version; //$NON-NLS-1$
  /external/openssl/crypto/x509/
x509rset.c 53 * The licence and distribution terms for any publically available version or
66 int X509_REQ_set_version(X509_REQ *x, long version)
69 return(ASN1_INTEGER_set(x->req_info->version,version));
  /external/libpng/
CHANGES 4 version 0.2
8 version 0.3
19 version 0.4
30 version 0.5
35 version 0.6
41 version 0.7
47 version 0.71 [June, 1995]
51 version 0.8
61 added version info
68 version 0.81 [August, 1995
    [all...]

Completed in 592 milliseconds

1 23 4 5 6 7 8 91011>>