Searched refs:value (Results 351 - 375 of 7674) sorted by relevance

<<11121314151617181920>>

/external/libvpx/vp8/decoder/
H A Ddboolhuff.c35 br->value = 0;
53 VP8_BD_VALUE value; local
57 value = br->value;
60 VP8DX_BOOL_DECODER_FILL(count, value, bufptr, bufend);
63 br->value = value;
/external/proguard/src/proguard/optimize/
H A DConstantMemberFilter.java26 import proguard.evaluation.value.Value;
59 Value value = StoringInvocationUnit.getFieldValue(programField);
60 if (value != null &&
61 value.isParticular())
70 Value value = StoringInvocationUnit.getMethodReturnValue(programMethod);
71 if (value != null &&
72 value.isParticular())
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_getenv.c38 /* Put a variable of the form "name=value" into the environment */
42 char *value; local
59 value = SDL_envmem + (sep - variable);
60 *value++ = '\0';
61 if ( !SetEnvironmentVariable(SDL_envmem, *value ? value : NULL) ) {
92 /* Put a variable of the form "name=value" into the environment */
95 const char *name, *value; local
106 for ( value=variable; *value
159 char *value; local
183 char *value; local
[all...]
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_attrcreatetextnode.js82 string to its value attribute. This value is not yet
99 var value;
111 streetAttr.value = "Y&ent1;";
113 value = streetAttr.value;
115 assertEquals("value","Y&ent1;",value);
116 value = streetAttr.nodeValue;
118 assertEquals("nodeValue","Y&ent1;",value);
[all...]
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_attrcreatetextnode.js82 string to its value attribute. This value is not yet
99 var value;
111 streetAttr.value = "Y&ent1;";
113 value = streetAttr.value;
115 assertEquals("value","Y&ent1;",value);
116 value = streetAttr.nodeValue;
118 assertEquals("nodeValue","Y&ent1;",value);
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGTests.cpp50 unsigned featuresSize = m_requiredFeatures.value.size();
52 String value = m_requiredFeatures.value.at(i); local
53 if (value.isEmpty() || !DOMImplementation::hasFeature(value, String()))
57 unsigned systemLanguageSize = m_systemLanguage.value.size();
59 String value = m_systemLanguage.value.at(i); local
60 if (value != defaultLanguage().substring(0, 2))
64 if (!m_requiredExtensions.value
[all...]
/external/openssl/crypto/asn1/
H A Da_mbstr.c65 int (*rfunc)(unsigned long value, void *in), void *arg);
66 static int in_utf8(unsigned long value, void *arg);
67 static int out_utf8(unsigned long value, void *arg);
68 static int type_str(unsigned long value, void *arg);
69 static int cpy_asc(unsigned long value, void *arg);
70 static int cpy_bmp(unsigned long value, void *arg);
71 static int cpy_univ(unsigned long value, void *arg);
72 static int cpy_utf8(unsigned long value, void *arg);
73 static int is_printable(unsigned long value);
246 /* This function traverses a string and passes the value o
250 traverse_string(const unsigned char *p, int len, int inform, int (*rfunc)(unsigned long value, void *in), void *arg) argument
253 unsigned long value; local
287 in_utf8(unsigned long value, void *arg) argument
297 out_utf8(unsigned long value, void *arg) argument
309 type_str(unsigned long value, void *arg) argument
328 cpy_asc(unsigned long value, void *arg) argument
340 cpy_bmp(unsigned long value, void *arg) argument
353 cpy_univ(unsigned long value, void *arg) argument
368 cpy_utf8(unsigned long value, void *arg) argument
380 is_printable(unsigned long value) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite.h77 // The wire format is composed of a sequence of tag/value pairs, each
78 // of which contains the value of one field (or one element of a repeated
83 // these wire types. Immediately following each tag is the field's value,
162 // Skips a field value with the given tag. The input should start
211 static uint32 EncodeFloat(float value);
212 static float DecodeFloat(uint32 value);
213 static uint64 EncodeDouble(double value);
214 static double DecodeDouble(uint64 value);
245 static inline bool ReadPrimitive(input, CType* value) INL;
254 RepeatedField<CType>* value) IN
550 EncodeFloat(float value) argument
556 DecodeFloat(uint32 value) argument
562 EncodeDouble(double value) argument
568 DecodeDouble(uint64 value) argument
[all...]
/external/chromium/base/
H A Datomicops_unittest.cc16 // use a guard value to make sure the NoBarrier_AtomicIncrement doesn't go
87 AtomicType value = 0; local
88 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1);
89 EXPECT_EQ(1, value);
92 // Use test value that has non-zero bits in both halves, more for testing
96 value = k_test_val;
97 prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 5);
98 EXPECT_EQ(k_test_val, value);
101 value = k_test_val;
102 prev = base::subtle::NoBarrier_CompareAndSwap(&value, k_test_va
110 AtomicType value = 0; local
136 AtomicType value = -1 ^ test_val; local
170 AtomicType value; local
195 AtomicType value; local
[all...]
H A Dpickle.h17 // This class provides facilities for basic binary value packing and unpacking.
26 // what value types to read and in what order to read them as the Pickle does
90 bool WriteBool(bool value) { argument
91 return WriteInt(value ? 1 : 0);
93 bool WriteInt(int value) { argument
94 return WriteBytes(&value, sizeof(value));
96 bool WriteLong(long value) { argument
97 return WriteBytes(&value, sizeof(value));
99 WriteSize(size_t value) argument
102 WriteUInt16(uint16 value) argument
105 WriteUInt32(uint32 value) argument
108 WriteInt64(int64 value) argument
111 WriteUInt64(uint64 value) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.6.2-1.js59 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
68 // tests for boolean primitive, boolean object, Object object, a "MyObject" whose value is
69 // a boolean primitive and a boolean object, and "MyValuelessObject", where the value is
117 // tests for number primitive, number object, Object object, a "MyObject" whose value is
118 // a number primitive and a number object, and "MyValuelessObject", where the value is
178 function MyProtolessObject( value ) {
179 this.valueOf = new Function( "return this.value" );
181 this.value = value;
183 function MyValuelessObject(value) {
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
H A D12.6.3-4.js41 for the property name and W for the value.
44 GetPropertyName(V) for the property name and W for the value.
47 9. If Result(8) is a value completion, change C to be "normal completion
48 after value V" where V is the value carried by Result(8).
85 for ( value in o ) {
86 result += o[value];
90 "for ( value in o ) { result += o[value]",
94 var value variable
105 var value = 0; variable
[all...]
/external/stlport/test/eh/
H A DTestClass.h36 inline TestClass( int value );
41 inline int value() const;
47 return value() == rhs.value();
51 return value() < rhs.value();
57 inline void Init( int value );
77 inline void TestClass::Init( int value )
80 p = new int( value );
83 v = value;
124 inline int TestClass::value() const function in class:TestClass
[all...]
/external/nist-sip/java/gov/nist/core/
H A DNameValue.java38 * Generic structure for storing name-value pairs.
61 private Object value; field in class:NameValue
65 value = "";
83 value = v;
107 * A flag that indicates that doublequotes should be put around the value
108 * when encoded (for example name=value when value is doublequoted).
116 * Return true if the value is quoted in doublequotes.
127 return isFlagParameter ? "" : value; // never return null for flag
139 * Set the value membe
273 setValue(String value) argument
[all...]
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp105 QTest::addColumn<QScriptValue>("value");
183 QFETCH(QScriptValue, value);
185 value.isValid();
196 QFETCH(QScriptValue, value);
198 value.isBool();
209 QFETCH(QScriptValue, value);
211 value.isNumber();
222 QFETCH(QScriptValue, value);
224 value.isFunction();
235 QFETCH(QScriptValue, value);
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c31 static value llvm_ioerror_exn;
33 CAMLprim value llvm_register_core_exns(value IoError) {
39 static void llvm_raise(value Prototype, char *Message) {
53 static value alloc_variant(int tag, void *Value) {
54 value Iter = alloc_small(1, tag);
63 CAMLprim value llvm_##camlname##_begin(pty Mom) { \
71 CAMLprim value llvm_##camlname##_succ(cty Kid) { \
79 CAMLprim value llvm_##camlname##_end(pty Mom) { \
87 CAMLprim value llvm
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DUniform.java51 * Currently set value of the uniform.
53 protected Object value = null; field in class:Uniform
62 * Binding to a renderer value, or null if user-defined uniform
77 oc.write( ((Boolean)value).booleanValue(), "valueBoolean", false );
80 oc.write( ((Float)value).floatValue(), "valueFloat", 0);
83 oc.write( (FloatBuffer)value, "valueFloatArray", null);
86 oc.write( ((Integer)value).intValue(), "valueInt", 0);
89 oc.write( (Matrix3f)value, "valueMatrix3", null);
96 oc.write( (Matrix4f)value, "valueMatrix4", null);
99 oc.write( (Vector2f)value, "valueVector
261 setValue(VarType type, Object value) argument
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmetafunctions.cpp7 static const bool value = false; member in struct:is_same
12 static const bool value = true; member in struct:is_same
22 static const unsigned value = 1 + count<Tail...>::value; member in struct:Count::count
27 static const unsigned value = 1; member in struct:Count::count
30 int check1[count<int>::value == 1? 1 : -1];
31 int check2[count<float, double>::value == 2? 1 : -1];
32 int check3[count<char, signed char, unsigned char>::value == 3? 1 : -1];
40 static const unsigned value = 1 + count<Tail...>::value; member in struct:CountWithPackExpansion::count
45 static const unsigned value = 0; member in struct:CountWithPackExpansion::count
100 static const int value = First + sum<Rest...>::value; member in struct:Math::sum
105 static const int value = 0; member in struct:Math::sum
127 static const T value = i + add<T, V...>::value; member in struct:ListMath::add
132 static const T value = T(); member in struct:ListMath::add
138 static const T value = add<T, V...>::value; member in struct:ListMath::List::sum
242 static const unsigned value = sizeof...(Types); member in struct:FunctionTypes::Arity
247 static const unsigned value = sizeof...(Types); member in struct:FunctionTypes::Arity
[all...]
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue.cpp30 Constructs an invalid value.
38 Constructs a new QScriptValue with a boolean \a value.
40 QScriptValue::QScriptValue(bool value) argument
41 : d_ptr(new QScriptValuePrivate(value))
46 Constructs a new QScriptValue with a number \a value.
48 QScriptValue::QScriptValue(int value) argument
49 : d_ptr(new QScriptValuePrivate(value))
54 Constructs a new QScriptValue with a number \a value.
56 QScriptValue::QScriptValue(uint value) argument
57 : d_ptr(new QScriptValuePrivate(value))
64 QScriptValue(qsreal value) argument
72 QScriptValue(const QString& value) argument
80 QScriptValue(SpecialValue value) argument
88 QScriptValue(const char* value) argument
117 QScriptValue(QScriptEngine* engine, bool value) argument
131 QScriptValue(QScriptEngine* engine, int value) argument
145 QScriptValue(QScriptEngine* engine, uint value) argument
159 QScriptValue(QScriptEngine* engine, qsreal value) argument
173 QScriptValue(QScriptEngine* engine, const QString& value) argument
187 QScriptValue(QScriptEngine* engine, const char* value) argument
201 QScriptValue(QScriptEngine* engine, SpecialValue value) argument
744 setProperty(const QString& name, const QScriptValue& value, const PropertyFlags& flags) argument
761 setProperty(quint32 arrayIndex, const QScriptValue& value, const PropertyFlags& flags) argument
777 setProperty(const QScriptString& name, const QScriptValue& value, const PropertyFlags& flags) argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h95 // Each byte of the encoded value has the format:
156 // the input stream may be anywhere between the last value that was read
197 bool ReadLittleEndian32(uint32* value);
199 bool ReadLittleEndian64(uint64* value);
205 uint32* value);
208 uint64* value);
211 // Reading a 32-bit value is equivalent to reading a 64-bit one and casting
213 bool ReadVarint32(uint32* value);
215 bool ReadVarint64(uint64* value);
219 // the last tag value, whic
714 ReadVarint32(uint32* value) argument
724 ReadVarint64(uint64* value) argument
735 ReadLittleEndian32FromArray( const uint8* buffer, uint32* value) argument
751 ReadLittleEndian64FromArray( const uint8* buffer, uint64* value) argument
773 ReadLittleEndian32(uint32* value) argument
788 ReadLittleEndian64(uint64* value) argument
889 WriteVarint32ToArray(uint32 value, uint8* target) argument
899 WriteVarint32SignExtended(int32 value) argument
907 WriteVarint32SignExtendedToArray( int32 value, uint8* target) argument
916 WriteLittleEndian32ToArray(uint32 value, uint8* target) argument
930 WriteLittleEndian64ToArray(uint64 value, uint8* target) argument
951 WriteTag(uint32 value) argument
955 WriteTagToArray( uint32 value, uint8* target) argument
969 VarintSize32(uint32 value) argument
977 VarintSize32SignExtended(int32 value) argument
[all...]
/external/skia/include/core/
H A DSkMath.h36 /** Return the integer square root of value, with a bias of bitBias
38 int32_t SkSqrtBits(int32_t value, int bitBias);
44 /** Return the integer cube root of value, with a bias of bitBias
46 int32_t SkCubeRootBits(int32_t value, int bitBias);
65 /** Returns (value < 0 ? 0 : value) efficiently (i.e. no compares or branches)
67 static inline int SkClampPos(int value) { argument
68 return value & ~(value >> 31);
71 /** Given an integer and a positive (max) integer, return the value
77 SkClampMax(int value, int max) argument
94 SkClampUMax(unsigned value, unsigned max) argument
125 SkNextPow2(int value) argument
138 SkNextLog2(uint32_t value) argument
146 SkIsPow2(int value) argument
[all...]
H A DSkWriter32.h47 bool writeBool(bool value) { argument
48 this->writeInt(value);
49 return value;
52 void writeInt(int32_t value) { argument
53 *(int32_t*)this->reserve(sizeof(value)) = value;
56 void write8(int32_t value) { argument
57 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
60 void write16(int32_t value) { argument
64 write32(int32_t value) argument
68 writeScalar(SkScalar value) argument
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DAppleScriptController.m62 id value = nil;
67 value = [NSString stringWithFormat:@"\"%@\"", [aeDesc stringValue]];
73 value = [NSString stringWithFormat:@"%016llX", (unsigned long long)d];
77 value = [NSMutableString stringWithString:@"("];
81 [(NSMutableString*)value appendString:@", "];
83 [(NSMutableString*)value appendString:[obj description]];
85 [(NSMutableString*)value appendString:@")"];
97 value = [NSString stringWithFormat:@"'%s'", typeStr];
102 if (!value)
103 value
[all...]
/external/clang/test/SemaCXX/
H A Dcxx0x-nontrivial-union.cpp71 union { T value; }; member in union:optional::optional::__anon4689
75 optional(U &&...u) : has(true), value(forward<U>(u)...) {}
78 if (has) new (&value) T(o.value);
81 if (has) new (&value) T(move(o.value));
87 value = o.value;
89 value.~T();
91 new (&value)
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DAssemblerBuffer.h68 void putByteUnchecked(int value) argument
71 m_buffer[m_size] = value;
75 void putByte(int value) argument
79 putByteUnchecked(value);
82 void putShortUnchecked(int value) argument
85 *reinterpret_cast_ptr<short*>(&m_buffer[m_size]) = value;
89 void putShort(int value) argument
93 putShortUnchecked(value);
96 void putIntUnchecked(int value) argument
99 *reinterpret_cast_ptr<int*>(&m_buffer[m_size]) = value;
103 putInt64Unchecked(int64_t value) argument
110 putInt(int value) argument
118 putIntegral(IntegralType value) argument
126 putIntegralUnchecked(IntegralType value) argument
[all...]

Completed in 5559 milliseconds

<<11121314151617181920>>