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

<<11121314151617181920>>

  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
OtherName.java 44 * value [0] EXPLICIT ANY DEFINED BY type-id
49 // the value of typeID field of the structure
51 // the value of value field of the structure
52 private byte[] value; field in class:OtherName
59 * @param value: byte[]
61 public OtherName(String typeID, byte[] value) {
62 this(typeID, value, null);
68 // @param value: byte[]
71 private OtherName(String typeID, byte[] value, byte[] encoding)
    [all...]
  /external/skia/include/core/
SkUtils.h 24 /** Similar to memset(), but it assigns a 16bit value into the buffer.
25 @param buffer The memory to have value copied into it
26 @param value The 16bit value to be copied into buffer
27 @param count The number of times value should be copied into the buffer.
29 void sk_memset16_portable(uint16_t dst[], uint16_t value, int count);
30 typedef void (*SkMemset16Proc)(uint16_t dst[], uint16_t value, int count);
33 /** Similar to memset(), but it assigns a 32bit value into the buffer.
34 @param buffer The memory to have value copied into it
35 @param value The 32bit value to be copied into buffe
    [all...]
SkEndian.h 39 inline uint16_t SkEndianSwap16(U16CPU value)
41 SkASSERT(value == (uint16_t)value);
42 return (uint16_t)((value >> 8) | (value << 8));
46 low two bytes of each value in the array.
59 /** Reverse all 4 bytes in a 32bit value.
62 inline uint32_t SkEndianSwap32(uint32_t value)
64 return ((value & 0xFF) << 24) |
65 ((value & 0xFF00) << 8)
    [all...]
  /external/stlport/test/eh/
TestClass.h 36 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/zlib/as400/
compile.clp 14 VALUE('ZLIB') /* Source library. */
16 VALUE('SOURCES') /* Source member file. */
18 VALUE('TOOLS') /* Control member file. */
21 VALUE('ZLIB') /* Module library. */
24 VALUE('LGPL') /* Service program library. */
27 VALUE('OPTIMIZE(40)') /* Compile options. */
32 DCL VAR(&CMDLEN) TYPE(*DEC) LEN(15 5) VALUE(300) /* Command length. */
38 CHGVAR VAR(&CMD) VALUE('CRTCMOD MODULE(' *TCAT &MODLIB *TCAT +
44 CHGVAR VAR(&CMD) VALUE('CRTCMOD MODULE(' *TCAT &MODLIB *TCAT +
50 CHGVAR VAR(&CMD) VALUE('CRTCMOD MODULE(' *TCAT &MODLIB *TCAT
    [all...]
  /external/easymock/src/org/easymock/internal/
Result.java 27 private final IAnswer<?> value; field in class:Result
31 private Result(IAnswer<?> value, boolean shouldFillInStackTrace) {
32 this.value = value;
53 public static Result createReturnResult(final Object value) {
59 return value;
64 return "Answer returning " + value;
70 public static Result createDelegatingResult(final Object value) {
78 return invocation.getMethod().invoke(value,
82 + String.valueOf(value)
    [all...]
  /external/srec/srec/EventLog/include/
SR_EventLog.h 57 #define SR_EventLogToken_BASIC(log, loglevel, tokenName, value) \
59 log->token(log, tokenName, value) : ESR_SUCCESS ) \
64 #define SR_EventLogTokenInt_BASIC(log, loglevel, tokenName, value) \
66 log->tokenInt(log, tokenName, value) : ESR_SUCCESS ) \
71 #define SR_EventLogTokenUint16_t_BASIC(log, loglevel, tokenName, value) \
73 log->tokenUint16_t(log, tokenName, value) : ESR_SUCCESS ) \
78 #define SR_EventLogTokenSize_t_BASIC(log, loglevel, tokenName, value) \
80 log->tokenSize_t(log, tokenName, value) : ESR_SUCCESS ) \
85 #define SR_EventLogTokenBool_BASIC(log, loglevel, tokenName, value) \
87 log->tokenBool(log, tokenName, value) : ESR_SUCCESS )
    [all...]
  /external/webkit/WebCore/manual-tests/inspector/
console-log-formatting.html 29 function testAllSpecifiers(value, description) {
31 test("'Format " + description + " as " + specifiers[specifier] + ": %" + specifier + "', " + value + "");
36 { value: "window.noSuchVariable", description: "undefined" },
37 { value: "s", description: "string" },
38 { value: "i", description: "positive integer" },
39 { value: "ni", description: "negative integer" },
40 { value: "f", description: "float" },
41 { value: "o", description: "object" },
42 { value: "document.body", description: "body" },
43 { value: "/test/", description: "RegExp" }
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java 98 ContentValues value = new ContentValues(); local
99 value.put(PeopleColumns.NAME, insertPeopleName);
100 value.put(PeopleColumns.NOTES, insertPeopleNotes);
101 value.put(PeopleColumns.LAST_TIME_CONTACTED, 0);
102 value.put(PeopleColumns.CUSTOM_RINGTONE, (String) null);
103 value.put(PeopleColumns.SEND_TO_VOICEMAIL, 1);
105 Uri uri = mProvider.insert(People.CONTENT_URI, value);
122 value.clear();
124 value.put(PeopleColumns.NAME, updatePeopleName);
125 value.put(PeopleColumns.NOTES, updatePeopleNotes)
184 ContentValues value = new ContentValues(); local
268 ContentValues value = new ContentValues(); local
354 ContentValues value = new ContentValues(); local
436 ContentValues value = new ContentValues(); local
526 ContentValues value = new ContentValues(); local
616 ContentValues value = new ContentValues(); local
702 ContentValues value = new ContentValues(); local
817 ContentValues value = new ContentValues(); local
885 ContentValues value = new ContentValues(); local
    [all...]
SettingsTest.java 35 Settings.System._ID, Settings.System.NAME, Settings.System.VALUE
54 ContentValues value = new ContentValues(); local
55 value.put(Settings.System.NAME, insertName);
56 value.put(Settings.System.VALUE, insertValue);
58 provider.insert(Settings.System.CONTENT_URI, value);
70 value.clear();
71 value.put(Settings.System.NAME, updateName);
72 value.put(Settings.System.VALUE, updateValue)
122 ContentValues value = new ContentValues(); local
184 ContentValues value = new ContentValues(); local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaMetadataTest.java 203 String value = null; local
214 //METADATA_KEY_CD_TRACK_NUMBER should return the TCRK value
215 value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_CD_TRACK_NUMBER);
216 Log.v(TAG, "CD_TRACK_NUMBER : " + value);
217 assertEquals(TAG, meta_data_file[fileIndex][meta.CD_TRACK.ordinal()], value);
219 value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM);
220 Log.v(TAG, "Album : "+ value);
221 assertEquals(TAG, meta_data_file[fileIndex][meta.ALBUM.ordinal()], value);
223 value = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST);
224 Log.v(TAG, "Artist : "+ value);
    [all...]
  /system/core/libcutils/
properties.c 59 int property_set(const char *key, const char *value)
65 if(value == 0) value = "";
68 if(strlen(value) >= PROP_VALUE_MAX) return -1;
72 strcpy((char*) msg.value, value);
77 int property_get(const char *key, char *value, const char *default_value)
81 len = __system_property_get(key, value);
88 memcpy(value, default_value, len + 1);
93 int property_list(void (*propfn)(const char *key, const char *value, void *cookie),
97 char value[PROP_VALUE_MAX]; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_string.c 36 long value = 0; local
57 value *= radix;
58 value += v;
62 if ( negative && value ) {
63 *valuep = -value;
65 *valuep = value;
76 unsigned long value = 0; local
92 value *= radix;
93 value += v;
97 *valuep = value;
107 uintptr_t value = 0; local
139 Sint64 value = 0; local
179 Uint64 value = 0; local
212 double value = 0.0; local
247 Uint32 value = 0; local
260 Uint8 value = (Uint8)c; local
512 long value; local
534 unsigned long value; local
610 Sint64 value; local
632 Uint64 value; local
656 double value; local
835 Sint64 value; local
846 long value; local
888 Uint64 value; local
899 unsigned long value; local
929 uintptr_t value; local
941 double value; local
1078 unsigned long value; local
    [all...]
  /external/srec/tools/grxmlcompile/
testhashmap.cpp 43 int value; local
48 myHash.getValue(1, &value);
49 std::cout << "Index 1 has value= " << value <<std::endl;
51 std::cout << "value " << value << " has index " << i <<std::endl;
55 myHash.getNumericIndexByValue(value, &j);
56 std::cout << "value " << value << " has numeric index " << j <<std::endl;
68 string value = "hello" local
    [all...]
  /frameworks/base/media/libstagefright/
MetaData.cpp 53 bool MetaData::setCString(uint32_t key, const char *value) {
54 return setData(key, TYPE_C_STRING, value, strlen(value) + 1);
57 bool MetaData::setInt32(uint32_t key, int32_t value) {
58 return setData(key, TYPE_INT32, &value, sizeof(value));
61 bool MetaData::setInt64(uint32_t key, int64_t value) {
62 return setData(key, TYPE_INT64, &value, sizeof(value));
65 bool MetaData::setFloat(uint32_t key, float value) {
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IntList.java 44 * @param value the sole value in the list
46 public static IntList makeImmutable(int value) {
49 result.add(value);
58 * @param value0 the first value in the list
59 * @param value1 the second value in the list
166 * Gets the indicated value.
169 * @return the indicated element's value
185 * Sets the value at the given index.
188 * @param value value to stor
    [all...]
IntSet.java 27 * @param value int to add
29 void add(int value);
34 * @param value int to remove
36 void remove(int value);
39 * Checks to see if a value is in the set
41 * @param value int to check
44 boolean has(int value);
  /external/webkit/JavaScriptCore/qt/api/
qscriptvalue.cpp 30 Constructs an invalid value.
38 Constructs a new QScriptValue with a boolean \a value.
40 QScriptValue::QScriptValue(bool value)
41 : d_ptr(new QScriptValuePrivate(value))
46 Constructs a new QScriptValue with a number \a value.
48 QScriptValue::QScriptValue(int value)
49 : d_ptr(new QScriptValuePrivate(value))
54 Constructs a new QScriptValue with a number \a value.
56 QScriptValue::QScriptValue(uint value)
57 : d_ptr(new QScriptValuePrivate(value))
    [all...]
  /external/webkit/SunSpider/hosted/
json2.js 22 JSON.stringify(value, replacer, space)
23 value any JavaScript value, usually an object or array.
36 This method produces a JSON text from a JavaScript value.
38 When an object value is found, if the object contains a toJSON
41 value represented by the name/value pair that should be serialized,
43 will be passed the key associated with the value, and this will be
44 bound to the value
63 key and value of each member, with this bound to the containin
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-304828.js 45 var value; variable
49 value = '123';
53 actual = Array.prototype.join.call(value);
62 value = '123';
66 actual = Array.prototype.reverse.call(value) + '';
75 value = 'cba';
79 actual = Array.prototype.sort.call(value) + '';
88 value = 'abc';
92 actual = Array.prototype.push.call(value, 'd', 'e', 'f');
99 reportCompare('abc', value, summary + ': push')
    [all...]
  /external/bluetooth/glib/gio/
gfileinfo.c 71 GFileAttributeValue value; member in struct:__anon1194
233 _g_file_attribute_value_clear (&attrs[i].value);
290 _g_file_attribute_value_clear (&dest[i].value);
301 dest[i].value.type = G_FILE_ATTRIBUTE_TYPE_INVALID;
302 _g_file_attribute_value_set (&dest[i].value, &source[i].value);
363 _g_file_attribute_value_clear (&attr->value);
404 attrs[i].value.status = G_FILE_ATTRIBUTE_STATUS_UNSET;
449 return &attrs[i].value;
478 GFileAttributeValue *value; local
539 GFileAttributeValue *value; local
601 GFileAttributeValue *value; local
697 GFileAttributeValue *value; local
721 GFileAttributeValue *value; local
745 GFileAttributeValue *value; local
768 GFileAttributeValue *value; local
792 GFileAttributeValue *value; local
816 GFileAttributeValue *value; local
840 GFileAttributeValue *value; local
864 GFileAttributeValue *value; local
927 GFileAttributeValue *value; local
952 GFileAttributeValue *value; local
977 GFileAttributeValue *value; local
1002 GFileAttributeValue *value; local
1027 GFileAttributeValue *value; local
1051 GFileAttributeValue *value; local
1076 GFileAttributeValue *value; local
1100 GFileAttributeValue *value; local
1125 GFileAttributeValue *value; local
1149 GFileAttributeValue *value; local
1172 GFileAttributeValue *value; local
1195 GFileAttributeValue *value; local
1218 GFileAttributeValue *value; local
1241 GFileAttributeValue *value; local
1264 GFileAttributeValue *value; local
1287 GFileAttributeValue *value; local
1310 GFileAttributeValue *value; local
1337 GFileAttributeValue *value; local
1360 GFileAttributeValue *value; local
1384 GFileAttributeValue *value; local
1413 GFileAttributeValue *value; local
1437 GFileAttributeValue *value; local
1461 GFileAttributeValue *value; local
1486 GFileAttributeValue *value; local
1511 GFileAttributeValue *value; local
1536 GFileAttributeValue *value; local
1561 GFileAttributeValue *value; local
1587 GFileAttributeValue *value; local
1613 GFileAttributeValue *value; local
1639 GFileAttributeValue *value; local
1665 GFileAttributeValue *value; local
1691 GFileAttributeValue *value; local
1716 GFileAttributeValue *value; local
1748 GFileAttributeValue *value; local
1774 GFileAttributeValue *value; local
    [all...]
  /external/icu4c/layout/
OpenTypeUtilities.cpp 18 le_int8 OpenTypeUtilities::highBit(le_int32 value)
20 if (value <= 0) {
26 if (value >= 1 << 16) {
27 value >>= 16;
31 if (value >= 1 << 8) {
32 value >>= 8;
36 if (value >= 1 << 4) {
37 value >>= 4;
41 if (value >= 1 << 2) {
42 value >>= 2
    [all...]
  /external/webkit/WebCore/css/
SVGCSSParser.cpp 42 CSSParserValue* value = m_valueList->current(); local
43 if (!value)
46 int id = value->id;
52 /* The comment to the right defines all valid value of these
69 valid_primitive = validUnit(value, FLength|FPercent, false);
94 else if (value->unit == CSSPrimitiveValue::CSS_URI) {
95 parsedValue = CSSPrimitiveValue::create(value->string, CSSPrimitiveValue::CSS_URI);
108 valid_primitive = validUnit(value, FNumber|FNonNeg, false);
121 case CSSPropertyStrokeOpacity: // <opacity-value> | inherit
125 valid_primitive = (!id && validUnit(value, FNumber|FPercent, false))
277 CSSValue* value = m_parsedProperties[m_numParsedProperties - 1]->value(); local
311 CSSParserValue* value = m_valueList->current(); local
    [all...]
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
Adler32Test.java 63 // System.out.print("value of adl"+adl.getValue());
64 // The value of the adl should be 131074
66 "update(int) failed to update the checksum to the correct value ",
69 assertEquals("reset failed to reset the checksum value to zero", 1, adl
74 // System.out.print("value of adl " + adl.getValue());
75 // The value of the adl should be 65537
77 "update(min) failed to update the checksum to the correct value ",
94 // System.out.print("value of adl"+adl.getValue());
95 // The value of the adl should be 131074
97 "update(int) failed to update the checksum to the correct value ",
    [all...]
  /external/proguard/src/proguard/gui/splash/
ConstantColor.java 32 private final Color value; field in class:ConstantColor
37 * @param value the constant value.
39 public ConstantColor(Color value)
41 this.value = value;
49 return value;

Completed in 318 milliseconds

<<11121314151617181920>>