/dalvik/libcore/xml/src/main/java/javax/xml/datatype/ |
XMLGregorianCalendar.java | 45 * the value constraints for the date and time fields defined in 64 * <th>Value Range</th> 72 * <td> <code>getYear()</code> is a value between -(10^9-1) to (10^9)-1 74 * {@link #getEon()} is high order year value in billion of years.<br/> 76 * A value of null indicates field is undefined.</br> 78 * will be a valid lexical value in a future version of XML Schema, 80 * the year field value is handled exactly as described 82 * validation does not allow for the year field to have a value of zero. 96 * The normative value constraint stated relative to month 97 * field's value is in <a href="http://www.w3.org/TR/xmlschema-2/#isoformats">W3C XML Schema 1.0 Part 2, Appendix D (…) [all...] |
/external/v8/src/ |
d8.js | 840 function formatHandleReference_(value) { 841 if (value.handle() >= 0) { 842 return '#' + value.handle() + '#'; 849 function formatObject_(value, include_properties) { 851 result += formatHandleReference_(value); 854 var ctor = value.constructorFunctionValue(); 857 var proto = value.protoObjectValue(); 860 result += value.propertyCount(); 864 for (var i = 0; i < value.propertyCount(); i++) { 866 result += value.propertyName(i) [all...] |
/external/apache-http/src/org/apache/http/conn/params/ |
ConnRouteParams.java | 56 * A special value indicating "no host". 64 * A special value indicating "no route". 78 * parameter value. 94 // value is explicitly unset 103 * parameter value. 105 * @param params the parameters in which to set the value 106 * @param proxy the value to set, may be <code>null</code>. 122 * parameter value. 138 // value is explicitly unset 147 * parameter value [all...] |
/external/bluetooth/glib/gio/ |
gfileattribute.c | 36 * @short_description: Key-Value Paired File Attributes 40 * File attributes in GIO consist of a list of key-value pairs. 44 * key-value pairs by namespaces for relevance. Keys can be retrived 73 * namespace. Currently, the only key in this namespace is "value", which contains 74 * the value of the current entity tag.</entry></row> 135 * <title>GFileAttributes Built-in Keys and Value Types</title> 137 * <row><entry>Enum Value</entry><entry>Namespace:Key</entry><entry>Value Type</entry></row> 155 * <row><entry>%G_FILE_ATTRIBUTE_ETAG_VALUE</entry><entry>etag::value</entry><entry>string</entry></row> 233 * Clears the value of @attr and sets its type to [all...] |
/external/neven/Embedded/common/src/b_BasicEm/ |
Phase.h | 24 * This data type represents a phase or angle value and takes advantage 25 * of the circular value range when doing arithmetig with an integer 27 * The phase value range lies within [ - PI, PI [; 28 * The corresponding integer value range is [ MININT, MAXINT + 1 [. 38 /** 8 bit phase value */ 41 /** 16 bit phase value */ 44 /** 32 bit phase value */ 49 /** value PI in a phase16 expression */ 52 /** value PI/2 in a phase16 expression */ 55 /** value PI/4 in a phase16 expression * [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/dsp/ |
SDL_dspaudio.c | 167 int value; local 200 if ( ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &value) < 0 ) { 216 if ( value & AFMT_U8 ) { 221 if ( value & AFMT_S16_LE ) { 226 if ( value & AFMT_S16_BE ) { 236 if ( value & AFMT_S8 ) { 241 if ( value & AFMT_U16_LE ) { 246 if ( value & AFMT_U16_BE ) { 267 value = format; 268 if ( (ioctl(audio_fd, SNDCTL_DSP_SETFMT, &value) < 0) | [all...] |
/external/srec/srec/Recognizer/include/ |
SR_Recognizer.h | 43 * Reserved value. 102 * Reserved value. 195 * @param value [out] Used to hold the parameter value 196 * @param len [in/out] Length of value argument. If the return code is ESR_BUFFER_OVERFLOW, 201 ESR_ReturnCode(*getParameter)(struct SR_Recognizer_t* self, const LCHAR* key, LCHAR* value, size_t* len); 207 * @param value [out] Used to hold the parameter value 211 ESR_ReturnCode(*getSize_tParameter)(struct SR_Recognizer_t* self, const LCHAR* key, size_t* value); 217 * @param value [out] Used to hold the parameter valu [all...] |
/external/srec/srec/Recognizer/src/ |
Recognizer.c | 94 ESR_ReturnCode SR_RecognizerGetParameter(SR_Recognizer* self, const LCHAR* name, LCHAR* value, size_t* len) 101 return self->getParameter(self, name, value, len); 104 ESR_ReturnCode SR_RecognizerGetSize_tParameter(SR_Recognizer* self, const LCHAR* name, size_t* value) 111 return self->getSize_tParameter(self, name, value); 114 ESR_ReturnCode SR_RecognizerGetBoolParameter(SR_Recognizer* self, const LCHAR* name, ESR_BOOL* value) 121 return self->getBoolParameter(self, name, value); 124 ESR_ReturnCode SR_RecognizerSetParameter(SR_Recognizer* self, const LCHAR* name, LCHAR* value) 131 return self->setParameter(self, name, value); 134 ESR_ReturnCode SR_RecognizerSetSize_tParameter(SR_Recognizer* self, const LCHAR* name, size_t value) 142 return SR_Recognizer_Change_Sample_Rate ( self, value ); [all...] |
/external/webkit/WebCore/bindings/v8/ |
V8Collection.h | 44 template<class T> static v8::Handle<v8::Value> getV8Object(T* implementation) 47 return v8::Handle<v8::Value>(); 56 template<class T> static v8::Handle<v8::Value> getV8Object(PassRefPtr<T> implementation) 62 template<class Collection, class ItemType> static v8::Handle<v8::Value> getNamedPropertyOfCollection(v8::Local<v8::String> name, v8::Local<v8::Object> object) 73 template<class Collection, class ItemType> static v8::Handle<v8::Value> collectionNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 75 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); local 77 if (!value.IsEmpty()) 78 return value; 88 template<class Collection, class ItemType> static v8::Handle<v8::Value> getIndexedPropertyOfCollection(uint32_t index, v8::Local<v8::Object> object [all...] |
ScriptFunctionCall.cpp | 127 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name)); local 133 ASSERT(value->IsFunction()); 135 v8::Local<v8::Function> function(v8::Function::Cast(*value)); 136 OwnArrayPtr<v8::Handle<v8::Value> > args(new v8::Handle<v8::Value>[m_arguments.size()]); 140 v8::Local<v8::Value> result = function->Call(thisObject, m_arguments.size(), args.get()); 160 v8::Local<v8::Value> value = thisObject->Get(v8String(m_name)); local 166 ASSERT(value->IsFunction()) [all...] |
V8LazyEventListener.cpp | 55 v8::Local<v8::Value> V8LazyEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event) 59 return v8::Local<v8::Value>(); 64 return v8::Local<v8::Value>(); 66 v8::Handle<v8::Value> parameters[1] = { jsEvent }; 71 return v8::Local<v8::Value>(); 74 static v8::Handle<v8::Value> V8LazyEventListenerToString(const v8::Arguments& args) 103 // chrome/fast/forms/selected-index-value.html 119 v8::Local<v8::Value> value = proxy->runScript(script, false) local [all...] |
/external/wpa_supplicant/ |
eap.h | 45 * EAP state machine reads and writes this value. 59 * EAP state machine writes this value. 87 * EAP state machines reads this value. 94 * EAP state machines reads this value. 101 * EAP state machines reads this value. 120 * second until the value reaches zero. This is used in the same way as 122 * value. 145 * Returns: Value of the EAPOL variable 153 * @value: Value for the EAPOL variabl [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
eap.h | 45 * EAP state machine reads and writes this value. 59 * EAP state machine writes this value. 87 * EAP state machines reads this value. 94 * EAP state machines reads this value. 101 * EAP state machines reads this value. 120 * second until the value reaches zero. This is used in the same way as 122 * value. 146 * Returns: Value of the EAPOL variable 154 * @value: Value for the EAPOL variabl [all...] |
/frameworks/base/awt/javax/imageio/metadata/ |
IIOMetadataFormat.java | 62 * The maximum value for the child policy. 167 * Gets the default value of the specified attribute of the specified 174 * @return the attribute's default value. 225 * Gets the maximum value allowed for the attribute. 231 * @return the maximum value allowed for the attribute. 236 * Gets the minimum value allowed for the attribute. 242 * @return the minimum value allowed for the attribute. 256 * Gets the attribute value type. 262 * @return the attribute value type. 354 * Gets the object default value for the element [all...] |
/frameworks/base/awt/javax/imageio/stream/ |
ImageOutputStream.java | 39 * the integer value, of which the 8 lowest bits will be written. 71 * Writes the specified boolean value to the stream, 1 if it is true, 0 if 75 * the boolean value to be written. 82 * Writes the 8 lowest bits of the specified integer value to the stream. 85 * the specified integer value. 92 * Writes a short value to the output stream. 95 * the short value to be written. 102 * Writes the 16 lowest bits of the specified integer value to the stream. 105 * the specified integer value. 112 * Writes an integer value to the output stream [all...] |
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ |
Element.java | 22 * <code>Attr</code> object by name or an attribute value by name. In XML, 23 * where an attribute value may contain entity references, an 25 * fairly complex sub-tree representing the attribute value. On the other 27 * directly access an attribute value can safely be used as a convenience. 39 * <code>tagName</code> has the value 48 * Retrieves an attribute value by name. 50 * @return The <code>Attr</code> value as a string, or the empty string 51 * if that attribute does not have a specified or default value. 57 * in the element, its value is changed to be that of the value [all...] |
/dalvik/vm/reflect/ |
Reflect.h | 66 * Convert a primitive value, performing a widening conversion if necessary. 81 * not primitive, this just returns "value" cast to an object. 83 DataObject* dvmWrapPrimitive(JValue value, ClassObject* returnType); 87 * returns "value" cast into a JValue. 89 bool dvmUnwrapPrimitive(Object* value, ClassObject* returnType, 139 * Find the default value for an annotation member. 192 JValue value; member in struct:AnnotationValue 225 * Returns the next decoded value from the iterator, advancing its 232 * @param value pointer to store decoded value int [all...] |
/external/easymock/src/org/easymock/ |
IExpectationSetters.java | 28 * Sets a return value that will be returned for the expected invocation.
30 * @param value
31 * the value to return.
34 IExpectationSetters<T> andReturn(T value);
47 * invocation (either return a value, or throw an exception).
59 * (either return a value, or throw an exception).
63 * @return the value returned by the delegated call.
68 * Sets a stub return value that will be returned for the expected
71 * @param value
72 * the value to return. [all...] |
/external/qemu/android/ |
boot-properties.c | 42 const char* value, int valuelen ) 55 memcpy( p, value, valuelen ); 68 const char* value, int valuelen ) 98 namelen, name, valuelen, value); 101 prop = boot_property_alloc(name, namelen, value, valuelen); 111 boot_property_add( const char* name, const char* value ) 114 int valuelen = strlen(value); 116 return boot_property_add2(name, namelen, value, valuelen); 183 const char* value; local 194 value = q+1 [all...] |
/external/srec/srec/Semproc/include/ |
SR_SemanticResult.h | 34 * Returns number of [key, value] pairs in the current results. 51 * Returns copy of semantic value. 55 * @param value [out] The buffer used to hold the resulting value 56 * @param len [in/out] Length of value argument. If the return code is ESR_BUFFER_OVERFLOW, 59 ESR_ReturnCode(*getValue)(struct SR_SemanticResult_t* self, const LCHAR* key, LCHAR* value, size_t* len); 77 * Returns number of [key, value] pairs in the current results. 95 * Returns value component of [key, value] pair. 99 * @param value [out] The buffer used to hold the resulting valu [all...] |
/external/v8/test/mjsunit/ |
mjsunit.js | 126 function assertTrue(value, name_opt) { 127 assertEquals(true, value, name_opt); 131 function assertFalse(value, name_opt) { 132 assertEquals(false, value, name_opt); 136 function assertNaN(value, name_opt) { 137 if (!isNaN(value)) { 138 fail("NaN", value, name_opt); 143 function assertNull(value, name_opt) { 144 if (value !== null) { 145 fail("null", value, name_opt) [all...] |
/external/webkit/JavaScriptCore/runtime/ |
WeakGCMap.h | 41 * A value enters the WeakGCMap marked. (Guaranteed by set().) 42 * A value that becomes unmarked leaves the WeakGCMap before being recycled. (Guaranteed by the value's destructor removing it from the WeakGCMap.) 43 * A value that becomes unmarked leaves the WeakGCMap before becoming marked again. (Guaranteed by all destructors running before the mark phase begins.) 57 // These unchecked functions provide access to a value even if the value's 97 pair<typename HashMap<KeyType, MappedType>::iterator, bool> WeakGCMap<KeyType, MappedType>::set(const KeyType& key, const MappedType& value) 99 Heap::markCell(value); // If value is newly allocated, it's not marked, so mark it now. 100 pair<iterator, bool> result = m_map.add(key, value); [all...] |
/external/webkit/WebCore/bindings/js/ |
JSGeolocationCustom.cpp | 44 static PassRefPtr<PositionCallback> createPositionCallback(ExecState* exec, JSDOMGlobalObject* globalObject, JSValue value) 47 if (!value.inherits(&InternalFunction::info)) { 52 JSObject* object = asObject(value); 56 static PassRefPtr<PositionErrorCallback> createPositionErrorCallback(ExecState* exec, JSDOMGlobalObject* globalObject, JSValue value) 59 if (value.isUndefinedOrNull()) 63 if (!value.inherits(&InternalFunction::info)) { 68 JSObject* object = asObject(value); 72 static PassRefPtr<PositionOptions> createPositionOptions(ExecState* exec, JSValue value) 78 if (value.isUndefinedOrNull()) { 84 JSObject* object = value.toObject(exec) [all...] |
/external/webkit/WebCore/bridge/c/ |
c_utility.cpp | 68 // Variant value must be released with NPReleaseVariantValue() 69 void convertValueToNPVariant(ExecState* exec, JSValue value, NPVariant* result) 75 if (value.isString()) { 76 UString ustring = value.toString(exec); 80 } else if (value.isNumber()) { 81 DOUBLE_TO_NPVARIANT(value.toNumber(exec), *result); 82 } else if (value.isBoolean()) { 83 BOOLEAN_TO_NPVARIANT(value.toBoolean(exec), *result); 84 } else if (value.isNull()) { 86 } else if (value.isObject()) [all...] |
/external/webkit/WebCore/html/ |
HTMLTableElement.cpp | 325 addCSSLength(attr, CSSPropertyWidth, attr->value()); 327 addCSSLength(attr, CSSPropertyHeight, attr->value()); 341 border = attr->value().toInt(); 346 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value()); 350 addCSSColor(attr, CSSPropertyBorderColor, attr->value()); 354 String url = deprecatedParseURL(attr->value()); 358 // Cache the value of "frame" so that the table can examine it later. 369 if (equalIgnoringCase(attr->value(), "void")) 371 else if (equalIgnoringCase(attr->value(), "above")) { 374 } else if (equalIgnoringCase(attr->value(), "below")) [all...] |