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

<<31323334353637383940>>

  /external/iptables/include/linux/netfilter_ipv4/
ipt_FTOS.h 1 /* Set TOS field in header to any value
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_hl_.h 1 /* ip6tables module for matching the Hop Limit value
  /external/jsr305/ri/src/main/java/javax/annotation/
Syntax.java 11 * This annotation a value that is of a particular syntax, such as Java syntax
24 * Value indicating the particular syntax denoted by this annotation.
37 * Syntax names can be followed by a colon and a list of key value pairs,
41 String value(); method in interface:Syntax
  /external/kernel-headers/original/linux/
bitops.h 35 * rol32 - rotate a 32-bit value left
37 * @word: value to rotate
46 * ror32 - rotate a 32-bit value right
48 * @word: value to rotate
  /external/kernel-headers/original/linux/netfilter_ipv6/
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
  /external/proguard/src/proguard/evaluation/value/
Category1Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
28 public abstract class Category1Value extends Value
30 // Implementations for Value.
Category2Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
28 public abstract class Category2Value extends Value
30 // Implementations for Value.
NegatedDoubleValue.java 21 package proguard.evaluation.value;
24 * This DoubleValue represents a double value that is negated.
34 * Creates a new negated double value of the given double value.
NegatedFloatValue.java 21 package proguard.evaluation.value;
24 * This FloatValue represents a float value that is negated.
34 * Creates a new negated float value of the given float value.
NegatedIntegerValue.java 21 package proguard.evaluation.value;
24 * This IntegerValue represents a integer value that is negated.
34 * Creates a new negated integer value of the given integer value.
NegatedLongValue.java 21 package proguard.evaluation.value;
24 * This LongValue represents a long value that is negated.
34 * Creates a new negated long value of the given long value.
  /external/quake/quake/src/QW/server/
notes.txt 7 - M value changes for each server randomly
  /external/skia/src/animator/
SkScriptCallBack.h 33 virtual bool invoke(size_t ref, SkOpArray* params, SkOperand2* value) = 0;
40 virtual bool invoke(size_t ref, void* object, SkOperand2* value) = 0;
48 virtual bool invoke(size_t ref, void* object, SkOpArray* params, SkOperand2* value) = 0;
53 virtual bool getConstValue(const char* name, size_t len, SkOperand2* value) { return false; }
  /external/srec/srec/AcousticModels/include/
SR_AcousticModels.h 69 * @param value Parameter value
71 ESR_ReturnCode(*setParameter)(struct SR_AcousticModels_t* self, const LCHAR* key, LCHAR* value);
73 * Returns AcousticModels parameter value.
77 * @param value [in/out] Parameter value
78 * @param len [in/out] Length of value argument. If the return code is ESR_BUFFER_OVERFLOW,
81 ESR_ReturnCode(*getParameter)(struct SR_AcousticModels_t* self, const LCHAR* key, LCHAR* value, size_t* len);
149 * @param value Parameter value
    [all...]
  /external/webkit/LayoutTests/storage/domstorage/localstorage/
private-browsing-affects-storage-expected.txt 2 Initial value of testItem is: InitialValue
simple-usage.html 22 log("Value for FOO is " + localStorage.getItem("FOO"));
27 log("Value for FOO is " + localStorage.getItem("FOO"));
35 log("Value for FOO is " + localStorage.getItem("FOO"));
40 log("Value for FOO is " + localStorage.getItem("FOO"));
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/
private-browsing-affects-storage-expected.txt 2 Initial value of testItem is: InitialValue
simple-usage.html 22 log("Value for FOO is " + window.sessionStorage.getItem("FOO"));
27 log("Value for FOO is " + window.sessionStorage.getItem("FOO"));
35 log("Value for FOO is " + window.sessionStorage.getItem("FOO"));
40 log("Value for FOO is " + window.sessionStorage.getItem("FOO"));
  /external/webkit/WebCore/bindings/scripts/
InFilesParser.pm 77 # - the commonParameterHandler called when parsing the first part of the file with the parameter and the value.
78 # - the perTagHandler called for each optional parameter with the element name, the parameter and its value.
79 # If no parameter were provided, it is called once with an empty parameter and value.
109 my ($name, $value) = split '=', $_;
112 if (defined($value)) {
113 $value = trimQuoteAndWS($value);
116 $value = "1";
119 &$commonParameterHandler($name, $value);
129 my ($option, $value);
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLCollectionCustom.cpp 44 static v8::Handle<v8::Value> getNamedItems(HTMLCollection* collection, AtomicString name)
50 return v8::Handle<v8::Value>();
59 static v8::Handle<v8::Value> getItem(HTMLCollection* collection, v8::Handle<v8::Value> argument)
63 v8::Handle<v8::Value> result = getNamedItems(collection, toWebCoreString(argument->ToString()));
75 v8::Handle<v8::Value> V8HTMLCollection::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
79 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); local
81 if (!value.IsEmpty())
82 return value;
    [all...]
V8StorageCustom.cpp 58 static v8::Handle<v8::Value> storageGetter(v8::Local<v8::String> v8Name, const v8::AccessorInfo& info)
69 v8::Handle<v8::Value> V8Storage::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
76 v8::Handle<v8::Value> V8Storage::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
82 static v8::Handle<v8::Value> storageSetter(v8::Local<v8::String> v8Name, v8::Local<v8::Value> v8Value, const v8::AccessorInfo& info)
86 String value = toWebCoreString(v8Value); local
92 v8::Handle<v8::Value> prototypeValue = info.Holder()->GetRealNamedPropertyInPrototypeChain(v8Name);
97 storage->setItem(name, value, ec);
104 v8::Handle<v8::Value> V8Storage::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info
    [all...]
  /external/webkit/WebCore/html/
HTMLModElement.cpp 41 void HTMLModElement::setCite(const String& value)
43 setAttribute(citeAttr, value);
51 void HTMLModElement::setDateTime(const String& value)
53 setAttribute(datetimeAttr, value);
  /external/webkit/WebCore/manual-tests/
drag-move-in-search-field.html 5 <input id="foo" type="search" value="lorem ipsum dolor">
form-element-spelling.html 3 <textarea>Helo everibody</textarea><input type="text" value="Helo everibody">
open-close-tokenizer-crash.html 3 <input type="button" value="Click Here" onclick="window.open('resources/open-close-tokenizer-crash.html', 'foo');">

Completed in 126 milliseconds

<<31323334353637383940>>