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

<<21222324252627282930>>

  /dalvik/libcore/text/src/main/java/java/text/
DecimalFormatSymbols.java 147 * been previously called with a value that is not a valid ISO 4217 currency
227 * value.
322 * The currency and currency symbol are also updated if {@code value} is a
327 * @param value
330 public void setInternationalCurrencySymbol(String value) {
331 if (value == null) {
337 if (value.equals(intlCurrencySymbol)) {
342 currency = Currency.getInstance(value);
347 intlCurrencySymbol = value;
353 * @param value
    [all...]
  /external/bluetooth/bluez/test/
test-adapter 46 value = dbus.Boolean(1) variable
48 value = dbus.Boolean(0) variable
50 value = dbus.Boolean(sys.argv[2]) variable
51 adapter.SetProperty("Powered", value)
60 value = dbus.Boolean(1) variable
62 value = dbus.Boolean(0) variable
64 value = dbus.Boolean(sys.argv[2]) variable
65 adapter.SetProperty("Pairable", value)
83 value = dbus.Boolean(1) variable
85 value = dbus.Boolean(0 variable
87 value = dbus.Boolean(sys.argv[2]) variable
    [all...]
  /external/clearsilver/man/man3/
cgiwrap_getenv.3 31 getenv in that it makes a copy of the value it returns,
37 .SH "RETURN VALUE"
38 v - a newly allocated copy of the value of that variable, or
cgiwrap_putenv.3 27 v - the new value for env var k
34 variable name and value, which makes life easier for the
38 .SH "RETURN VALUE"
  /external/elfutils/libdw/
dwarf_arrayorder.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_bitoffset.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_bitsize.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_bytesize.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_srclang.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
  /external/icu4c/samples/layout/
cmaps.cpp 25 // through the bits in value.
27 le_uint8 highBit(le_uint32 value)
31 if (value >= 1 << 16) {
32 value >>= 16;
36 if (value >= 1 << 8) {
37 value >>= 8;
41 if (value >= 1 << 4) {
42 value >>= 4;
46 if (value >= 1 << 2) {
47 value >>= 2
    [all...]
  /external/icu4c/test/letest/
cmaps.cpp 19 // through the bits in value.
21 le_int8 highBit(le_uint32 value)
25 if (value >= 1 << 16) {
26 value >>= 16;
30 if (value >= 1 << 8) {
31 value >>= 8;
35 if (value >= 1 << 4) {
36 value >>= 4;
40 if (value >= 1 << 2) {
41 value >>= 2
    [all...]
  /external/iptables/extensions/
libip6t_2hl.c 22 " --hl-eq [!] value Match hop limit value\n"
23 " --hl-lt value Match HL < value\n"
24 " --hl-gt value Match HL > value\n"
33 u_int8_t value; local
36 value = atoi(argv[optind-1]);
44 "hl: You must specify a value");
53 info->hop_limit = value;
    [all...]
libipt_CONNMARK.man 1 This module sets the netfilter mark value associated with a connection
8 Copy the netfilter packet mark value to the connection mark. If a mask
12 Copy the connection mark value to the packet. If a mask is specified
  /external/jsr305/ri/src/main/java/javax/annotation/
RegEx.java 27 public When forConstantValue(RegEx annotation, Object value) {
28 if (!(value instanceof String))
32 Pattern.compile((String) value);
  /external/oprofile/libutil/
op_lockfile.c 25 pid_t value; local
31 if (fscanf(fp, "%d", &value) != 1) {
38 return value;
  /external/skia/src/effects/
SkKernel33MaskFilter.cpp 60 int value = this->computeValue(srcRows); local
63 value = SkAlphaBlend(value, srcRows[1][1], scale);
64 *dstRow++ = SkToU8(value);
87 int value = 0; local
91 value += fKernel[i][j] * srcRows[i][j];
93 value >>= fShift;
95 if (value < 0)
96 value = 0;
97 else if (value > 255
    [all...]
  /external/srec/srec/EventLog/src/
EventLog.c 36 ESR_ReturnCode SR_EventLogToken(SR_EventLog* self, const LCHAR* token, const LCHAR *value)
43 return self->token(self, token, value);
46 ESR_ReturnCode SR_EventLogTokenInt(SR_EventLog* self, const LCHAR* token, int value)
53 return self->tokenInt(self, token, value);
56 ESR_ReturnCode SR_EventLogTokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value)
63 return self->tokenUint16_t(self, token, value);
66 ESR_ReturnCode SR_EventLogTokenSize_t(SR_EventLog* self, const LCHAR* token, size_t value)
73 return self->tokenSize_t(self, token, value);
76 ESR_ReturnCode SR_EventLogTokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value)
83 return self->tokenBool(self, token, value);
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-004.js 37 function TryToCatch( value, expect ) {
39 result = eval( value );
46 "eval( " + value +" )",
  /external/webkit/LayoutTests/storage/domstorage/localstorage/resources/
window-open-second.html 19 log("Value for FOO is " + window.localStorage.getItem("FOO"));
21 log("Value for FOO after changing my own copy is " + window.localStorage.getItem("FOO"));
23 log("Value for FOO in my opening window is " + window.opener.localStorage.getItem("FOO"));
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/
window-open-second.html 19 log("Value for FOO is " + window.sessionStorage.getItem("FOO"));
21 log("Value for FOO after changing my own copy is " + window.sessionStorage.getItem("FOO"));
23 log("Value for FOO in my opening window is " + window.opener.sessionStorage.getItem("FOO"));
  /external/webkit/WebCore/bindings/v8/
V8NPObject.h 44 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo&);
45 v8::Handle<v8::Value> npObjectIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo&);
46 v8::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name);
47 v8::Handle<v8::Value> npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index);
50 v8::Handle<v8::Value> npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::AccessorInfo&);
51 v8::Handle<v8::Value> npObjectIndexedPropertySetter(uint32_t index, const v8::AccessorInfo&);
52 v8::Handle<v8::Value> npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value>);
53 v8::Handle<v8::Value> npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value>)
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLSelectElementCustom.cpp 49 v8::Handle<v8::Value> V8HTMLSelectElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
53 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); local
55 if (!value.IsEmpty())
56 return value;
77 v8::Handle<v8::Value> V8HTMLSelectElement::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
87 v8::Handle<v8::Value> V8HTMLSelectElement::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
91 return toOptionsCollectionSetter(index, value, select)
    [all...]
  /external/webkit/WebCore/html/
HTMLLIElement.cpp 56 m_requestedValue = attr->value().toInt();
64 if (attr->value() == "a")
66 else if (attr->value() == "A")
68 else if (attr->value() == "i")
70 else if (attr->value() == "I")
72 else if (attr->value() == "1")
75 addCSSProperty(attr, CSSPropertyListStyleType, attr->value());
114 void HTMLLIElement::setType(const String& value)
116 setAttribute(typeAttr, value);
119 int HTMLLIElement::value() cons function in class:WebCore::HTMLLIElement
    [all...]
  /external/webkit/WebCore/manual-tests/
audio-volume.html 23 <input type="button" value="Load movie" onclick="load()">
25 <input type="button" value="volume=1.0" onclick="setVolume(1.0)">
26 <input type="button" value="volume=0.05" onclick="setVolume(0.05)">
input-type-text-unconfirmed-inline-input.html 17 <p><input type=text id=input value="" size=57><input type=button value="test" onClick="dump(document.getElementById('input').value)"></div>

Completed in 327 milliseconds

<<21222324252627282930>>