HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 401 - 425 of 25190) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
floating_point.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert( std::is_arithmetic<T>::value, "");
21 static_assert( std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert(!std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
function.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
member_function_pointer.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert( std::is_member_pointer<T>::value, "");
member_object_pointer.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert( std::is_member_pointer<T>::value, "");
pointer.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
rvalue_ref.pass.cpp 19 static_assert( std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
union.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
void.pass.cpp 19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert( std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert(!std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
  /packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java 22 public final Object value; field in class:SpinnerOption
26 public static void setSpinnerOptionValue(Spinner spinner, Object value) {
29 if (so.value.equals(value)) {
36 public SpinnerOption(Object value, String label) {
37 this.value = value;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
UnstructuredField.java 32 private String value; field in class:UnstructuredField
34 protected UnstructuredField(String name, String body, String raw, String value) {
36 this.value = value;
40 return value;
45 final String value = DecoderUtil.decodeEncodedWords(body); local
46 return new UnstructuredField(name, body, raw, value);
  /art/runtime/base/
bit_field.h 32 // Tells whether the provided value fits into the bit field.
33 static bool IsValid(T value) {
34 return (static_cast<uword>(value) & ~((kUwordOne << size) - 1)) == 0;
59 // Returns a uword with the bit field value encoded.
60 static uword Encode(T value) {
61 DCHECK(IsValid(value));
62 return static_cast<uword>(value) << position;
65 // Extracts the bit field from the value.
66 static T Decode(uword value) {
67 return static_cast<T>((value >> position) & ((kUwordOne << size) - 1))
    [all...]
  /external/chromium_org/base/numerics/
safe_conversions.h 15 // Convenience function that returns true if the supplied value is in range
18 inline bool IsValueInRangeForNumericType(Src value) {
19 return internal::DstRangeRelationToSrcRange<Dst>(value) ==
27 inline Dst checked_cast(Src value) {
28 CHECK(IsValueInRangeForNumericType<Dst>(value));
29 return static_cast<Dst>(value);
36 inline Dst saturated_cast(Src value) {
39 return static_cast<Dst>(value);
41 switch (internal::DstRangeRelationToSrcRange<Dst>(value)) {
43 return static_cast<Dst>(value);
    [all...]
  /external/chromium_org/third_party/skia/include/device/xps/
SkConstexprMath.h 17 static const uintmax_t value = 1 + SK_LOG<N/B, B>::value; member in struct:SK_LOG
21 static const uintmax_t value = 0; member in struct:SK_LOG
25 static const uintmax_t value = 0; member in struct:SK_LOG
31 static const uintmax_t value = (SK_2N1<N-1>::value << 1) + 1; member in struct:SK_2N1
35 static const uintmax_t value = 1; member in struct:SK_2N1
42 SK_LOG<SK_2N1<(sizeof(t) * CHAR_BIT)>::value, n>::value\
49 // Compile-time constant maximum value of two unsigned values
51 static const uintmax_t value = (b < a) ? a : b; member in struct:SkTUMax
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
value.h 2 * \file libyasm/value.h
3 * \brief YASM value interface.
38 * performed, the expression is simply stuck into value.abs and the other
41 * parsing simply to ensure all fields of the value are initialized; after
43 * the value. The value defaults to unsigned.
44 * \param value value to be initialized
46 * \param size value size (in bits)
49 void yasm_value_initialize(/*@out@*/ yasm_value *value,
    [all...]
  /external/chromium_org/v8/src/base/
safe_conversions.h 18 // Convenience function that returns true if the supplied value is in range
21 inline bool IsValueInRangeForNumericType(Src value) {
22 return internal::DstRangeRelationToSrcRange<Dst>(value) ==
30 inline Dst checked_cast(Src value) {
31 CHECK(IsValueInRangeForNumericType<Dst>(value));
32 return static_cast<Dst>(value);
39 inline Dst saturated_cast(Src value) {
42 return static_cast<Dst>(value);
44 switch (internal::DstRangeRelationToSrcRange<Dst>(value)) {
46 return static_cast<Dst>(value);
    [all...]
  /external/easymock/src/org/easymock/internal/
ArgumentToString.java 27 public static void appendArgument(Object value, StringBuffer buffer) {
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/icu/icu4c/source/layout/
LESwaps.h 25 #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)
63 return value;
65 // Reads a big-endian value on any platform.
66 const le_uint8 *p = reinterpret_cast<const le_uint8 *>(&value);
    [all...]
  /external/skia/include/device/xps/
SkConstexprMath.h 17 static const uintmax_t value = 1 + SK_LOG<N/B, B>::value; member in struct:SK_LOG
21 static const uintmax_t value = 0; member in struct:SK_LOG
25 static const uintmax_t value = 0; member in struct:SK_LOG
31 static const uintmax_t value = (SK_2N1<N-1>::value << 1) + 1; member in struct:SK_2N1
35 static const uintmax_t value = 1; member in struct:SK_2N1
42 SK_LOG<SK_2N1<(sizeof(t) * CHAR_BIT)>::value, n>::value\
49 // Compile-time constant maximum value of two unsigned values
51 static const uintmax_t value = (b < a) ? a : b; member in struct:SkTUMax
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 85 * Ensures that that the argument numeric value is non-negative.
87 * @param value a numeric int value
89 * @return the validated numeric value
90 * @throws IllegalArgumentException if {@code value} was negative
92 public static int checkArgumentNonnegative(final int value, final String errorMessage) {
93 if (value < 0) {
97 return value;
101 * Ensures that that the argument numeric value is non-negative.
103 * @param value a numeric long valu
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 23 * Encodes a string into a double metaphone value.
73 * Encode a value with Double Metaphone
75 * @param value String to encode
78 public String doubleMetaphone(String value) {
79 return doubleMetaphone(value, false);
83 * Encode a value with Double Metaphone, optionally using the alternate
86 * @param value String to encode
90 public String doubleMetaphone(String value, boolean alternate) {
91 value = cleanInput(value);
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
TraceAnnotationVisitor.java 64 public void visit(final String name, final Object value) {
72 if (value instanceof String) {
73 visitString((String) value);
74 } else if (value instanceof Type) {
75 visitType((Type) value);
76 } else if (value instanceof Byte) {
77 visitByte(((Byte) value).byteValue());
78 } else if (value instanceof Boolean) {
79 visitBoolean(((Boolean) value).booleanValue());
80 } else if (value instanceof Short) {
    [all...]
  /external/chromium_org/base/
big_endian.cc 38 bool BigEndianReader::Read(T* value) {
41 ReadBigEndian<T>(ptr_, value);
46 bool BigEndianReader::ReadU8(uint8* value) {
47 return Read(value);
50 bool BigEndianReader::ReadU16(uint16* value) {
51 return Read(value);
54 bool BigEndianReader::ReadU32(uint32* value) {
55 return Read(value);
58 bool BigEndianReader::ReadU64(uint64* value) {
59 return Read(value);
    [all...]
  /external/chromium_org/dbus/
file_descriptor.h 36 // Permits initialization without a value for passing to
39 explicit FileDescriptor(int value) : value_(value), owner_(false),
44 // Retrieves value as an int without affecting ownership.
45 int value() const;
50 // Sets the value and assign ownership.
51 void PutValue(int value) {
52 value_ = value;
57 // Takes the value and ownership.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
LineClampValue.h 40 LineClampValue(int value, ELineClampType type)
42 , m_value(value)
46 int value() const { return m_value; } function in class:blink::LineClampValue
54 return value() == o.value() && isPercentage() == o.isPercentage();
  /external/chromium_org/third_party/skia/tests/
RTConfRegistryTest.cpp 13 bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) {
14 return reg->parse(key, value);
17 static void portable_setenv(const char* key, const char* value) {
19 _putenv_s(key, value);
21 setenv(key, value, 1);

Completed in 1824 milliseconds

<<11121314151617181920>>