Searched refs:value (Results 251 - 275 of 7674) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/svg/
H A DSVGNumber.idl26 attribute [StrictTypeChecking] float value;
/external/webkit/Source/WebCore/svg/animation/
H A DSMILTime.cpp35 // Just a big value smaller than DBL_MAX. Our times are relative to 0, we don't really need the full range.
44 return a.value() + b.value();
53 return a.value() - b.value();
60 if (!a.value() || !b.value())
64 return a.value() * b.value();
/external/webkit/Source/WebCore/wml/
H A DWMLAccessElement.cpp48 String value = parseValueForbiddingVariableReferences(attr->value()); local
49 if (value.isEmpty())
52 m_domain = value;
54 String value = parseValueForbiddingVariableReferences(attr->value()); local
55 if (value.isEmpty())
58 m_path = value;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DIteratorOptions.java72 * @param value the value to set
75 public IteratorOptions setJustChildren(boolean value) argument
77 setOption(JUST_CHILDREN, value);
85 * @param value the value to set
88 public IteratorOptions setJustLeafname(boolean value) argument
90 setOption(JUST_LEAFNAME, value);
98 * @param value the value t
101 setJustLeafnodes(boolean value) argument
114 setOmitQualifiers(boolean value) argument
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dencoder.py41 sizer takes a value of this field's type and computes its byte size. The
42 encoder takes a writer function and a value. It encodes the value into byte
58 manually inline the single-value encoder into the loop.
62 value is returned, then we can save two instructions by returning the
73 def _VarintSize(value):
74 """Compute the size of a varint value."""
75 if value <= 0x7f: return 1
76 if value <= 0x3fff: return 2
77 if value <
[all...]
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite_inl.h57 int32* value) {
60 *value = static_cast<int32>(temp);
66 int64* value) {
69 *value = static_cast<int64>(temp);
75 uint32* value) {
76 return input->ReadVarint32(value);
81 uint64* value) {
82 return input->ReadVarint64(value);
87 int32* value) {
90 *value
55 ReadPrimitive( io::CodedInputStream* input, int32* value) argument
64 ReadPrimitive( io::CodedInputStream* input, int64* value) argument
73 ReadPrimitive( io::CodedInputStream* input, uint32* value) argument
79 ReadPrimitive( io::CodedInputStream* input, uint64* value) argument
85 ReadPrimitive( io::CodedInputStream* input, int32* value) argument
94 ReadPrimitive( io::CodedInputStream* input, int64* value) argument
103 ReadPrimitive( io::CodedInputStream* input, uint32* value) argument
109 ReadPrimitive( io::CodedInputStream* input, uint64* value) argument
115 ReadPrimitive( io::CodedInputStream* input, int32* value) argument
124 ReadPrimitive( io::CodedInputStream* input, int64* value) argument
133 ReadPrimitive( io::CodedInputStream* input, float* value) argument
142 ReadPrimitive( io::CodedInputStream* input, double* value) argument
151 ReadPrimitive( io::CodedInputStream* input, bool* value) argument
160 ReadPrimitive( io::CodedInputStream* input, int* value) argument
170 ReadPrimitiveFromArray( const uint8* buffer, uint32* value) argument
177 ReadPrimitiveFromArray( const uint8* buffer, uint64* value) argument
184 ReadPrimitiveFromArray( const uint8* buffer, int32* value) argument
194 ReadPrimitiveFromArray( const uint8* buffer, int64* value) argument
204 ReadPrimitiveFromArray( const uint8* buffer, float* value) argument
214 ReadPrimitiveFromArray( const uint8* buffer, double* value) argument
229 CType value; local
248 CType value; local
313 ReadRepeatedPrimitiveNoInline( int tag_size, uint32 tag, io::CodedInputStream* input, RepeatedField<CType>* value) argument
329 CType value; local
344 ReadGroup(int field_number, io::CodedInputStream* input, MessageLite* value) argument
356 ReadMessage(io::CodedInputStream* input, MessageLite* value) argument
372 ReadGroupNoVirtual(int field_number, io::CodedInputStream* input, MessageType* value) argument
385 ReadMessageNoVirtual(io::CodedInputStream* input, MessageType* value) argument
407 WriteInt32NoTag(int32 value, io::CodedOutputStream* output) argument
411 WriteInt64NoTag(int64 value, io::CodedOutputStream* output) argument
415 WriteUInt32NoTag(uint32 value, io::CodedOutputStream* output) argument
419 WriteUInt64NoTag(uint64 value, io::CodedOutputStream* output) argument
423 WriteSInt32NoTag(int32 value, io::CodedOutputStream* output) argument
427 WriteSInt64NoTag(int64 value, io::CodedOutputStream* output) argument
431 WriteFixed32NoTag(uint32 value, io::CodedOutputStream* output) argument
435 WriteFixed64NoTag(uint64 value, io::CodedOutputStream* output) argument
439 WriteSFixed32NoTag(int32 value, io::CodedOutputStream* output) argument
443 WriteSFixed64NoTag(int64 value, io::CodedOutputStream* output) argument
447 WriteFloatNoTag(float value, io::CodedOutputStream* output) argument
451 WriteDoubleNoTag(double value, io::CodedOutputStream* output) argument
455 WriteBoolNoTag(bool value, io::CodedOutputStream* output) argument
459 WriteEnumNoTag(int value, io::CodedOutputStream* output) argument
465 WriteGroupNoVirtual(int field_number, const MessageType& value, io::CodedOutputStream* output) argument
473 WriteMessageNoVirtual(int field_number, const MessageType& value, io::CodedOutputStream* output) argument
490 WriteInt32NoTagToArray(int32 value, uint8* target) argument
494 WriteInt64NoTagToArray(int64 value, uint8* target) argument
499 WriteUInt32NoTagToArray(uint32 value, uint8* target) argument
503 WriteUInt64NoTagToArray(uint64 value, uint8* target) argument
507 WriteSInt32NoTagToArray(int32 value, uint8* target) argument
512 WriteSInt64NoTagToArray(int64 value, uint8* target) argument
517 WriteFixed32NoTagToArray(uint32 value, uint8* target) argument
521 WriteFixed64NoTagToArray(uint64 value, uint8* target) argument
525 WriteSFixed32NoTagToArray(int32 value, uint8* target) argument
530 WriteSFixed64NoTagToArray(int64 value, uint8* target) argument
535 WriteFloatNoTagToArray(float value, uint8* target) argument
540 WriteDoubleNoTagToArray(double value, uint8* target) argument
545 WriteBoolNoTagToArray(bool value, uint8* target) argument
549 WriteEnumNoTagToArray(int value, uint8* target) argument
554 WriteInt32ToArray(int field_number, int32 value, uint8* target) argument
560 WriteInt64ToArray(int field_number, int64 value, uint8* target) argument
566 WriteUInt32ToArray(int field_number, uint32 value, uint8* target) argument
572 WriteUInt64ToArray(int field_number, uint64 value, uint8* target) argument
578 WriteSInt32ToArray(int field_number, int32 value, uint8* target) argument
584 WriteSInt64ToArray(int field_number, int64 value, uint8* target) argument
590 WriteFixed32ToArray(int field_number, uint32 value, uint8* target) argument
596 WriteFixed64ToArray(int field_number, uint64 value, uint8* target) argument
602 WriteSFixed32ToArray(int field_number, int32 value, uint8* target) argument
608 WriteSFixed64ToArray(int field_number, int64 value, uint8* target) argument
614 WriteFloatToArray(int field_number, float value, uint8* target) argument
620 WriteDoubleToArray(int field_number, double value, uint8* target) argument
626 WriteBoolToArray(int field_number, bool value, uint8* target) argument
632 WriteEnumToArray(int field_number, int value, uint8* target) argument
639 WriteStringToArray(int field_number, const string& value, uint8* target) argument
650 WriteBytesToArray(int field_number, const string& value, uint8* target) argument
659 WriteGroupToArray(int field_number, const MessageLite& value, uint8* target) argument
666 WriteMessageToArray(int field_number, const MessageLite& value, uint8* target) argument
676 WriteGroupNoVirtualToArray( int field_number, const MessageType& value, uint8* target) argument
683 WriteMessageNoVirtualToArray( int field_number, const MessageType& value, uint8* target) argument
693 Int32Size(int32 value) argument
696 Int64Size(int64 value) argument
699 UInt32Size(uint32 value) argument
702 UInt64Size(uint64 value) argument
705 SInt32Size(int32 value) argument
708 SInt64Size(int64 value) argument
711 EnumSize(int value) argument
715 StringSize(const string& value) argument
719 BytesSize(const string& value) argument
725 GroupSize(const MessageLite& value) argument
728 MessageSize(const MessageLite& value) argument
734 GroupSizeNoVirtual(const MessageType& value) argument
738 MessageSizeNoVirtual(const MessageType& value) argument
[all...]
/external/chromium/base/
H A Dbits.h22 uint32 value = n; local
25 uint32 x = value >> shift;
27 value = x;
31 DCHECK_EQ(value, 1u);
/external/chromium/chrome/browser/extensions/
H A Dextension_tts_api_util.cc21 Value* value; local
22 if (!dict->Get(key, &value))
25 if (value->IsType(Value::TYPE_INTEGER)) {
30 } else if (value->IsType(Value::TYPE_DOUBLE)) {
/external/chromium/net/spdy/
H A Dspdy_frame_builder.h17 // This class provides facilities for basic binary value packing and unpacking
25 // When reading from a SpdyFrameBuilder the consumer must know what value types
66 bool WriteUInt16(uint16 value) { argument
67 value = htons(value);
68 return WriteBytes(&value, sizeof(value));
70 bool WriteUInt32(uint32 value) { argument
71 value = htonl(value);
78 WriteUInt32ToOffset(int offset, uint32 value) argument
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp1.cpp7 static T twice(U value) { argument
8 return (cond ? value + value : value);
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-0x.cpp8 static const unsigned value = 1 + count<Tail...>::value; member in struct:ParameterPacksWithFunctions::count
13 static const unsigned value = 0; member in struct:ParameterPacksWithFunctions::count
19 unsigned_c<count<Types...>::value> f();
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DCallablesTest.java33 Object value = new Object();
34 Callable<Object> callable = Callables.returning(value);
35 assertSame(value, callable.call());
36 // Expect the same value on subsequent calls
37 assertSame(value, callable.call());
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java59 protected Object value; field in class:UserData
66 * type and value.
69 * @param value Value of the data
71 public UserData(byte type, Object value) { argument
74 this.value = value;
78 return value;
83 return value.toString();
108 int i = (Integer) value;
112 float f = (Float) value;
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DStringInternStrategy.java28 * If there exists a String in the pool equal to the provided value then it will be returned.
33 * that value == intern(value) will never be true.
35 * @param value String to be interned
38 String intern(String value); argument
/external/llvm/include/llvm/Support/
H A DSwapByteOrder.h27 inline uint16_t SwapByteOrder_16(uint16_t value) { argument
31 return _byteswap_ushort(value);
33 uint16_t Hi = value << 8;
34 uint16_t Lo = value >> 8;
41 inline uint32_t SwapByteOrder_32(uint32_t value) { argument
44 return __builtin_bswap32(value);
46 return _byteswap_ulong(value);
48 uint32_t Byte0 = value & 0x000000FF;
49 uint32_t Byte1 = value & 0x0000FF00;
50 uint32_t Byte2 = value
58 SwapByteOrder_64(uint64_t value) argument
[all...]
/external/openssl/crypto/asn1/
H A Da_type.c66 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
72 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
74 if (a->value.ptr != NULL)
81 a->value.boolean = value ? 0xff : 0;
83 a->value.ptr=value;
86 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
88 if (!value || (type == V_ASN1_BOOLEAN))
90 void *p = (void *)value;
[all...]
/external/proguard/src/proguard/classfile/constant/
H A DDoubleConstant.java45 * Creates a new DoubleConstant with the given double value.
47 public DoubleConstant(double value) argument
49 f8value = value;
54 * Returns the double value of this DoubleConstant.
63 * Sets the double value of this DoubleConstant.
65 public void setValue(double value) argument
67 f8value = value;
H A DFloatConstant.java45 * Creates a new FloatConstant with the given float value.
47 public FloatConstant(float value) argument
49 f4value = value;
54 * Returns the float value of this FloatConstant.
63 * Sets the float value of this FloatConstant.
65 public void setValue(float value) argument
67 f4value = value;
H A DIntegerConstant.java45 * Creates a new IntegerConstant with the given integer value.
47 public IntegerConstant(int value) argument
49 u4value = value;
54 * Returns the integer value of this IntegerConstant.
63 * Sets the integer value of this IntegerConstant.
65 public void setValue(int value) argument
67 u4value = value;
H A DLongConstant.java45 * Creates a new LongConstant with the given long value.
47 public LongConstant(long value) argument
49 u8value = value;
54 * Returns the long value of this LongConstant.
63 * Sets the long value of this LongConstant.
65 public void setValue(long value) argument
67 u8value = value;
/external/v8/test/mjsunit/regress/
H A Dregress-720.js29 // keeps the existing value of the writable flag if none is given
34 Object.defineProperty(o, "x", {value: 5});
/external/valgrind/main/memcheck/tests/
H A Dclientperm.stdout.exp1 m_na: returned value is -1
3 m_rm: returned value is 1
/external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
H A DDOMTestSerializedScriptValueInterface.mm72 - (NSString *)value
75 return IMPL->value()->toString();
85 DOMTestSerializedScriptValueInterface *kit(WebCore::TestSerializedScriptValueInterface* value)
88 if (!value)
90 if (DOMTestSerializedScriptValueInterface *wrapper = getDOMWrapper(value))
93 wrapper->_internal = reinterpret_cast<DOMObjectInternal*>(value);
94 value->ref();
95 addDOMWrapper(wrapper, value);
/external/webkit/Source/WebCore/html/
H A DURLInputType.cpp51 bool URLInputType::typeMismatchFor(const String& value) const
53 return !value.isEmpty() && !KURL(KURL(), value).isValid();
58 return typeMismatchFor(element()->value());
/external/webkit/Source/WebCore/webaudio/
H A DAudioParam.cpp39 void AudioParam::setValue(float value) argument
43 if (!isnan(value) && !isinf(value))
44 m_value = value;
50 // Smoothed value has already approached and snapped to value.
57 // If we get close enough then snap to actual value.
58 if (fabs(m_smoothedValue - m_value) < SnapThreshold) // FIXME: the threshold needs to be adjustable depending on range - but this is OK general purpose value.

Completed in 767 milliseconds

<<11121314151617181920>>