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

1 2 3 4 5 6 7 8 91011>>

  /external/clearsilver/cs/
test_paren.cs 2 VALUE:<?cs var:a ?>:
  /external/clearsilver/man/man3/
hdf_get_value.3 14 hdf_get_value - Return the value of a node in the data set
29 defval -> the default value to return if the node doesn't
35 name and returns the string value located there, or
38 .SH "RETURN VALUE"
hdf_get_valuevf.3 14 hdf_get_valuevf - Return the value of a node in the data set
34 string value located there, or NULL if it doesn't exist.
36 default value possible.
38 .SH "RETURN VALUE"
hdf_set_valuef.3 14 hdf_set_valuef - Set the value of a named node
28 fmt -> the name=value printf(3) format string
33 the format "name=value", where we will first format the
36 name and the right portion as the value. This function
38 full name=value, and then the call to hdf_set_value
39 duplicates the value portion, and then we free the
40 name=value.
42 value. In the future, this function might work more
47 .SH "RETURN VALUE"
skipRelease.3 14 skipRelease - release lock on value.
25 list - list containing value to release.
30 Releases the lock on the value associated with <lock>. Once
36 .SH "RETURN VALUE"
  /external/icu4c/data/xml/rbnf/
en.xml 16 <rbnfrule value="0">0 seconds; 1 second; =0= seconds;</rbnfrule>
17 <rbnfrule value="60" radix="60">?%%min?[, ??];</rbnfrule>
18 <rbnfrule value="3600" radix="60">?%%hr?[, ???];</rbnfrule>
21 <rbnfrule value="0">0 minutes; 1 minute; =0= minutes;</rbnfrule>
24 <rbnfrule value="0">0 hours; 1 hour; =0= hours;</rbnfrule>
27 <rbnfrule value="0">=0= sec.;</rbnfrule>
28 <rbnfrule value="60">=%%min-sec=;</rbnfrule>
29 <rbnfrule value="3600">=%%hr-min-sec=;</rbnfrule>
32 <rbnfrule value="0">:=00=;</rbnfrule>
33 <rbnfrule value="60" radix="60">?0???;</rbnfrule
    [all...]
mt.xml 16 <rbnfrule value="0">0 sekondi; 1 sekonda; =0= sekondi;</rbnfrule>
17 <rbnfrule value="60" radix="60">?%%min?[, ??];</rbnfrule>
18 <rbnfrule value="3600" radix="60">?%%hr?[, ???];</rbnfrule>
21 <rbnfrule value="0">0 minuti; 1 minuta; =0= minuti;</rbnfrule>
24 <rbnfrule value="0">0 sieg?at; 1 sieg?a; =0= sieg?at;</rbnfrule>
27 <rbnfrule value="0">=0= sek.;</rbnfrule>
28 <rbnfrule value="60">=%%min-sec=;</rbnfrule>
29 <rbnfrule value="3600">=%%hr-min-sec=;</rbnfrule>
32 <rbnfrule value="0">:=00=;</rbnfrule>
33 <rbnfrule value="60" radix="60">?0???;</rbnfrule
    [all...]
  /external/iptables/extensions/
libipt_dscp.man 4 .BI "--dscp " "value"
5 Match against a numeric (decimal or hex) value [0-32].
8 Match the DiffServ class. This value may be any of the
10 into it's according numeric value.
  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnegative.java 11 /** Used to annotate a value that should only contain nonnegative values */
