HomeSort by relevance Sort by last modified time
    Searched full:value (Results 1676 - 1700 of 15709) sorted by null

<<61626364656667686970>>

  /external/e2fsprogs/lib/uuid/
uuid_is_null.3.in 34 uuid_is_null \- compare the value of the UUID to the NULL value
44 function compares the value of the supplied UUID variable
46 to the NULL value. If the value is equal to the NULL UUID, 1 is returned,
  /external/guava/src/com/google/common/collect/
LinkedListMultimap.java 75 * {@link #values} iterate across the key-value mappings in the order they were
99 * Order is maintained using a linked list containing all key-value pairs. In
107 V value; field in class:LinkedListMultimap.Node
113 Node(@Nullable K key, @Nullable V value) {
115 this.value = value;
119 return key + "=" + value;
178 * Adds a new node for the specified key-value pair before the specified
184 @Nullable K key, @Nullable V value, @Nullable Node<K, V> nextSibling) {
185 Node<K, V> node = new Node<K, V>(key, value);
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
ValueFuture.java 20 * A simple ListenableFuture that holds a value or an exception.
41 * Sets the value of this future. This method will return {@code true} if
42 * the value was successfully set, or {@code false} if the future has already
45 * @param newValue the value the future should hold.
46 * @return true if the value was successfully set.
  /external/icu4c/i18n/
rbt_data.cpp 48 UnicodeString* value = local
49 new UnicodeString(*(const UnicodeString*)e->value.pointer);
50 // Exit out if value could not be created.
51 if (value == NULL) {
54 variableNames.put(*(UnicodeString*)e->key.pointer, value, status);
  /external/icu4c/tools/ctestfw/unicode/
udbgutil.h 34 UDBG_INVALID_ENUM = -1 /** Invalid enum value **/
63 * For consistency checking, returns the expected enum ordinal value for the given index value.
71 * Locate the specified field value by name.
74 * @return should be a field value or -1 if not found.
  /external/kernel-headers/original/asm-x86/
io_32.h 277 static inline void out##bwl##_quad(unsigned type value, int port, int quad) { \
279 write##bwl(value, XQUAD_PORT_ADDR(port, quad)); \
281 out##bwl##_local(value, port); \
283 static inline void out##bwl(unsigned type value, int port) { \
284 out##bwl##_quad(value, port, 0); \
297 static inline void out##bwl(unsigned type value, int port) { \
298 out##bwl##_local(value, port); \
307 static inline void out##bwl##_local(unsigned type value, int port) { \
308 __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); \
311 unsigned type value; \
    [all...]
  /external/libffi/man/
ffi_call.3 23 array. The return value from
29 arguments to and return value from
38 return value sizes, the
43 the return value.
60 // Because the return value from foo() is smaller than sizeof(long), it
  /external/libffi/src/x86/
win32.S 72 # If the return value pointer is NULL, assume no return value.
76 # Even if there is no space for the return value, we are
87 # Load %ecx with the pointer to storage for the return value
95 # Load %ecx with the pointer to storage for the return value
103 # Load %ecx with the pointer to storage for the return value
111 # Load %ecx with the pointer to storage for the return value
119 # Load %ecx with the pointer to storage for the return value
127 # Load %ecx with the pointer to storage for the return value
135 # Load %ecx with the pointer to storage for the return value
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/enc/src/
residual.cpp 159 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
296 value = level[i];
297 absvalue = (value >= 0) ? value : -value;
301 if (value > 0) value--;
302 else value++;
306 if (value >= 0)
313 value = -value
    [all...]
  /external/opencore/nodes/pvmp4ffcomposernode/src/
pvmp4ffcn_port.cpp 279 parameters[0].value.pChar_value = (char*)PVMF_MIME_AMR_IETF;
280 parameters[1].value.pChar_value = (char*)PVMF_MIME_MPEG4_AUDIO;
281 parameters[2].value.pChar_value = (char*)PVMF_MIME_M4V;
282 parameters[3].value.pChar_value = (char*)PVMF_MIME_H2631998;
283 parameters[4].value.pChar_value = (char*)PVMF_MIME_H2632000;
284 parameters[5].value.pChar_value = (char*)PVMF_MIME_H264_VIDEO_MP4;
285 parameters[6].value.pChar_value = (char*)PVMF_MIME_3GPP_TIMEDTEXT;
286 parameters[7].value.pChar_value = (char*)PVMF_MIME_AMRWB_IETF;
299 parameters[0].value.pChar_value = (char*)iFormat.getMIMEStrPtr();
367 oscl_memcpy((void*)memfrag_sps->ptr, (const void*)parameters->value.key_specific_value, memfrag_sps->len)
    [all...]
  /external/opencore/oscl/oscl/osclbase/src/
oscl_string_utils.cpp 32 OSCL_EXPORT_REF bool PV_atoi(const char *buf, const char new_format, uint32& value)
34 return PV_atoi(buf, new_format, oscl_strlen(buf), value);
38 OSCL_EXPORT_REF bool PV_atoi(const char *buf, const char new_format, int length, uint32& value)
42 value = 0;
68 old = value;
69 value = value * 16 + temp;
70 if (old > value)
86 old = value;
87 value = value * 10 + temp
    [all...]
  /external/openssl/crypto/ecdsa/
ecdsa.h 116 * computes the ECDSA signature of the given hash value using
118 * \param dgst pointer to the hash value
119 * \param dgst_len length of the hash value
126 * computes ECDSA signature of a given hash value using the supplied
128 * \param dgst pointer to the hash value to sign
129 * \param dgstlen length of the hash value
131 * \param rp optional pointer to the pre-computed rp value (see
141 * signature of the supplied hash value using the supplied public key.
142 * \param dgst pointer to the hash value
143 * \param dgst_len length of the hash value
    [all...]
  /external/openssl/include/openssl/
ecdsa.h 116 * computes the ECDSA signature of the given hash value using
118 * \param dgst pointer to the hash value
119 * \param dgst_len length of the hash value
126 * computes ECDSA signature of a given hash value using the supplied
128 * \param dgst pointer to the hash value to sign
129 * \param dgstlen length of the hash value
131 * \param rp optional pointer to the pre-computed rp value (see
141 * signature of the supplied hash value using the supplied public key.
142 * \param dgst pointer to the hash value
143 * \param dgst_len length of the hash value
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_syssem.c 124 Uint32 value; local
126 value = 0;
129 value = sem->Sem.ssppc_SS.ss_NestCount;
131 value = sem->Sem.ss_NestCount;
134 return value;
  /external/skia/src/views/
SkScrollBarView.cpp 62 int32_t value; local
63 if (dom.findS32(node, "total", &value))
64 this->setTotal(value);
65 if (dom.findS32(node, "shown", &value))
66 this->setShown(value);
  /external/v8/test/mjsunit/
mirror-number.js 54 assertEquals(n, fromJSON.value);
57 assertTrue(typeof fromJSON.value == 'string');
59 assertEquals('Infinity', fromJSON.value);
61 assertEquals('-Infinity', fromJSON.value);
63 assertEquals('NaN', fromJSON.value);
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine_p.h 48 inline JSValueRef makeJSValue(QScriptValue::SpecialValue value) const;
81 JSValueRef QScriptEnginePrivate::makeJSValue(bool value) const
83 return JSValueMakeBoolean(m_context, value);
86 JSValueRef QScriptEnginePrivate::makeJSValue(QScriptValue::SpecialValue value) const
88 if (value == QScriptValue::NullValue)
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.6.1-1.js 80 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
90 // tests for boolean primitive, boolean object, Object object, a "MyObject" whose value is
91 // a boolean primitive and a boolean object, and "MyValuelessObject", where the value is
134 // tests for number primitive, number object, Object object, a "MyObject" whose value is
135 // a number primitive and a number object, and "MyValuelessObject", where the value is
193 function MyProtolessObject( value ) {
194 this.valueOf = new Function( "return this.value" );
196 this.value = value;
199 function MyValuelessObject(value) {
    [all...]
11.6.1-2.js 80 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
89 // tests for boolean primitive, boolean object, Object object, a "MyObject" whose value is
90 // a boolean primitive and a boolean object, and "MyValuelessObject", where the value is
138 // tests for number primitive, number object, Object object, a "MyObject" whose value is
139 // a number primitive and a number object, and "MyValuelessObject", where the value is
187 function MyProtolessObject( value ) {
188 this.valueOf = new Function( "return this.value" );
190 this.value = value;
192 function MyValuelessObject(value) {
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
statement-002.js 21 for the property name and W for the value.
24 GetPropertyName(V) for the property name and W for the value.
27 9. If Result(8) is a value completion, change C to be "normal completion
28 after value V" where V is the value carried by Result(8).
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
replace-001.js 19 * result of converting the this value to a string. String is searched
33 * The result is a string value derived from the original input by
34 * replacing each matched substring with the corresponding return value
38 * to a string. The result is a string value derived from the original
53 * require that its this value be a string object. Therefore, it can be
  /external/webkit/WebCore/bindings/v8/custom/
V8CustomVoidCallback.h 45 static PassRefPtr<V8CustomVoidCallback> create(v8::Local<v8::Value> value, Frame* frame)
47 ASSERT(value->IsObject());
48 return adoptRef(new V8CustomVoidCallback(value->ToObject(), frame));
62 bool invokeCallback(v8::Persistent<v8::Object> callback, int argc, v8::Handle<v8::Value> argv[], bool& callbackReturnValue);
  /external/webkit/WebCore/html/
HTMLKeygenElement.cpp 67 m_challenge = attr->value();
69 m_keyType = attr->value();
80 String value = signedPublicKeyAndChallengeString(selectedIndex(), m_challenge, document()->baseURL());
81 if (value.isNull())
83 encoded_values.appendData(name(), value.utf8());
  /external/webkit/WebCore/manual-tests/
window-open-features-parsing.html 4 - ,=\twidth: reads as key:width value:0200px|0, which, after strtol/toInt, gives you 200
5 - =height: reads as key:height value:"", which means yes, which means 1, but the minimum size is 100, so 100
7 - left: reads as key:left value:no, which means 0, which means aligned to the left side of the screen
8 - \ntoolBAR: reads as key:toolbar value:yes
9 - \rstatus: reads as key:status value:"", which means yes
  /external/webkit/WebCore/svg/
SVGFEOffsetElement.cpp 43 const String& value = attr->value(); local
45 setDxBaseValue(value.toFloat());
47 setDyBaseValue(value.toFloat());
49 setIn1BaseValue(value);

Completed in 1420 milliseconds

<<61626364656667686970>>