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

<<11121314151617181920>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_yuv.c50 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
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/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DCharEncodedValue.java36 public final char value; field in class:CharEncodedValue
39 * Constructs a new <code>CharEncodedValue</code> by reading the value from the given <code>Input</code> object.
40 * The <code>Input</code>'s cursor should be set to the 2nd byte of the encoded value, and the high 3 bits of
43 * @param valueArg The high 3 bits of the first byte of this encoded value
46 value = (char)EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1));
50 * Constructs a new <code>CharEncodedValue</code> with the given value
51 * @param value The value
53 public CharEncodedValue(char value) { argument
54 this.value
[all...]
H A DIntEncodedValue.java36 public final int value; field in class:IntEncodedValue
39 * Constructs a new <code>IntEncodedValue</code> by reading the value from the given <code>Input</code> object.
40 * The <code>Input</code>'s cursor should be set to the 2nd byte of the encoded value, and the high 3 bits of
43 * @param valueArg The high 3 bits of the first byte of this encoded value
46 value = (int)EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(valueArg+1));
50 * Constructs a new <code>IntEncodedValue</code> with the given value
51 * @param value The value
53 public IntEncodedValue(int value) { argument
54 this.value
[all...]
H A DLongEncodedValue.java36 public final long value; field in class:LongEncodedValue
39 * Constructs a new <code>LongEncodedValue</code> by reading the value from the given <code>Input</code> object.
40 * The <code>Input</code>'s cursor should be set to the 2nd byte of the encoded value, and the high 3 bits of
43 * @param valueArg The high 3 bits of the first byte of this encoded value
46 value = EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(valueArg+1));
50 * Constructs a new <code>LongEncodedValue</code> with the given value
51 * @param value The value
53 public LongEncodedValue(long value) { argument
54 this.value
[all...]
H A DShortEncodedValue.java36 public final short value; field in class:ShortEncodedValue
39 * Constructs a new <code>ShortEncodedValue</code> by reading the value from the given <code>Input</code> object.
40 * The <code>Input</code>'s cursor should be set to the 2nd byte of the encoded value, and the high 3 bits of
43 * @param valueArg The high 3 bits of the first byte of this encoded value
46 value = (short) EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(valueArg+1));
50 * Constructs a new <code>ShortEncodedValue</code> with the given value
51 * @param value The value
53 public ShortEncodedValue(short value) { argument
54 this.value
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/JavaCompat/
H A DExpr.g373 /** Map variable name to Integer object holding value */
79 stat: expr NEWLINE {JSystem.@out.println($expr.value);}
81 {memory.put($ID.text, new Integer($expr.value));}
85 expr returns [int value]
86 : e=multExpr {$value = $e.value;}
87 ( '+' e=multExpr {$value += $e.value;}
88 | '-' e=multExpr {$value -= $e.value;}
[all...]
/external/easymock/src/org/easymock/
H A DEasyMock.java174 * @param value
182 public static <T> IExpectationSetters<T> expect(T value) { argument
300 * Expects a comparable argument greater than or equal the given value. For details, see
304 * @param value
305 * the given value.
308 public static <T extends Comparable<T>> T geq(Comparable<T> value) { argument
309 reportMatcher(new GreaterOrEqual<T>(value));
314 * Expects a byte argument greater than or equal to the given value. For
317 * @param value
318 * the given value
321 geq(byte value) argument
334 geq(double value) argument
347 geq(float value) argument
360 geq(int value) argument
373 geq(long value) argument
386 geq(short value) argument
400 leq(Comparable<T> value) argument
413 leq(byte value) argument
426 leq(double value) argument
439 leq(float value) argument
452 leq(int value) argument
465 leq(long value) argument
478 leq(short value) argument
492 gt(Comparable<T> value) argument
505 gt(byte value) argument
518 gt(double value) argument
531 gt(float value) argument
544 gt(int value) argument
557 gt(long value) argument
570 gt(short value) argument
584 lt(Comparable<T> value) argument
597 lt(byte value) argument
610 lt(double value) argument
623 lt(float value) argument
636 lt(int value) argument
649 lt(long value) argument
662 lt(short value) argument
1068 eq(boolean value) argument
1080 eq(byte value) argument
1092 eq(char value) argument
1104 eq(double value) argument
1116 eq(float value) argument
1128 eq(int value) argument
1140 eq(long value) argument
1152 eq(short value) argument
1165 eq(T value) argument
1178 aryEq(boolean[] value) argument
1191 aryEq(byte[] value) argument
1204 aryEq(char[] value) argument
1217 aryEq(double[] value) argument
1230 aryEq(float[] value) argument
1243 aryEq(int[] value) argument
1256 aryEq(long[] value) argument
1269 aryEq(short[] value) argument
1284 aryEq(T[] value) argument
1374 eq(double value, double delta) argument
1390 eq(float value, float delta) argument
1405 same(T value) argument
1419 cmpEq(Comparable<T> value) argument
1438 cmp(T value, Comparator<? super T> comparator, LogicalOperator operator) argument
1725 setEasyMockProperty(String key, String value) argument
[all...]
/external/apache-http/src/org/apache/commons/codec/net/
H A DBCodec.java93 * @param value
102 public String encode(final String value, final String charset) throws EncoderException { argument
103 if (value == null) {
107 return encodeText(value, charset);
116 * @param value
123 public String encode(String value) throws EncoderException { argument
124 if (value == null) {
127 return encode(value, getDefaultCharset());
134 * @param value
142 public String decode(String value) throw argument
163 encode(Object value) argument
187 decode(Object value) argument
[all...]
/external/chromium_org/tools/perf/metrics/
H A Dsmoothness_unittest.py51 res.page_results[0]['mean_frame_time'].value, 2)
54 res.page_results[0]['dropped_percent'].value)
57 res.page_results[0]['percent_impl_scrolled'].value)
60 res.page_results[0]['average_num_layers_drawn'].value)
63 res.page_results[0]['average_num_missing_tiles'].value)
68 res.page_results[0]['average_commit_time'].value)
71 res.page_results[0]['texture_upload_count'].value)
74 res.page_results[0]['total_texture_upload_time'].value)
79 res.page_results[0]['total_deferred_image_decode_count'].value)
82 res.page_results[0]['total_image_cache_hit_count'].value)
[all...]
/external/lzma/CPP/Windows/
H A DPropVariant.h22 CPropVariant(Byte value) { vt = VT_UI1; wReserved1 = 0; bVal = value; } argument
23 CPropVariant(Int16 value) { vt = VT_I2; wReserved1 = 0; iVal = value; } argument
24 CPropVariant(Int32 value) { vt = VT_I4; wReserved1 = 0; lVal = value; } argument
25 CPropVariant(UInt32 value) { vt = VT_UI4; wReserved1 = 0; ulVal = value; } argument
26 CPropVariant(UInt64 value) { vt = VT_UI8; wReserved1 = 0; uhVal.QuadPart = value; } argument
27 CPropVariant(const FILETIME &value) argument
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedLong.java51 private final long value; field in class:UnsignedLong
53 protected UnsignedLong(long value) { argument
54 this.value = value;
58 * Returns an {@code UnsignedLong} that, when treated as signed, is equal to {@code value}. The
61 * <p>Put another way, if {@code value} is negative, the returned result will be equal to
62 * {@code 2^64 + value}; otherwise, the returned result will be equal to {@code value}.
64 public static UnsignedLong asUnsigned(long value) { argument
65 return new UnsignedLong(value);
74 valueOf(BigInteger value) argument
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryOutputCapsule.java72 public void write(byte value, String name, byte defVal) throws IOException { argument
73 if (value == defVal)
76 write(value);
79 public void write(byte[] value, String name, byte[] defVal) argument
81 if (value == defVal)
84 write(value);
87 public void write(byte[][] value, String name, byte[][] defVal) argument
89 if (value == defVal)
92 write(value);
95 public void write(int value, Strin argument
102 write(int[] value, String name, int[] defVal) argument
110 write(int[][] value, String name, int[][] defVal) argument
118 write(float value, String name, float defVal) argument
126 write(float[] value, String name, float[] defVal) argument
134 write(float[][] value, String name, float[][] defVal) argument
142 write(double value, String name, double defVal) argument
150 write(double[] value, String name, double[] defVal) argument
158 write(double[][] value, String name, double[][] defVal) argument
166 write(long value, String name, long defVal) argument
173 write(long[] value, String name, long[] defVal) argument
181 write(long[][] value, String name, long[][] defVal) argument
189 write(short value, String name, short defVal) argument
197 write(short[] value, String name, short[] defVal) argument
205 write(short[][] value, String name, short[][] defVal) argument
213 write(boolean value, String name, boolean defVal) argument
221 write(boolean[] value, String name, boolean[] defVal) argument
229 write(boolean[][] value, String name, boolean[][] defVal) argument
237 write(String value, String name, String defVal) argument
245 write(String[] value, String name, String[] defVal) argument
253 write(String[][] value, String name, String[][] defVal) argument
261 write(BitSet value, String name, BitSet defVal) argument
293 write(FloatBuffer value, String name, FloatBuffer defVal) argument
301 write(IntBuffer value, String name, IntBuffer defVal) argument
309 write(ByteBuffer value, String name, ByteBuffer defVal) argument
317 write(ShortBuffer value, String name, ShortBuffer defVal) argument
437 write(byte value) argument
441 writeForBuffer(byte value) argument
445 write(byte[] value) argument
454 write(byte[][] value) argument
466 write(int value) argument
470 writeForBuffer(int value) argument
479 write(int[] value) argument
489 write(int[][] value) argument
501 write(float value) argument
505 writeForBuffer(float value) argument
510 write(float[] value) argument
520 write(float[][] value) argument
532 write(double value) argument
536 write(double[] value) argument
546 write(double[][] value) argument
558 write(long value) argument
562 write(long[] value) argument
572 write(long[][] value) argument
584 write(short value) argument
588 writeForBuffer(short value) argument
595 write(short[] value) argument
605 write(short[][] value) argument
617 write(boolean value) argument
621 write(boolean[] value) argument
631 write(boolean[][] value) argument
643 write(String value) argument
654 write(String[] value) argument
664 write(String[][] value) argument
676 write(BitSet value) argument
872 write(FloatBuffer value) argument
888 write(IntBuffer value) argument
905 write(ByteBuffer value) argument
921 write(ShortBuffer value) argument
935 write(Enum value, String name, Enum defVal) argument
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java137 String value;
139 value = props.get("DomainAddress");
140 if (value != null) {
141 DomainAddress = value;
144 value = props.get("WebName");
145 if (value != null) {
146 WebName = value;
149 value = props.get("TestResourcesDir");
150 if (value != null) {
151 TestResourcesDir = value;
[all...]
/external/chromium_org/dbus/
H A Dvalues_util.cc17 // Returns whether |value| is exactly representable by double or not.
19 bool IsExactlyRepresentableByDouble(T value) { argument
20 return value == static_cast<T>(static_cast<double>(value));
53 // Use JSONWriter to convert an arbitrary value to a string.
56 // Get the value and set the key-value pair.
57 base::Value* value = PopDataAsValue(&entry_reader); local
58 if (!value)
60 dictionary_value->SetWithoutPathExpansion(key_string, value);
66 GetTypeSignature(const base::Value& value) argument
95 uint8 value = 0; local
101 bool value = false; local
107 int16 value = 0; local
113 uint16 value = 0; local
119 int32 value = 0; local
125 uint32 value = 0; local
131 int64 value = 0; local
140 uint64 value = 0; local
149 double value = 0; local
155 std::string value; local
161 ObjectPath value; local
212 AppendBasicTypeValueData(MessageWriter* writer, const base::Value& value) argument
248 AppendBasicTypeValueDataAsVariant(MessageWriter* writer, const base::Value& value) argument
[all...]
/external/chromium_org/third_party/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
79 def _VarintSize(value):
80 """Compute the size of a varint value."""
81 if value <= 0x7f: return 1
82 if value <= 0x3fff: return 2
83 if value <
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dpref_ui.js16 el.managed = event.value && event.value['managed'] != undefined ?
17 event.value['managed'] : false;
26 if (!el.disabled && event.value && event.value['disabled'])
48 self.initializeValueType(self.getAttribute('value-type'));
54 var value = event.value && event.value['value'] !
[all...]
/external/chromium_org/chrome/service/
H A Dservice_process_prefs.cc29 const base::Value* value; local
31 if (!prefs_->GetValue(key, &value) || !value->GetAsString(&result))
38 const std::string& value) {
39 prefs_->SetValue(key, new base::StringValue(value));
44 const base::Value* value; local
46 if (!prefs_->GetValue(key, &value) || !value->GetAsBoolean(&result))
52 void ServiceProcessPrefs::SetBoolean(const std::string& key, bool value) { argument
53 prefs_->SetValue(key, new base::FundamentalValue(value));
37 SetString(const std::string& key, const std::string& value) argument
58 const base::Value* value; local
66 SetInt(const std::string& key, int value) argument
72 const base::Value* value; local
83 const base::Value* value; local
90 SetValue(const std::string& key, base::Value* value) argument
[all...]
/external/chromium_org/chrome/test/automation/
H A Dvalue_conversion_traits.cc17 bool ValueConversionTraits<int>::SetFromValue(const Value* value, int* t) { argument
18 return value->GetAsInteger(t);
21 bool ValueConversionTraits<int>::CanConvert(const Value* value) { argument
23 return SetFromValue(value, &t);
30 bool ValueConversionTraits<bool>::SetFromValue(const Value* value, bool* t) { argument
31 return value->GetAsBoolean(t);
34 bool ValueConversionTraits<bool>::CanConvert(const Value* value) { argument
36 return SetFromValue(value, &t);
45 const Value* value, std::string* t) {
46 return value
44 SetFromValue( const Value* value, std::string* t) argument
49 CanConvert(const Value* value) argument
58 SetFromValue( const Value* value, Value** t) argument
64 CanConvert(const Value* value) argument
72 SetFromValue(const Value* value, ListValue** t) argument
80 CanConvert(const Value* value) argument
89 SetFromValue( const Value* value, DictionaryValue** t) argument
97 CanConvert(const Value* value) argument
[all...]
/external/chromium_org/content/public/renderer/
H A Ddocument_state.h41 kLoadTypeMax // Bounding value for this enum.
55 void set_request_time(const base::Time& value) { argument
57 request_time_ = value;
64 void set_start_load_time(const base::Time& value) { argument
68 start_load_time_ = value;
75 void set_commit_load_time(const base::Time& value) { argument
76 commit_load_time_ = value;
83 void set_finish_document_load_time(const base::Time& value) { argument
86 DCHECK(!value.is_null());
91 finish_document_load_time_ = value;
96 set_finish_load_time(const base::Time& value) argument
106 set_first_paint_time(const base::Time& value) argument
114 set_first_paint_after_load_time(const base::Time& value) argument
120 set_load_histograms_recorded(bool value) argument
127 set_web_timing_histograms_recorded(bool value) argument
133 set_was_fetched_via_spdy(bool value) argument
136 set_was_npn_negotiated(bool value) argument
141 set_npn_negotiated_protocol(const std::string& value) argument
148 set_was_alternate_protocol_available(bool value) argument
161 set_was_fetched_via_proxy(bool value) argument
179 set_was_prefetcher(bool value) argument
182 set_was_referred_by_prefetcher(bool value) argument
189 set_was_after_preconnect_request(bool value) argument
[all...]
/external/chromium_org/net/quic/
H A Dquic_data_writer.h41 bool WriteUInt8(uint8 value);
42 bool WriteUInt16(uint16 value);
43 bool WriteUInt32(uint32 value);
44 bool WriteUInt48(uint64 value);
45 bool WriteUInt64(uint64 value);
46 bool WriteUInt128(uint128 value);
56 bool WriteUInt8ToOffset(uint8 value, size_t offset);
57 bool WriteUInt32ToOffset(uint32 value, size_t offset);
58 bool WriteUInt48ToOffset(uint64 value, size_t offset);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DIntQueue.java22 private int value; field in class:IntQueue.Entry
23 private Entry(int value) { argument
24 this.value = value;
31 void add(int value) { argument
32 IntQueue.Entry entry = new Entry(value);
49 int value = head.value;
54 return value;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DExtensionHeaderImpl.java51 protected String value; field in class:ExtensionHeaderImpl
73 * Set the value of the header.
75 public void setValue(String value) { argument
76 this.value = value;
80 * Get the value of the extension header.
81 * @return the value of the extension header.
84 if (this.value != null) {
85 return this.value;
99 this.value
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DLerp.java23 float value = start;
28 value = start + (range * percent);
32 value = target;
34 return value;
39 float value = start;
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
57 value = target;
59 return value;
/external/chromium/chrome/common/net/gaia/
H A Dgoogle_service_auth_error_unittest.cc23 scoped_ptr<DictionaryValue> value(error.ToValue());
24 EXPECT_EQ(1u, value->size());
26 EXPECT_TRUE(value->GetString("state", &state_str));
41 scoped_ptr<DictionaryValue> value(error.ToValue());
42 EXPECT_EQ(1u, value->size());
43 ExpectStringValue("NONE", *value, "state");
49 scoped_ptr<DictionaryValue> value(error.ToValue());
50 EXPECT_EQ(2u, value->size());
51 ExpectStringValue("CONNECTION_FAILED", *value, "state");
52 ExpectStringValue("net::OK", *value, "networkErro
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dvalue_counter.cc19 ValueCounter::Entry::Entry(const base::Value& value) argument
20 : value_(value.DeepCopy()),
35 int ValueCounter::Add(const base::Value& value) { argument
36 return AddImpl(value, true);
39 int ValueCounter::Remove(const base::Value& value) { argument
41 (*it)->value()->GetType();
42 if ((*it)->value()->Equals(&value)) {
54 int ValueCounter::AddIfMissing(const base::Value& value) { argument
55 return AddImpl(value, fals
58 AddImpl(const base::Value& value, bool increment) argument
[all...]

Completed in 1206 milliseconds

<<11121314151617181920>>