24 Number value = (Number) v; local
25 if (value instanceof Long)
26 isNegative = value.longValue() < 0;
27 else if (value instanceof Double)
28 isNegative = value.doubleValue() < 0;
29 else if (value instanceof Float)
30 isNegative = value.floatValue() < 0;
32 isNegative = value.intValue() < 0;
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
Exclusive.java 8 * This annotation can be applied to the value() element of an annotation that
12 * value is {@literal @Foo(1)}, then the value cannot be {@literal @Foo(2)} or {{@literal @Foo(3)}.
16 * @Exclusive int value();
When.java 7 * In particular, an issues should be reported if an ALWAYS or MAYBE value is
8 * used where a NEVER value is required, or if a NEVER or MAYBE value is used
9 * where an ALWAYS value is required.
  /external/opencore/protocols/systems/3g-324m_pvterminal/build/make/
default_support.mk 1 #This fragmented makefile contains the source file required for building without value adds
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
date-002.js 7 1. If the this value is not a Date object, generate a runtime error.
10 4. Set the [[Value]] property of the this value to Result(2).
11 5. Return the value of the [[Value]] property of the this value.
47 function MyDate(value) {
48 this.value = value;
expression-003.js 7 Try to access properties of an object whose value is undefined.
31 result = OBJECT.value.toString();
40 "Get the toString value of an object whose value is undefined "+
47 function Property( object, value, string, number ) {
49 this.string = String(value);
50 this.number = Number(value);
51 this.value = value;
  /external/webkit/LayoutTests/fast/js/resources/
getOwnPropertyDescriptor.js 7 shouldBe(test+'.value', '' + expected.value);
13 shouldBeFalse(test+".hasOwnProperty('value')");
21 descriptorShouldBe("{definedProperty:'defined'}", "'definedProperty'", {writable: true, enumerable: true, configurable: true, value:'"defined"'});
22 descriptorShouldBe("Array.prototype", "'concat'", {writable: true, enumerable: false, configurable: true, value:"Array.prototype.concat"});
23 descriptorShouldBe("Date.prototype", "'toISOString'", {writable: true, enumerable: false, configurable: true, value: "Date.prototype.toISOString"});
24 descriptorShouldBe("String.prototype", "'concat'", {writable: true, enumerable: false, configurable: true, value:"String.prototype.concat"});
25 descriptorShouldBe("RegExp.prototype", "'exec'", {writable: true, enumerable: false, configurable: true, value:"RegExp.prototype.exec"});
26 descriptorShouldBe("document.__proto__.__proto__", "'createElement'", {writable: true, enumerable: true, configurable: false, value:"document.createElement"});
27 descriptorShouldBe("Number", "'NEGATIVE_INFINITY'", {writable: false, enumerable: false, configurable: false, value:"Number.NEGATIVE_INFINITY"})
    [all...]
  /external/webkit/WebCore/manual-tests/
input-type-file-autocomplete-frame-2.html 4 <form><input size=55 value="type something in here"></form>
keyboard_select_elements_with_same_beginning.html 18 <option value="">Select Station</option>
19 <option value="37169_NJCL">Aberdeen Matawan</option>
20 <option value="2_ATLC">Absecon</option>
21 <option value="3_MNBN">Allendale</option>
22 <option value="4_NJCL">Allenhurst</option>
23 <option value="12_MNE">Basking Ridge</option>
24 <option value="13_NJCL">Bay Head</option>
25 <option value="14_BNTN">Bay Street</option>
26 <option value="15_NJCL">Belmar</option>
show-modal-dialog-test.html 3 document.form.fromModal.value =
5 document.form.toModal.value,
11 <input name="toModal" value="from main window">
12 <input type="button" value="Show Modal" onClick="showModal()"></p>
  /external/webkit/WebCore/svg/
PatternAttributes.h 55 void setX(const SVGLength& value) { m_x = value; m_xSet = true; }
56 void setY(const SVGLength& value) { m_y = value; m_ySet = true; }
57 void setWidth(const SVGLength& value) { m_width = value; m_widthSet = true; }
58 void setHeight(const SVGLength& value) { m_height = value; m_heightSet = true; }
59 void setBoundingBoxMode(bool value) { m_boundingBoxMode = value; m_boundingBoxModeSet = true;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
FontSize.java 32 FontSize(int value) {
33 mValue = value;
38 * @param value Integer value to be converted to a FontSize object.
39 * @return FontSize object whose value is {@code value}. If no
40 * FontSize object has that value, null is returned.
42 public static FontSize fromInt(int value) {
44 if (e.mValue == value) {
TextAlignment.java 34 TextAlignment(int value) {
35 mValue = value;
40 * @param value Integer value to be converted to a TextAlignment object.
41 * @return TextAlignment object whose value is {@code value}. If no
42 * TextAlignment object has that value, null is returned.
44 public static TextAlignment fromInt(int value) {
46 if (e.mValue == value) {
TextColor.java 45 TextColor(int value) {
46 mValue = value;
51 * @param value Integer value to be converted to a TextColor object.
52 * @return TextColor object whose value is {@code value}. If no TextColor
53 * object has that value, null is returned.
55 public static TextColor fromInt(int value) {
57 if (e.mValue == value) {
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 95 static uint32_t encode(uint32_t value)
97 if (value & (1U << 31))
98 value = ((~value) << 1) + 1;
100 value <<= 1;
101 return value;
104 static uint32_t decode(uint32_t value)
106 if (value & 1)
107 value = ~(value >> 1)
609 v8::Local<v8::Value> value; local
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TreeSetTest.java 80 int value; local
83 value = set.first();
84 value = set.first();
85 value = set.first();
86 value = set.first();
87 value = set.first();
88 value = set.first();
89 value = set.first();
90 value = set.first();
91 value = set.first()
102 int value; local
147 int value; local
259 Integer value = new Integer(100); local
283 Integer value = new Integer(400); local
310 Integer value = new Integer(900); local
    [all...]
  /external/easymock/src/org/easymock/
EasyMock.java 174 * @param value
182 public static <T> IExpectationSetters<T> expect(T value) {
300 * Expects a comparable argument greater than or equal the given value. For details, see
304 * @param value
305 * the given value.
308 public static <T extends Comparable<T>> T geq(Comparable<T> value) {
309 reportMatcher(new GreaterOrEqual<T>(value));
314 * Expects a byte argument greater than or equal to the given value. For
317 * @param value
318 * the given value.
    [all...]

Completed in 67 milliseconds

1 2 3 4 5 6 7 8 91011>>