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

<<61626364656667686970>>

  /external/webkit/WebCore/wml/
WMLBRElement.cpp 58 const AtomicString& value = attr->value(); local
59 if (value.isEmpty())
62 if (equalIgnoringCase(value, "all"))
65 addCSSProperty(attr, CSSPropertyClear, value);
  /external/webkit/WebCore/xml/
XPathResult.h 58 static PassRefPtr<XPathResult> create(Document* document, const XPath::Value& value) { return adoptRef(new XPathResult(document, value)); }
76 XPathResult(Document*, const XPath::Value&);
78 XPath::Value m_value;
  /external/webkit/WebKit/win/
WebSerializedJSValue.cpp 83 HRESULT WebSerializedJSValue::serialize(JSContextRef sourceContext, JSValueRef value, JSValueRef* exception)
85 ASSERT_ARG(value, value);
88 if (!value || !sourceContext)
91 m_value = SerializedScriptValue::create(sourceContext, value, exception);
  /frameworks/base/awt/java/awt/image/
LookupTable.java 30 * the number of components and offset value. ByteLookupTable and
49 * Instantiates a new LookupTable with the specified offset value and number
53 * the offset value.
72 * Gets the offset value of this Lookup table.
74 * @return the offset value of this Lookup table.
  /packages/apps/IM/plugin/com/android/im/plugin/
