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

<<11121314151617181920>>

  /external/deqp/framework/egl/
egluStrUtil.inl 5 const char* getBooleanName (int value)
7 switch (value)
15 const char* getBoolDontCareName (int value)
17 switch (value)
26 const char* getAPIName (int value)
28 switch (value)
37 const char* getErrorName (int value)
39 switch (value)
60 const char* getContextAttribName (int value)
62 switch (value)
    [all...]
  /external/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/
uses_allocator.pass.cpp 28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), "");
29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), "");
30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), "");
31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
32 static_assert(( std::uses_allocator<B, double>::value), "");
  /external/mockito/src/org/mockito/
AdditionalMatchers.java 47 * argument greater than or equal the given value.
51 * @param value
52 * the given value.
55 public static <T extends Comparable<T>> T geq(Comparable<T> value) {
56 return reportMatcher(new GreaterOrEqual<T>(value)).<T>returnNull();
60 * byte argument greater than or equal to the given value.
64 * @param value
65 * the given value.
68 public static byte geq(byte value) {
69 return reportMatcher(new GreaterOrEqual<Byte>(value)).returnZero()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
CAVLCWriter.java 40 public void writeU(int value, int n, String string) throws IOException {
42 writeNBit(value, n);
43 Debug.println("\t" + value);
46 public void writeUE(int value) throws IOException {
50 if (value < cumul + (1 << i)) {
58 writeNBit(value - cumul, bits);
61 public void writeUE(int value, String string) throws IOException {
63 writeUE(value);
64 Debug.println("\t" + value);
67 public void writeSE(int value, String string) throws IOException
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractKeyValue.java 37 * The value
39 protected V value; field in class:AbstractKeyValue
42 * Constructs a new pair with the specified key and given value.
45 * @param value the value for the entry, may be null
47 protected AbstractKeyValue(K key, V value) {
50 this.value = value;
63 * Gets the value from the pair.
65 * @return the value
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameValues.java 26 * This returns 1, if the Frame value is null, or if the value is not an array.
31 Object value = super.getValue(); local
32 if (value == null || !value.getClass().isArray()) {
49 Object value = super.getValue(); local
50 if (value == null || value.getClass().isArray()) {
54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1);
55 array[0] = value;
70 Object value = super.getValue(); local
92 Object value = getValueAtIndex(index); local
142 Object value = frame.getValue(); local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemProperties_Delegate.java 44 String value = properties.get(key); local
45 if (value != null) {
46 return value;
54 String value = properties.get(key); local
55 if (value != null) {
56 return Integer.decode(value);
65 String value = properties.get(key); local
66 if (value != null) {
67 return Long.decode(value);
80 String value = properties.get(key) local
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
RetrieveConf.java 59 * Get CC value.
61 * @return the value
68 * Add a "CC" value.
70 * @param value the value
71 * @throws NullPointerException if the value is null.
73 public void addCc(EncodedStringValue value) {
74 mPduHeaders.appendEncodedStringValue(value, PduHeaders.CC);
78 * Get Content-type value.
80 * @return the value
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/
uses_allocator.pass.cpp 28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), "");
29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), "");
30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), "");
31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
32 static_assert(( std::uses_allocator<B, double>::value), "");
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 20 static_assert((std::is_same<decltype(acos((double)0)), double>::value), "");
21 static_assert((std::is_same<decltype(acosf(0)), float>::value), "");
22 static_assert((std::is_same<decltype(acosl(0)), long double>::value), "");
28 static_assert((std::is_same<decltype(asin((double)0)), double>::value), "");
29 static_assert((std::is_same<decltype(asinf(0)), float>::value), "");
30 static_assert((std::is_same<decltype(asinl(0)), long double>::value), "");
36 static_assert((std::is_same<decltype(atan((double)0)), double>::value), "");
37 static_assert((std::is_same<decltype(atanf(0)), float>::value), "");
38 static_assert((std::is_same<decltype(atanl(0)), long double>::value), "");
44 static_assert((std::is_same<decltype(atan2((double)0, (double)0)), double>::value), "");
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 20 static_assert((std::is_same<decltype(acos((double)0)), double>::value), "");
21 static_assert((std::is_same<decltype(acosf(0)), float>::value), "");
22 static_assert((std::is_same<decltype(acosl(0)), long double>::value), "");
28 static_assert((std::is_same<decltype(asin((double)0)), double>::value), "");
29 static_assert((std::is_same<decltype(asinf(0)), float>::value), "");
30 static_assert((std::is_same<decltype(asinl(0)), long double>::value), "");
36 static_assert((std::is_same<decltype(atan((double)0)), double>::value), "");
37 static_assert((std::is_same<decltype(atanf(0)), float>::value), "");
38 static_assert((std::is_same<decltype(atanl(0)), long double>::value), "");
44 static_assert((std::is_same<decltype(atan2((double)0, (double)0)), double>::value), "");
    [all...]
  /external/chromium_org/cc/quads/
draw_quad.cc 60 void DrawQuad::AsValueInto(base::debug::TracedValue* value) const {
61 value->SetInteger("material", material);
62 TracedValue::SetIDRef(shared_quad_state, value, "shared_state");
64 value->BeginArray("content_space_rect");
65 MathUtil::AddToTracedValue(rect, value);
66 value->EndArray();
73 value->BeginArray("rect_as_target_space_quad");
74 MathUtil::AddToTracedValue(rect_as_target_space_quad, value);
75 value->EndArray();
77 value->SetBoolean("rect_is_clipped", rect_is_clipped)
    [all...]
  /frameworks/av/media/mtp/
MtpDataPacket.h 46 bool getUInt8(uint8_t& value);
47 inline bool getInt8(int8_t& value) { return getUInt8((uint8_t&)value); }
48 bool getUInt16(uint16_t& value);
49 inline bool getInt16(int16_t& value) { return getUInt16((uint16_t&)value); }
50 bool getUInt32(uint32_t& value);
51 inline bool getInt32(int32_t& value) { return getUInt32((uint32_t&)value); }
52 bool getUInt64(uint64_t& value);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp 67 Length animatableValueToLength(const AnimatableValue* value, const StyleResolverState& state, ValueRange range = ValueRangeAll)
69 if (value->isLength())
70 return toAnimatableLength(value)->length(state.style()->effectiveZoom(), range);
71 RefPtrWillBeRawPtr<CSSValue> cssValue = toAnimatableUnknown(value)->toCSSValue();
76 BorderImageLength animatableValueToBorderImageLength(const AnimatableValue* value, const StyleResolverState& state)
78 if (value->isLength())
79 return BorderImageLength(toAnimatableLength(value)->length(state.style()->effectiveZoom(), ValueRangeNonNegative));
80 if (value->isDouble())
81 return BorderImageLength(clampTo<double>(toAnimatableDouble(value)->toDouble(), 0));
82 RefPtrWillBeRawPtr<CSSValue> cssValue = toAnimatableUnknown(value)->toCSSValue()
    [all...]
  /external/fio/
json.c 25 static struct json_pair *json_create_pair(const char *name, struct json_value *value)
30 pair->value = value;
32 value->parent_type = JSON_PARENT_TYPE_PAIR;
33 value->parent_pair = pair;
40 struct json_value *value = malloc(sizeof(struct json_value)); local
42 if (value) {
43 value->type = JSON_TYPE_INTEGER;
44 value->integer_number = number;
46 return value;
51 struct json_value *value = malloc(sizeof(struct json_value)); local
91 struct json_value *value = malloc(sizeof(struct json_value)); local
106 struct json_value *value = malloc(sizeof(struct json_value)); local
118 struct json_value *value = malloc(sizeof(struct json_value)); local
206 struct json_value *value; local
243 struct json_value *value; local
    [all...]
  /external/chromium_org/chrome/test/logging/win/
mof_data_parser.h 27 bool ReadDWORD(DWORD* value) {
28 return ReadPrimitive(value);
31 bool ReadInt(int* value) {
32 return ReadPrimitive(value);
35 bool ReadPointer(intptr_t* value) {
36 return ReadPrimitive(value);
45 // Populates |value| with a pointer to an arbitrary data structure at the
47 template<typename T> bool ReadStructure(const T** value) {
48 if (length_ < sizeof(**value))
50 *value = reinterpret_cast<const T*>(scan_)
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/lib/
shared_data.h 24 explicit SharedData(const T& value) : holder_(new Holder(value)) {
45 void reset(const T& value) {
47 holder_ = new Holder(value);
50 void set_value(const T& value) {
51 holder_->value = value;
54 return &holder_->value;
56 const T& value() const { function in class:mojo::internal::SharedData
57 return holder_->value;
71 T value; member in class:mojo::internal::SharedData::Holder
    [all...]
  /external/chromium_org/sync/internal_api/public/sessions/
sync_session_snapshot_unittest.cc 57 scoped_ptr<base::DictionaryValue> value(snapshot.ToValue());
58 EXPECT_EQ(16u, value->size());
60 *value, "numSuccessfulCommits");
62 *value, "numSuccessfulBookmarkCommits");
64 *value, "numUpdatesDownloadedTotal");
66 *value, "numTombstoneUpdatesDownloadedTotal");
68 *value, "numReflectedUpdatesDownloadedTotal");
70 *value, "numLocalOverwrites");
72 *value, "numServerOverwrites");
74 *value, "downloadProgressMarkers")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOutputElement.cpp 63 void HTMLOutputElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
66 setFor(value);
68 HTMLFormControlElement::parseAttribute(name, value);
76 void HTMLOutputElement::setFor(const AtomicString& value)
78 m_tokens->setValue(value);
92 // value mode flag to "default" and then to set the element's textContent
93 // attribute to the default value.
94 if (m_defaultValue == value())
100 String HTMLOutputElement::value() const function in class:blink::HTMLOutputElement
105 void HTMLOutputElement::setValue(const String& value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
EnumClass.h 90 typedef enum Definition::Enums Value;
93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
104 ALWAYS_INLINE bool operator==(const Value value) { return m_value == value; }
105 ALWAYS_INLINE bool operator!=(const Value value) { return m_value != value;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_yuv.c 50 uint32_t value; local
54 value = *src++;
57 value = util_bswap32(value);
60 r = ubyte_to_float((value >> 0) & 0xff);
61 g0 = ubyte_to_float((value >> 8) & 0xff);
62 b = ubyte_to_float((value >> 16) & 0xff);
63 g1 = ubyte_to_float((value >> 24) & 0xff);
79 value = *src;
82 value = util_bswap32(value)
112 uint32_t value; local
175 uint32_t value; local
232 uint32_t value; local
302 uint32_t value; local
364 uint32_t value; local
427 uint32_t value; local
484 uint32_t value; local
554 uint32_t value; local
610 uint32_t value; local
667 uint32_t value; local
728 uint32_t value; local
807 uint32_t value; local
863 uint32_t value; local
920 uint32_t value; local
981 uint32_t value; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
exp_filter_unittest.cc 19 // No max value defined.
24 double value = 10.0f; local
25 EXPECT_FLOAT_EQ(value, filter.filtered());
29 double value; local
35 value = 10.0f;
39 value = alpha * value + (1.0f - alpha) * 20.0f;
40 EXPECT_FLOAT_EQ(value, filter.filtered());
51 double value = 1.0f; local
52 EXPECT_FLOAT_EQ(value, filter.filtered())
56 double value; local
    [all...]
  /external/clang/test/SemaCXX/
issue547.cpp 6 static const unsigned value = 0; member in struct:classify_function
11 static const unsigned value = 1; member in struct:classify_function
16 static const unsigned value = 2; member in struct:classify_function
21 static const unsigned value = 3; member in struct:classify_function
26 static const unsigned value = 4; member in struct:classify_function
31 static const unsigned value = 5; member in struct:classify_function
36 static const unsigned value = 6; member in struct:classify_function
41 static const unsigned value = 7; member in struct:classify_function
46 static const unsigned value = 8; member in struct:classify_function
51 static const unsigned value = 9 member in struct:classify_function
56 static const unsigned value = 10; member in struct:classify_function
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-static-var.cpp 5 static const T value = 10 / Divisor; // expected-error{{in-class initializer for static data member is not a constant expression}} member in class:X
8 int array1[X<int, 2>::value == 5? 1 : -1];
14 static const T value = 0; // expected-warning{{in-class initializer for static data member of type 'const float' is a GNU extension}} member in class:Y
24 static T value; member in struct:Z
28 T Z<T>::value; // expected-error{{no matching constructor}} member in class:Z
37 DefCon &DC = Z<DefCon>::value;
38 NoDefCon &NDC = Z<NoDefCon>::value; // expected-note{{instantiation}}
49 static const int value = sizeof(Helper(T())); member in struct:Y1
63 static const int value = sizeof(typeid(Helper())); member in struct:Y2
70 Z1<Y1<X1>::value> x
89 static const int value = sizeof(T); member in struct:SizeOf
    [all...]
  /external/icu/icu4c/source/layoutex/
LXUtilities.cpp 17 le_int8 LXUtilities::highBit(le_int32 value)
19 if (value <= 0) {
25 if (value >= 1 << 16) {
26 value >>= 16;
30 if (value >= 1 << 8) {
31 value >>= 8;
35 if (value >= 1 << 4) {
36 value >>= 4;
40 if (value >= 1 << 2) {
41 value >>= 2
    [all...]

Completed in 7130 milliseconds

<<11121314151617181920>>