Searched defs:value (Results 201 - 225 of 7729) sorted by relevance

1234567891011>>

/external/droiddriver/src/com/google/android/droiddriver/runner/
H A DMinSdkVersion.java29 * specified as its value.
42 int value(); method in interface:MinSdkVersion
/external/easymock/src/org/easymock/internal/
H A DArgumentToString.java27 public static void appendArgument(Object value, StringBuffer buffer) { argument
28 if (value == null) {
30 } else if (value instanceof String) {
32 buffer.append(value);
34 } else if (value instanceof Character) {
36 buffer.append(value);
38 } else if (value.getClass().isArray()) {
40 for (int i = 0; i < Array.getLength(value); i++) {
44 appendArgument(Array.get(value, i), buffer);
48 buffer.append(value);
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIntegerFactory.java22 public static Integer getInteger (final int value) argument
26 final Object _result = s_values.get (value);
30 final Integer result = new Integer (value);
31 s_values.put (value, result);
/external/guava/guava/src/com/google/common/annotations/
H A DGwtIncompatible.java50 String value(); method in interface:GwtIncompatible
/external/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValue.java7 private T value; field in class:SelfDescribingValue
9 public SelfDescribingValue(T value) { argument
10 this.value = value;
14 description.appendValue(value);
/external/harfbuzz_ng/src/
H A Dhb-shape.h45 uint32_t value; member in struct:hb_feature_t
/external/icu/icu4c/source/layout/
H A DLESwaps.h25 #define SWAPW(value) LESwaps::swapWord((le_uint16)(value))
33 #define SWAPL(value) LESwaps::swapLong((le_uint32)(value))
48 * Reads a big-endian 16-bit word and returns a native-endian value.
51 * @param value - the word to be byte swapped
57 static le_uint16 swapWord(le_uint16 value) argument
63 return value;
65 // Reads a big-endian value on any platform.
66 const le_uint8 *p = reinterpret_cast<const le_uint8 *>(&value);
81 swapLong(le_uint32 value) argument
[all...]
/external/jsr305/ri/src/main/java/javax/annotation/
H A DSyntax.java11 * This annotation a value that is of a particular syntax, such as Java syntax
37 * Syntax names can be followed by a colon and a list of key value pairs,
41 String value(); method in interface:Syntax
/external/jsr305/ri/src/main/java/javax/annotation/meta/
H A DTypeQualifierValidator.java9 * Given a type qualifier, check to see if a known specific constant value
14 * @param value
15 * the value to check
16 * @return a value indicating whether or not the value is an member of the
20 When forConstantValue(@Nonnull A annotation, Object value); argument
/external/jsr305/sampleUses/src/main/java/
H A DFixedLengthString.java13 int value(); method in interface:FixedLengthString
21 if (s.length() == annotation.value())
/external/junit/src/org/junit/experimental/categories/
H A DCategory.java8 * The value is an array of arbitrary classes.
42 Class<?>[] value(); method in interface:Category
/external/junit/src/org/junit/experimental/theories/
H A DParametersSuppliedBy.java10 Class<? extends ParameterSupplier> value(); method in interface:ParametersSuppliedBy
/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::plus<int>>::value, "" );
29 static_assert ( !is_transparent<std::plus<std::string>>::value, "" );
30 static_assert ( is_transparent<std::plus<void>>::value, "" );
31 static_assert ( is_transparent<std::plus<>>::value, "" );
33 static_assert ( !is_transparent<std::minus<int>>::value, "" );
34 static_assert ( !is_transparent<std::minus<std::string>>::value, "" );
35 static_assert ( is_transparent<std::minus<void>>::value, "" );
36 static_assert ( is_transparent<std::minus<>>::value, "" );
38 static_assert ( !is_transparent<std::multiplies<int>>::value, "" );
[all...]
/external/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::bit_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::bit_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::bit_and<void>>::value, "" );
31 static_assert ( is_transparent<std::bit_and<>>::value, "" );
33 static_assert ( !is_transparent<std::bit_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::bit_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::bit_or<void>>::value, "" );
36 static_assert ( is_transparent<std::bit_or<>>::value, "" );
38 static_assert ( !is_transparent<std::bit_xor<int>>::value, "" );
[all...]
/external/libcxx/test/utilities/function.objects/comparisons/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::less<int>>::value, "" );
29 static_assert ( !is_transparent<std::less<std::string>>::value, "" );
30 static_assert ( is_transparent<std::less<void>>::value, "" );
31 static_assert ( is_transparent<std::less<>>::value, "" );
33 static_assert ( !is_transparent<std::less_equal<int>>::value, "" );
34 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" );
35 static_assert ( is_transparent<std::less_equal<void>>::value, "" );
36 static_assert ( is_transparent<std::less_equal<>>::value, "" );
38 static_assert ( !is_transparent<std::equal_to<int>>::value, "" );
[all...]
/external/libcxx/test/utilities/function.objects/logical.operations/
H A Dtransparent.pass.cpp21 static const bool value = sizeof(__test<_Tp>(0)) == 1; member in struct:is_transparent
28 static_assert ( !is_transparent<std::logical_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::logical_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::logical_and<void>>::value, "" );
31 static_assert ( is_transparent<std::logical_and<>>::value, "" );
33 static_assert ( !is_transparent<std::logical_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::logical_or<void>>::value, "" );
36 static_assert ( is_transparent<std::logical_or<>>::value, "" );
38 static_assert ( !is_transparent<std::logical_not<int>>::value, "" );
[all...]
/external/libopus/silk/float/
H A Dsort_FLP.c46 silk_float value; local
59 /* Sort vector elements by value, decreasing order */
61 value = a[ i ];
62 for( j = i - 1; ( j >= 0 ) && ( value > a[ j ] ); j-- ) {
63 a[ j + 1 ] = a[ j ]; /* Shift value */
66 a[ j + 1 ] = value; /* Write value */
73 value = a[ i ];
74 if( value > a[ K - 1 ] ) {
75 for( j = K - 2; ( j >= 0 ) && ( value >
[all...]
/external/libselinux/src/
H A Dsetenforce.c12 int security_setenforce(int value) argument
28 snprintf(buf, sizeof buf, "%d", value);
/external/libsepol/include/sepol/policydb/
H A Dsymtab.h23 * The values start at 1 - 0 is never a valid value.
26 uint32_t value; member in struct:symtab_datum
/external/libvorbis/test/
H A Dutil.c48 set_data_in (float * data, unsigned len, float value) argument
52 data [k] = value ;
/external/lzma/CPP/7zip/Common/
H A DMethodId.cpp8 static inline wchar_t GetHex(Byte value) argument
10 return (wchar_t)((value < 10) ? ('0' + value) : ('A' + (value - 10)));
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DTransformer.java19 Object transform(Object value); argument
/external/nist-sip/java/javax/sip/header/
H A DExtensionHeader.java7 void setValue(String value) throws ParseException; argument
/external/openssl/crypto/x509v3/
H A Dv3_int.c77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value) argument
79 return s2i_ASN1_INTEGER(meth, value);
/external/oprofile/libutil/
H A Dop_lockfile.c25 pid_t value; local
31 if (fscanf(fp, "%d", &value) != 1) {
38 return value;

Completed in 463 milliseconds

1234567891011>>