ImPluginConstants.java 43 * Presence status OFFLINE. Should match the value defined in the IM engine.
48 * Presence status DO_NOT_DISTURB. Should match the value defined in the IM engine.
53 * Presence status AWAY. Should match the value defined in the IM engine.
58 * Presence status IDLE. Should match the value defined in the IM engine.
63 * Presence status AVAILABLE. Should match the value defined in the IM engine.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
ListValueCellEditor.java 46 protected void doSetValue(Object value) {
47 if (value instanceof UiListAttributeNode) {
48 UiListAttributeNode uiListAttribute = (UiListAttributeNode)value;
56 // now edit the current value of the attribute
64 super.doSetValue(value);
  /system/core/toolbox/
sendevent.c 17 __s32 value; member in struct:input_event
35 #define EVIOCGABS(abs) _IOR('E', 0x40 + abs, struct input_absinfo) /* get abs value/limits */
36 #define EVIOCSABS(abs) _IOW('E', 0xc0 + abs, struct input_absinfo) /* set abs value/limits */
57 fprintf(stderr, "use: %s device type code value\n", argv[0]);
73 event.value = atoi(argv[4]);
  /external/opencore/nodes/pvmp4ffparsernode/src/
pvmf_mp4ffparser_node_metadata.cpp 3283 uint32 value = iMP4FileHandle->getITunesGnreID(); local
3750 uint32 value = 0; local
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 86 var property = properties[i], value = source[property];
87 if (ancestor && Object.isFunction(value) &&
88 value.argumentNames().first() == "$super") {
89 var method = value;
90 value = (function(m) {
94 value.valueOf = method.valueOf.bind(method);
95 value.toString = method.toString.bind(method);
97 this.prototype[property] = value;
139 var value = Object.toJSON(object[property]);
140 if (!Object.isUndefined(value))
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
IdentityHashMap.java 27 * instead of equality by value. Basically, keys and values are compared for
49 * The internal data structure to hold key value pairs This array holds keys
54 /* Actual number of key-value pairs. */
64 * default threshold value that an IdentityHashMap created using the default
80 * differentiate a literal 'null' key value pair from an empty spot in the
102 return (key == entry.getKey()) && (value == entry.getValue());
110 ^ System.identityHashCode(value);
115 return key + "=" + value; //$NON-NLS-1$
133 IdentityHashMapIterator(MapEntry.Type<E, KT, VT> value,
136 type = value;
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ThreadLocalTest.java 79 assertNull("ThreadLocal's initial value is null", l.get());
91 assertTrue("ThreadLocal's initial value should be " + INITIAL_VALUE
109 // Wait for the other Thread assign what it observes as the value of the
118 assertTrue("ThreadLocal's initial value in other Thread should be "
148 assertTrue("ThreadLocal's initial value is " + OBJ, l.get() == OBJ);
165 // Wait for the other Thread assign what it observes as the value of the
176 assertNull("ThreadLocal's value in other Thread should be null",
192 final Object value = new Object(); local
198 assertSame(value, parentValue);
202 threadLocal.set(value);
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 60 long value = 0; local
68 if (value < 0x80000000000000L)
70 value = value * 128 + (b & 0x7f);
75 switch ((int)value / 40)
82 value -= 40;
86 value -= 80;
92 objId.append(value);
93 value = 0;
100 bigValue = BigInteger.valueOf(value);
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 116 * a string as xsl:value-of does (see [7.6.1 Generating Text with
117 * xsl:value-of]).
131 XObject value = m_selectExpression.execute(xctxt, sourceNode, this); local
135 if (null != value)
137 int type = value.getType();
145 s = value.str();
151 // System.out.println(value);
152 DTMIterator nl = value.iter();
186 handler, value, transformer.getXPathContext());
190 s = value.str()
    [all...]
  /dalvik/libdex/
Leb128.h 27 * Reads an unsigned LEB128 value, updating the given pointer to point
28 * just past the end of the read value. This function tolerates
62 * Reads a signed LEB128 value, updating the given pointer to point
63 * just past the end of the read value. This function tolerates
105 * Reads an unsigned LEB128 value, updating the given pointer to point
106 * just past the end of the read value and also indicating whether the
107 * value was syntactically valid. The only syntactically *invalid*
117 * Reads a signed LEB128 value, updating the given pointer to point
118 * just past the end of the read value and also indicating whether the
119 * value was syntactically valid. The only syntactically *invalid
    [all...]
  /external/bluetooth/bluez/tools/
hcitool.1 95 can have value
109 for user ended connections. The value must be given in decimal.
155 .BI lp " <bdaddr> [value]"
157 .IR value ,
161 .IR value
163 .IR value .
166 .BI lst " <bdaddr> [value]"
168 .IR value ,
173 value
176 value
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
trees-binary.sgml 5 a sorted collection of key/value pairs optimized for searching
11 of key/value pairs optimized for searching and traversing in order.
17 To insert a key/value pair into a #GTree use g_tree_insert().
20 To lookup the value corresponding to a given key, use g_tree_lookup() and
32 To remove a key/value pair use g_tree_remove().
92 @value:
102 @value:
139 @value:
167 It is passed the key and value of each node, together with
173 @value: the value corresponding to the key
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableClassToInstanceMap.java 60 * Associates {@code key} with {@code value} in the built map. Duplicate
63 public <T extends B> Builder<B> put(Class<T> type, T value) {
64 mapBuilder.put(type, value);
72 * @throws NullPointerException if any key or value in {@code map} is null
73 * @throws ClassCastException if any value is not an instance of the type
81 T value = entry.getValue(); local
82 mapBuilder.put(type, cast(type, value));
107 * @throws NullPointerException if any key or value in {@code map} is null
108 * @throws ClassCastException if any value is not an instance of the type
131 @SuppressWarnings("unchecked") // value could not get in if not a
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 139 $self->{value} = $1;
150 # in $self->{value}
151 $self->{value} =~ s/(?<![0-9a-f])(0[x0-9a-f]+)/oct($1)/egi;
152 $self->{value} =~ s/([0-9]+\s*[\*\/\%]\s*[0-9]+)/eval($1)/eg;
153 sprintf "\$%s",$self->{value};
155 $self->{value} =~ s/0x([0-9a-f]+)/0$1h/ig;
156 sprintf "%s",$self->{value};
234 $self->{value} = $1;
244 if ($self->{value} =~ /^r[\d]+b$/i) { $ret="b"; }
245 elsif ($self->{value} =~ /^r[\d]+w$/i) { $ret="w";
    [all...]
  /external/openssl/crypto/pkcs12/
p12_asn.c 82 ASN1_ADB_TEMPLATE(bag_default) = ASN1_EXP(PKCS12_BAGS, value.other, ASN1_ANY, 0);
85 ADB_ENTRY(NID_x509Certificate, ASN1_EXP(PKCS12_BAGS, value.x509cert, ASN1_OCTET_STRING, 0)),
86 ADB_ENTRY(NID_x509Crl, ASN1_EXP(PKCS12_BAGS, value.x509crl, ASN1_OCTET_STRING, 0)),
87 ADB_ENTRY(NID_sdsiCertificate, ASN1_EXP(PKCS12_BAGS, value.sdsicert, ASN1_IA5STRING, 0)),
97 ASN1_ADB_TEMPLATE(safebag_default) = ASN1_EXP(PKCS12_SAFEBAG, value.other, ASN1_ANY, 0);
100 ADB_ENTRY(NID_keyBag, ASN1_EXP(PKCS12_SAFEBAG, value.keybag, PKCS8_PRIV_KEY_INFO, 0)),
101 ADB_ENTRY(NID_pkcs8ShroudedKeyBag, ASN1_EXP(PKCS12_SAFEBAG, value.shkeybag, X509_SIG, 0)),
102 ADB_ENTRY(NID_safeContentsBag, ASN1_EXP_SET_OF(PKCS12_SAFEBAG, value.safes, PKCS12_SAFEBAG, 0)),
103 ADB_ENTRY(NID_certBag, ASN1_EXP(PKCS12_SAFEBAG, value.bag, PKCS12_BAGS, 0)),
104 ADB_ENTRY(NID_crlBag, ASN1_EXP(PKCS12_SAFEBAG, value.bag, PKCS12_BAGS, 0))
    [all...]
  /external/openssl/crypto/store/
README 34 Friendly Name - the value is a normal C string
35 Key ID - the value is a 160 bit SHA1 hash
36 Issuer Key ID - the value is a 160 bit SHA1 hash
37 Subject Key ID - the value is a 160 bit SHA1 hash
38 Issuer/Serial Hash - the value is a 160 bit SHA1 hash
39 Issuer - the value is a X509_NAME
40 Serial - the value is a BIGNUM
41 Subject - the value is a X509_NAME
42 Certificate Hash - the value is a 160 bit SHA1 hash
43 Email - the value is a normal C strin
    [all...]
  /external/quake/quake/src/WinQuake/
cvar.cpp 104 void Cvar_Set (const char *var_name, const char *value)
116 changed = Q_strcmp(var->string, value);
118 Z_Free (var->string); // free the old value string
120 var->string = (char*) Z_Malloc (Q_strlen(value)+1);
121 Q_strcpy (var->string, value);
122 var->value = Q_atof (var->string);
135 void Cvar_SetValue (const char *var_name, float value)
139 sprintf (val, "%f",value);
169 // copy the value off, because future sets will Z_Free it
173 variable->value = Q_atof (variable->string)
    [all...]
  /external/skia/src/animator/
SkAnimateBase.cpp 115 bool SkAnimateBase::getProperty(int index, SkScriptValue* value) const {
127 value->fOperand.fS32 = SkToBool(boolResult);
128 value->fType = SkType_Boolean;
133 fApply->getStep(value);
136 value->fOperand.fString = (SkString*) &to;
137 value->fType = SkType_String;
194 bool SkAnimateBase::setProperty(int index, SkScriptValue& value) {
195 bool boolValue = SkToBool(value.fOperand.fS32);
202 SkASSERT(value.fType == SkType_String);
203 to = *value.fOperand.fString
    [all...]
  /external/v8/src/
counters.h 64 // value of the counter. Each thread calling this function
66 // The return value must not be cached and re-used across
103 // Internally, a counter represents a value in a row of a StatsTable.
104 // The row has a 32bit value for each process/thread in the table and also
116 // Sets the counter to a specific value.
117 void Set(int value) {
119 if (loc) *loc = value;
128 void Increment(int value) {
131 (*loc) += value;
140 void Decrement(int value) {
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Protect.h 52 inline void gcProtect(JSValue value)
54 if (value && value.isCell())
55 gcProtect(asCell(value));
58 inline void gcUnprotect(JSValue value)
60 if (value && value.isCell())
61 gcUnprotect(asCell(value));
93 ProtectedJSValue(JSValue value);
153 inline ProtectedJSValue::ProtectedJSValue(JSValue value)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.5.1-2.js 31 When the [[Put]] method of A is called with property P and value V, the
38 5. Set the value of property P of A to V.
40 7. Create a property with name P, set its value to V and give it empty
44 andToUint32(P) is less than the value of the length property of A, then
46 10. Change (or set) the value of the length property of A to ToUint32(P)+1.
49 13. For every integer k that is less than the value of the length property
52 14. Set the value of property P of A to Result(12).
127 function AddCase ( arg, value ) {
129 a[arg] = value;
132 "a[\"" + arg + "\"] = "+ value +"; a.length"
    [all...]

Completed in 1641 milliseconds

<<61626364656667686970>>