/dalvik/dx/src/com/android/dx/rop/cst/ |
CstChar.java | 27 /** {@code non-null;} the value {@code 0} as an instance of this class */ 31 * Makes an instance for the given value. This may (but does not 34 * @param value the {@code char} value 36 public static CstChar make(char value) { 37 return new CstChar(value); 41 * Makes an instance for the given {@code int} value. This 45 * @param value the value, which must be in range for a {@code char} 48 public static CstChar make(int value) { 71 int value = getIntBits(); local [all...] |
CstShort.java | 27 /** {@code non-null;} the value {@code 0} as an instance of this class */ 31 * Makes an instance for the given value. This may (but does not 34 * @param value the {@code short} value 37 public static CstShort make(short value) { 38 return new CstShort(value); 42 * Makes an instance for the given {@code int} value. This 46 * @param value the value, which must be in range for a {@code short} 49 public static CstShort make(int value) { 72 int value = getIntBits(); local [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/ |
AtomicBoolean.java | 11 * A {@code boolean} value that may be updated atomically. See the 33 (AtomicBoolean.class.getDeclaredField("value")); 37 private volatile int value; field in class:AtomicBoolean 40 * Creates a new {@code AtomicBoolean} with the given initial value. 42 * @param initialValue the initial value 45 value = initialValue ? 1 : 0; 49 * Creates a new {@code AtomicBoolean} with initial value {@code false}. 55 * Returns the current value. 57 * @return the current value 60 return value != 0 [all...] |
AtomicReference.java | 29 (AtomicReference.class.getDeclaredField("value")); 33 private volatile V value; field in class:AtomicReference 36 * Creates a new AtomicReference with the given initial value. 38 * @param initialValue the initial value 41 value = initialValue; 45 * Creates a new AtomicReference with null initial value. 51 * Gets the current value. 53 * @return the current value 56 return value; 60 * Sets to the given value [all...] |
AtomicInteger.java | 11 * An {@code int} value that may be updated atomically. See the 35 (AtomicInteger.class.getDeclaredField("value")); 39 private volatile int value; field in class:AtomicInteger 42 * Creates a new AtomicInteger with the given initial value. 44 * @param initialValue the initial value 47 value = initialValue; 51 * Creates a new AtomicInteger with initial value {@code 0}. 57 * Gets the current value. 59 * @return the current value 62 return value; [all...] |
AtomicLong.java | 11 * A {@code long} value that may be updated atomically. See the 51 (AtomicLong.class.getDeclaredField("value")); 64 private volatile long value; field in class:AtomicLong 67 * Creates a new AtomicLong with the given initial value. 69 * @param initialValue the initial value 72 value = initialValue; 76 * Creates a new AtomicLong with initial value {@code 0}. 82 * Gets the current value. 84 * @return the current value 87 return value; [all...] |
/external/webkit/WebKitLibraries/win/tools/vsprops/ |
FeatureDefines.vsprops | 16 Value="" 21 Value="" 26 Value="ENABLE_CHANNEL_MESSAGING" 31 Value="ENABLE_CLIENT_BASED_GEOLOCATION" 36 Value="ENABLE_DATABASE" 41 Value="" 46 Value="ENABLE_DATALIST" 51 Value="ENABLE_DOM_STORAGE" 56 Value="ENABLE_EVENTSOURCE" 61 Value="ENABLE_FILTERS [all...] |
FeatureDefinesCairo.vsprops | 16 Value="" 21 Value="" 26 Value="ENABLE_CHANNEL_MESSAGING" 31 Value="" 36 Value="ENABLE_DATABASE" 41 Value="" 46 Value="ENABLE_DATALIST" 51 Value="ENABLE_DOM_STORAGE" 56 Value="ENABLE_EVENTSOURCE" 61 Value="ENABLE_FILTERS [all...] |
debug_all.vsprops | 14 Value="_debug" 19 Value="_debug" 24 Value="_debug"
|
debug_internal.vsprops | 13 Value="" 18 Value="" 23 Value=""
|
/frameworks/base/graphics/java/android/renderscript/ |
Sampler.java | 36 public enum Value { 44 Value(int id) { 56 Value mMin; 57 Value mMag; 58 Value mWrapS; 59 Value mWrapT; 60 Value mWrapR; 64 mMin = Value.NEAREST; 65 mMag = Value.NEAREST; 66 mWrapS = Value.WRAP [all...] |
/frameworks/base/tools/preload/ |
preload.ipr | 7 <option name="BUILD_JARS_ON_MAKE" value="false" /> 10 <option name="MAIN_SPLITTER_PROPORTION" value="0.3" /> 11 <option name="MESSAGES_SPLITTER_PROPORTION" value="0.8" /> 12 <option name="USE_DATE_BEFORE_FILTER" value="false" /> 13 <option name="USE_DATE_AFTER_FILTER" value="false" /> 14 <option name="USE_CHANGE_BEFORE_FILTER" value="false" /> 15 <option name="USE_CHANGE_AFTER_FILTER" value="false" /> 16 <option name="DATE_BEFORE" value="" /> 17 <option name="DATE_AFTER" value="" /> 18 <option name="CHANGE_BEFORE" value="" / [all...] |
/external/apache-http/src/org/apache/commons/codec/language/ |
DoubleMetaphone.java | 23 * Encodes a string into a double metaphone value. 68 * Encode a value with Double Metaphone 70 * @param value String to encode 73 public String doubleMetaphone(String value) { 74 return doubleMetaphone(value, false); 78 * Encode a value with Double Metaphone, optionally using the alternate 81 * @param value String to encode 85 public String doubleMetaphone(String value, boolean alternate) { 86 value = cleanInput(value); [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
X509Extension.java | 12 ASN1OctetString value; field in class:X509Extension 16 ASN1OctetString value) 19 this.value = value; 24 ASN1OctetString value) 27 this.value = value; 37 return value;
|
/external/clearsilver/man/man3/ |
hdf_set_value.3 | 14 hdf_set_value - Set the value of a named node 20 NEOERR* hdf_set_value (HDF *hdf, const char *name, const char *value); 29 value -> the value to set the node to 32 hdf_set_value will set the value of a named node. All 34 created with a value of NULL. Existing nodes are not 39 The copy of the value will be made which the dataset 42 .SH "RETURN VALUE"
|
/external/iptables/extensions/ |
libip6t_HL.man | 2 is similar to what is known as TTL value in IPv4. Setting or incrementing the 8 .B Don't ever set or increment the value on packets that leave your local network! 10 .BI "--hl-set " "value" 11 Set the Hop Limit to `value'. 13 .BI "--hl-dec " "value" 14 Decrement the Hop Limit `value' times. 16 .BI "--hl-inc " "value" 17 Increment the Hop Limit `value' times.
|
libipt_tcpmss.man | 3 .BI "[!] "--mss " value[:value]" 4 Match a given TCP MSS value or range.
|
/external/opencore/oscl/oscl/osclutil/src/ |
oscl_math.h | 51 * @param value source value 53 OSCL_COND_IMPORT_REF double oscl_log(double value); 57 * @param value source value 59 OSCL_COND_IMPORT_REF double oscl_log10(double value); 63 * @param value source value 65 OSCL_COND_IMPORT_REF double oscl_sqrt(double value); 67 * Calculates the value of x to the power of [all...] |
/external/zlib/contrib/vstudio/vc7/ |
zlib.rc | 19 VALUE "FileDescription", "zlib data compression library\0"
20 VALUE "FileVersion", "1.2.3.0\0"
21 VALUE "InternalName", "zlib\0"
22 VALUE "OriginalFilename", "zlib.dll\0"
23 VALUE "ProductName", "ZLib.DLL\0"
24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
25 VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0"
30 VALUE "Translation", 0x0409, 1252
|
/external/zlib/contrib/vstudio/vc8/ |
zlib.rc | 19 VALUE "FileDescription", "zlib data compression library\0"
20 VALUE "FileVersion", "1.2.3.0\0"
21 VALUE "InternalName", "zlib\0"
22 VALUE "OriginalFilename", "zlib.dll\0"
23 VALUE "ProductName", "ZLib.DLL\0"
24 VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
25 VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0"
30 VALUE "Translation", 0x0409, 1252
|
/external/bluetooth/bluez/test/ |
simple-service | 12 <uuid value="0x1101"/> \ 17 <uint32 value="0"/> \ 21 <uuid value="00001101-0000-1000-8000-00805f9b34fb"/> \ 27 <uuid value="0x0100"/> \ 30 <uuid value="0x0003"/> \ 31 <uint8 value="23"/> \ 38 <uuid value="0x1002"/> \ 44 <uint16 value="0x656e"/> \ 45 <uint16 value="0x006a"/> \ 46 <uint16 value="0x0100"/> [all...] |
/dalvik/libcore/support/src/test/java/tests/resources/ |
hyts_checkInput.txt | 3 //System.out.print("value of crc"+crc.getValue());
|
/external/icu4c/data/xml/rbnf/ |
ga.xml | 15 <rbnfrule value="0">& ' ' , ',' ;</rbnfrule> 20 <rbnfrule value="0">=0= soicind;</rbnfrule> 21 <rbnfrule value="60" radix="60">?%%min?[, ??];</rbnfrule> 22 <rbnfrule value="3600" radix="60">?%%hr?[, ???];</rbnfrule> 25 <rbnfrule value="0">=0= nóiméad;</rbnfrule> 28 <rbnfrule value="0">=0= uair;</rbnfrule> 29 <rbnfrule value="3">=0= huaire;</rbnfrule> 30 <rbnfrule value="5">=0= uaire;</rbnfrule> 31 <rbnfrule value="6">=0= huaire;</rbnfrule> 32 <rbnfrule value="7">=0= n-uaire;</rbnfrule [all...] |
/external/webkit/WebCore/xml/ |
XPathValue.h | 54 // Copying Value objects makes their data partially shared, so care has to be taken when dealing with copies. 55 class Value { 59 Value(unsigned value) : m_type(NumberValue), m_bool(false), m_number(value) {} 60 Value(unsigned long value) : m_type(NumberValue), m_bool(false), m_number(value) {} 61 Value(double value) : m_type(NumberValue), m_bool(false), m_number(value) { [all...] |
/external/icu4c/common/ |
common.rc | 73 VALUE "Comments", ICU_WEBSITE "\0" 74 VALUE "CompanyName", "IBM Corporation and others\0" 75 VALUE "FileDescription", "IBM ICU Common DLL\0" 76 VALUE "FileVersion", CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, U_ICU_VERSION_BUILDLEVEL_NUM) 77 VALUE "LegalCopyright", U_COPYRIGHT_STRING "\0" 79 VALUE "OriginalFilename", "icuuc" U_ICU_VERSION_SHORT "d.dll\0" 81 VALUE "OriginalFilename", "icuuc" U_ICU_VERSION_SHORT ".dll\0" 83 VALUE "PrivateBuild", "\0" 84 VALUE "ProductName", "International Components for Unicode\0" 85 VALUE "ProductVersion", CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSI (…) [all...] |