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

<<11121314151617181920>>

  /external/clearsilver/util/
dict.c 29 void *value; /* value to set/update */ member in struct:dictValue
30 dictNewValueCB new; /* new value callback (value is NULL) */
31 dictUpdateValueCB update; /* update value callback (value is NULL) */
38 struct dictItem *next; /* pointer to next value */
40 void *value; /* value */ member in struct:dictItem
64 dictFreeValueFunc freeValue; /* free value callback *
383 void *value; local
418 void *value; local
    [all...]
dict.h 20 typedef BOOL (*dictCleanupFunc)(char *id, void *value, void *rock);
21 typedef void (*dictFreeValueFunc)(void *value, void *rock);
37 * freeValue - callback when freeing a value
67 * Function: dictSearch - search for value in dictionary.
68 * Description: Searches for <id> in <dict>, and returns value if
71 * the returned value. Until this lock is passed to
72 * dictReleaseLock(), the value will not be passed to the
76 * plock - place for value lock (or NULL).
77 * Output: plock - set to value lock.
78 * Return: Value associated with <id>, or NULL if <id> not found
    [all...]
skiplist.h 43 typedef void (*skipFreeValue)(void *value, void *ctx);
62 * freeValue - callback made whenever a value is flushed.
72 * Description: Release all resources used by <list> including all key/value
84 * that the one in <pkey>, and returns its value if
87 * the returned value. Until this lock is passed to
88 * skipRelease(), the value will not be freed with the
92 * plock - place for value lock (or NULL).
94 * plock - set to value lock.
95 * Return: Value associated with new <pkey>, or NULL last item.
102 * Description: Searches for <key> in <list>, and returns value if
    [all...]
  /external/easymock/src/org/easymock/
Capture.java 24 * if something was captured or not (allows to capture a null value).
69 * Return captured value
72 * if nothing was captured yet or if more than one value was
74 * @return The last captured value
81 throw new AssertionError("More than one value captured: "
98 * Used internally by the EasyMock framework to add a new captured value
100 * @param value
101 * Value captured
103 public void setValue(T value) {
108 values.add(value);
    [all...]
  /external/icu4c/layout/
OpenTypeUtilities.h 22 static le_int8 highBit(le_int32 value);
25 static le_int32 search(le_uint16 value, const le_uint16 array[], le_int32 count);
26 static le_int32 search(le_uint32 value, const le_uint32 array[], le_int32 count);
  /external/jsr305/sampleUses/src/main/java/
LuhnVerification.java 3 static boolean checkNumber(String value) {
6 for (int i = value.length() - 1; i >= 0; i--) {
7 int v = value.charAt(i) - '0';
  /external/webkit/LayoutTests/http/tests/appcache/resources/
counter.php 12 $value = file_get_contents($file); variable
13 file_put_contents($file, ++$value);
14 return $value;
  /external/webkit/WebCore/manual-tests/wml/
select-onpick-event.wml 9 <option value="D">Dog</option>
10 <option value="C">Cat</option>
11 <option value="L" onpick="StartTests.wml">Lion</option>
setvar-element.wml 7 <p>Click "Refresh" will update the value of VAR varaible which specified by setvar element</p>
11 <setvar name="var" value="VALUE"/>
  /external/webkit/WebKitLibraries/win/tools/vsprops/
debug_wincairo.vsprops 22 Value="_debug"
27 Value=""
32 Value="_debug"
  /external/webkit/WebKitTools/QueueStatusServer/filters/
webkit_extras.py 41 def webkit_linkify(value):
42 value = bug_regexp.sub(r'<a href="http://webkit.org/b/\g<bug_id>">bug \g<bug_id></a>', value)
43 value = patch_regexp.sub(r'<a href="https://bugs.webkit.org/attachment.cgi?id=\g<patch_id>&action=prettypatch">patch \g<patch_id></a>', value)
44 return value
48 def webkit_bug_id(value):
49 return '<a href="http://webkit.org/b/%s">%s</a>' % (value, value)
53 def webkit_attachment_id(value)
    [all...]
  /system/core/toolbox/
getprop.c 22 char value[PROPERTY_VALUE_MAX]; local
30 property_get(argv[1], value, default_value);
31 printf("%s\n", value);
  /external/srec/srec/cfront/
sh_down.h 36 static PINLINE int shift_up_inline(int value, unsigned int shift);
37 static PINLINE int shift_down_inline(int value, unsigned int shift);
38 static PINLINE int fixed_round(float value);
42 static PINLINE int shift_up_inline(int value, unsigned int shift)
48 if (value > 0)
49 temp = value;
51 temp = -value;
57 if (value > 0)
64 static PINLINE int shift_down_inline(int value, unsigned int shift)
68 return (value);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSByteArray.h 45 void setIndex(unsigned i, int value)
48 if (value & ~0xFF) {
49 if (value < 0)
50 value = 0;
52 value = 255;
54 m_storage->data()[i] = static_cast<unsigned char>(value);
57 void setIndex(unsigned i, double value)
60 if (!(value > 0)) // Clamp NaN to 0
61 value = 0;
62 else if (value > 255
    [all...]
  /external/webkit/WebCore/css/
MediaQueryExp.cpp 43 CSSParserValue* value = valueList->current(); local
45 if (value->id != 0)
46 m_value = CSSPrimitiveValue::createIdentifier(value->id);
47 else if (value->unit == CSSPrimitiveValue::CSS_STRING)
48 m_value = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit);
49 else if (value->unit >= CSSPrimitiveValue::CSS_NUMBER &&
50 value->unit <= CSSPrimitiveValue::CSS_KHZ)
51 m_value = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit)
59 CSSParserValue* value = 0; local
    [all...]
  /external/skia/src/core/
SkUtils.cpp 21 #define assign_16_longs(dst, value) \
23 (dst)[0] = value; (dst)[1] = value; \
24 (dst)[2] = value; (dst)[3] = value; \
25 (dst)[4] = value; (dst)[5] = value; \
26 (dst)[6] = value; (dst)[7] = value; \
27 (dst)[8] = value; (dst)[9] = value;
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeImpl.java 40 * Creates a TimeImpl representation of a time-value represented as a String.
44 * Time-val ::= ( smil-1.0-syncbase-value
46 * | offset-value
47 * | syncbase-value
48 * | syncToPrev-value
49 * | event-value
50 * | media-marker-value
51 * | wallclock-sync-value )
52 * Smil-1.0-syncbase-value ::=
53 * "id(" id-ref ")" ( "(" ( "begin" | "end" | clock-value ) ")" )
    [all...]
  /development/tools/idegen/
idegen.ipr 7 <option name="BUILD_JARS_ON_MAKE" value="false" />
11 <option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
15 <value>
16 <option name="ALIGN_MULTILINE_PARAMETERS" value="false" />
17 <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="1000" />
18 <option name="RIGHT_MARGIN" value="80" />
19 <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" />
20 <option name="PLACE_ASSIGNMENT_SIGN_ON_NEXT_LINE" value="true" />
22 <option name="INDENT_SIZE" value="4" />
23 <option name="CONTINUATION_INDENT_SIZE" value="8" /
    [all...]
  /external/icu4c/test/cintltst/
trietest.c 39 uint32_t value; member in struct:SetRange
45 * value is set from the previous boundary's limit to before
50 uint32_t value; member in struct:CheckRange
56 uint32_t foldedValue, value; local
64 value=utrie_get32(trie, start, &inBlockZero);
68 foldedValue|=value;
87 uint32_t foldedValue, value; local
95 value=utrie_get32(trie, start, &inBlockZero);
99 foldedValue|=value;
121 _testEnumValue(const void *context, uint32_t value) {
148 uint32_t value; local
263 uint32_t value, value2; local
457 uint32_t value, value2; local
828 uint32_t value, initialValue, leadUnitValue; local
    [all...]
  /external/guava/src/com/google/common/primitives/
UnsignedBytes.java 26 * values as <i>unsigned</i> (that is, any negative value {@code b} is treated
27 * as the positive value {@code 256 + b}). The corresponding methods that treat
38 * Returns the {@code byte} value that, when treated as unsigned, is equal to
39 * {@code value}, if possible.
41 * @param value a value between 0 and 255 inclusive
42 * @return the {@code byte} value that, when treated as unsigned, equals
43 * {@code value}
44 * @throws IllegalArgumentException if {@code value} is negative or greater
47 public static byte checkedCast(long value) {
    [all...]
  /external/webkit/JavaScriptCore/API/
JSValueRef.cpp 47 ::JSType JSValueGetType(JSContextRef ctx, JSValueRef value)
52 JSValue jsValue = toJS(exec, value);
68 bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value)
73 JSValue jsValue = toJS(exec, value);
77 bool JSValueIsNull(JSContextRef ctx, JSValueRef value)
82 JSValue jsValue = toJS(exec, value);
86 bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value)
91 JSValue jsValue = toJS(exec, value);
95 bool JSValueIsNumber(JSContextRef ctx, JSValueRef value)
100 JSValue jsValue = toJS(exec, value);
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 170 * Bind a NULL value to this statement. The value remains bound until
188 * Bind a long value to this statement. The value remains bound until
192 * @param value The value to bind
194 public void bindLong(int index, long value) {
200 native_bind_long(index, value);
207 * Bind a double value to this statement. The value remains bound unti
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
AtomicMarkableReference.java 45 * Returns the current value of the reference.
47 * @return the current value of the reference
54 * Returns the current value of the mark.
56 * @return the current value of the mark
67 * {@code markholder[0]} will hold the value of the mark.
68 * @return the current value of the reference
77 * Atomically sets the value of both the reference and mark
86 * @param expectedReference the expected value of the reference
87 * @param newReference the new value for the reference
88 * @param expectedMark the expected value of the mar
    [all...]
AtomicStampedReference.java 46 * Returns the current value of the reference.
48 * @return the current value of the reference
55 * Returns the current value of the stamp.
57 * @return the current value of the stamp
68 * {@code stampholder[0]} will hold the value of the stamp.
69 * @return the current value of the reference
78 * Atomically sets the value of both the reference and stamp
87 * @param expectedReference the expected value of the reference
88 * @param newReference the new value for the reference
89 * @param expectedStamp the expected value of the stam
    [all...]
  /external/bluetooth/glib/gobject/
genums.h 121 * @value: a valid #GValue structure
127 #define G_VALUE_HOLDS_ENUM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ENUM))
130 * @value: a valid #GValue structure
136 #define G_VALUE_HOLDS_FLAGS(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLAGS))
148 * @minimum: the smallest possible value.
149 * @maximum: the largest possible value.
189 * @value: the enum value
198 gint value; member in struct:_GEnumValue
213 guint value; member in struct:_GFlagsValue
    [all...]

Completed in 54 milliseconds

<<11121314151617181920>>