/device/sample/products/ |
AndroidProducts.mk | 6 # This file may not rely on the value of any variable other than 8 # value of any variable that isn't set in this file or in a file that
|
/external/bluetooth/glib/gio/ |
gioenumtypes.h.template | 15 /*** BEGIN value-header ***/ 18 /*** END value-header ***/
|
/external/clearsilver/man/man3/ |
skipDelete.3 | 27 key - key identifying value to delete. 34 .SH "RETURN VALUE"
|
skipFreeList.3 | 28 Release all resources used by <list> including all key/value 33 .SH "RETURN VALUE"
|
/external/iptables/extensions/ |
libip6t_hl.man | 6 .BI "--hl-lt " "value" 9 .BI "--hl-gt " "value"
|
/external/webkit/WebCore/bindings/v8/ |
V8DOMWrapper.h | 108 // Checks if a v8 value can be a DOM wrapper 109 static bool maybeDOMWrapper(v8::Handle<v8::Value>); 127 static v8::Handle<v8::Value> convertEventTargetToV8Object(PassRefPtr<EventTarget> eventTarget) 132 static v8::Handle<v8::Value> convertEventTargetToV8Object(EventTarget*); 134 static PassRefPtr<EventListener> getEventListener(Node* node, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup); 136 static PassRefPtr<EventListener> getEventListener(SVGElementInstance* element, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup); 138 static PassRefPtr<EventListener> getEventListener(AbstractWorker* worker, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup) [all...] |
/external/webkit/WebCore/dom/ |
MappedAttribute.h | 35 static PassRefPtr<MappedAttribute> create(const QualifiedName& name, const AtomicString& value) 37 return adoptRef(new MappedAttribute(name, value, 0)); 39 static PassRefPtr<MappedAttribute> create(const AtomicString& name, const AtomicString& value) 41 return adoptRef(new MappedAttribute(name, value, 0)); 54 MappedAttribute(const QualifiedName& name, const AtomicString& value, CSSMappedAttributeDeclaration* declaration) 55 : Attribute(name, value), m_styleDecl(declaration) 58 MappedAttribute(const AtomicString& name, const AtomicString& value, CSSMappedAttributeDeclaration* declaration) 59 : Attribute(name, value), m_styleDecl(declaration)
|
/external/webkit/WebCore/manual-tests/wml/ |
select-onpick-event-crash.wml | 6 <option onpick="#card2" value="foo">Foo</option> 7 <option onpick="#card2" value="bar">Bar</option>
|
/external/webkit/WebCore/svg/ |
GradientAttributes.h | 42 void setSpreadMethod(GradientSpreadMethod value) { m_spreadMethod = value; m_spreadMethodSet = true; } 43 void setBoundingBoxMode(bool value) { m_boundingBoxMode = value; m_boundingBoxModeSet = true; } 44 void setGradientTransform(const AffineTransform& value) { m_gradientTransform = value; m_gradientTransformSet = true; } 45 void setStops(const Vector<SVGGradientStop>& value) { m_stops = value; m_stopsSet = true; }
|
LinearGradientAttributes.h | 46 void setX1(const SVGLength& value) { m_x1 = value; m_x1Set = true; } 47 void setY1(const SVGLength& value) { m_y1 = value; m_y1Set = true; } 48 void setX2(const SVGLength& value) { m_x2 = value; m_x2Set = true; } 49 void setY2(const SVGLength& value) { m_y2 = value; m_y2Set = true; }
|
/external/webkit/WebCore/wml/ |
WMLAccessElement.cpp | 43 String value = parseValueForbiddingVariableReferences(attr->value()); local 44 if (value.isEmpty()) 47 m_domain = value; 49 String value = parseValueForbiddingVariableReferences(attr->value()); local 50 if (value.isEmpty()) 53 m_path = value;
|
/packages/apps/Phone/res/values/ |
attrs.xml | 28 <enum name="confirm" value="0" /> 30 <enum name="activation" value="1" /> 37 <enum name="voice" value="1" /> 39 <enum name="data" value="2" /> 43 <enum name="unconditional" value="0" /> 45 <enum name="busy" value="1" /> 47 <enum name="no_reply" value="2" /> 49 <enum name="not_reachable" value="3" />
|
/system/core/include/cutils/ |
atomic.h | 34 void android_atomic_write(int32_t value, volatile int32_t* addr); 37 * all these atomic operations return the previous value 44 int32_t android_atomic_add(int32_t value, volatile int32_t* addr); 45 int32_t android_atomic_and(int32_t value, volatile int32_t* addr); 46 int32_t android_atomic_or(int32_t value, volatile int32_t* addr); 48 int32_t android_atomic_swap(int32_t value, volatile int32_t* addr); 59 int64_t android_quasiatomic_swap_64(int64_t value, volatile int64_t* addr); 63 * cmpxchg return a non zero value if the exchange was NOT performed,
|
/external/apache-http/src/org/apache/http/message/ |
BasicHeaderValueParser.java | 87 * @param value the header value to parse 93 HeaderElement[] parseElements(final String value, 97 if (value == null) { 99 ("Value to parse may not be null"); 105 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); 106 buffer.append(value); 107 ParserCursor cursor = new ParserCursor(0, value.length()); 138 * @param value the header element to parse 144 HeaderElement parseHeaderElement(final String value, 360 String value = null; local [all...] |
/cts/tools/dex-tools/src/dex/structure/ |
DexAnnotationAttribute.java | 24 * @Text(value="hello") 27 * 'value="hello"' is represented by a {@code DexAnnotationValue}. "value" is 28 * its name and "hello" is its encoded value. 32 * Returns the encoded value of this {@code DexAnnotationValue}. 34 * @return the encoded value of this {@code DexAnnotationValue}
|
/dalvik/libcore/json/src/main/java/org/json/ |
JSONArray.java | 37 * ways: the standard Java {@code null} reference, and the sentinel value {@link 114 * Appends {@code value} to the end of this array. 118 public JSONArray put(boolean value) { 119 values.add(value); 124 * Appends {@code value} to the end of this array. 126 * @param value a finite value. May not be {@link Double#isNaN() NaNs} or 130 public JSONArray put(double value) throws JSONException { 131 values.add(JSON.checkDouble(value)); 136 * Appends {@code value} to the end of this array 244 Object value = opt(index); local 257 Object value = values.get(index); local [all...] |
/dalvik/libcore/security/src/main/java/java/security/interfaces/ |
DSAParams.java | 28 * Returns the base ({@code g}) value. 30 * @return the base ({@code g}) value. 35 * Returns the prime ({@code p}) value. 37 * @return the prime ({@code p}) value. 42 * Returns the subprime ({@code q} value. 44 * @return the subprime ({@code q} value.
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameTokenizer.java | 11 private String value; field in class:X509NameTokenizer 26 this.value = oid; 33 return (index != value.length()); 38 if (index == value.length()) 49 while (end != value.length()) 51 char c = value.charAt(end);
|
/external/apache-http/src/org/apache/commons/codec/net/ |
BCodec.java | 93 * @param value 102 public String encode(final String value, final String charset) throws EncoderException { 103 if (value == null) { 107 return encodeText(value, charset); 116 * @param value 123 public String encode(String value) throws EncoderException { 124 if (value == null) { 127 return encode(value, getDefaultCharset()); 134 * @param value 142 public String decode(String value) throws DecoderException [all...] |
/external/iproute2/netem/ |
normal.c | 39 int value = (int) rint(table[i]*TABLEFACTOR); local 40 if (value < SHRT_MIN) value = SHRT_MIN; 41 if (value > SHRT_MAX) value = SHRT_MAX; 43 printf(" %d", value);
|
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
Exhaustive.java | 8 * This annotation can be applied to the value() element of an annotation that 9 * is annotated as a TypeQualifier. This is only appropriate if the value field 10 * returns a value that is an Enumeration. 16 * value is neither {@literal @Foo(Color.Red)} or {@literal @Foo(Color.Blue)}, 17 * then the value must be {@literal @Foo(Color.Green)}. And if you know it is 24 * @Exhaustive Color value();
|
/external/junit/src/junit/framework/ |
ComparisonFailure.java | 18 * @param expected the expected string value 19 * @param actual the actual string value 38 * Gets the actual string value 39 * @return the actual string value 45 * Gets the expected string value 46 * @return the expected string value
|
/external/kernel-headers/original/asm-x86/ |
unaligned.h | 13 * get_unaligned - get value from possibly mis-aligned location 14 * @ptr: pointer to value 18 * e.g. retrieving a u16 value from a location not u16-aligned. 25 * put_unaligned - put value to a possibly mis-aligned location 26 * @val: value to place 31 * e.g. writing a u16 value to a location not u16-aligned.
|
/external/skia/src/ports/ |
SkThread_pthread.cpp | 12 int32_t value = *addr; local 13 *addr = value + 1; 14 return value; 21 int32_t value = *addr; local 22 *addr = value - 1; 23 return value;
|
/sdk/layoutlib_utils/src/com/android/layoutlib/utils/ |
ResourceValue.java | 33 public ResourceValue(String type, String name, String value, boolean isFramework) { 36 mValue = value; 52 public final void setValue(String value) { 53 mValue = value; 56 public void replaceWith(ResourceValue value) { 57 mValue = value.mValue;
|