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

<<31323334353637383940>>

  /external/webkit/WebCore/manual-tests/wml/
variable-substitution.wml 9 <setvar name="hi" value="hello"/>
10 <setvar name="name" value=" Yi chao"/>
11 <setvar name="name2" value="$(name:e)"/>
12 <setvar name="name3" value="$(name2:u)"/>
  /external/webkit/WebCore/platform/graphics/
Gradient.cpp 89 void Gradient::addColorStop(float value, const Color& color)
96 m_stops.append(ColorStop(value, r, g, b, a));
118 void Gradient::getColor(float value, float* r, float* g, float* b, float* a) const
120 ASSERT(value >= 0);
121 ASSERT(value <= 1);
135 if (value <= 0 || value <= m_stops.first().stop) {
142 if (value >= 1 || value >= m_stops.last().stop) {
151 int stop = findStop(value);
    [all...]
  /external/webkit/WebKit/chromium/src/
WebDevToolsFrontendImpl.h 130 static v8::Handle<v8::Value> jsLoaded(const v8::Arguments& args);
131 static v8::Handle<v8::Value> jsPlatform(const v8::Arguments& args);
132 static v8::Handle<v8::Value> jsPort(const v8::Arguments& args);
133 static v8::Handle<v8::Value> jsCopyText(const v8::Arguments& args);
135 static v8::Handle<v8::Value> jsActivateWindow(const v8::Arguments& args);
136 static v8::Handle<v8::Value> jsCloseWindow(const v8::Arguments& args);
137 static v8::Handle<v8::Value> jsDockWindow(const v8::Arguments& args);
138 static v8::Handle<v8::Value> jsUndockWindow(const v8::Arguments& args);
139 static v8::Handle<v8::Value> jsLocalizedStringsURL(const v8::Arguments& args);
140 static v8::Handle<v8::Value> jsHiddenPanels(const v8::Arguments& args)
    [all...]
  /external/webkit/WebKitTools/pywebsocket/test/
test_mock.py 96 table = mock.MockTable({'Key':'Value'})
97 self.assertEqual('Value', table.get('KEY'))
98 self.assertEqual('Value', table['key'])
101 table = mock.MockTable([('Key', 'Value')])
102 self.assertEqual('Value', table.get('KEY'))
103 self.assertEqual('Value', table['key'])
106 table = mock.MockTable((('Key', 'Value'),))
107 self.assertEqual('Value', table.get('KEY'))
108 self.assertEqual('Value', table['key'])
113 table['Key'] = 'Value'
    [all...]
  /frameworks/base/awt/java/awt/
Transparency.java 33 * alpha value of 1.0.
39 * opaque, with an alpha value of 1.0, or completely transparent, with an
40 * alpha value of 0.0.
45 * The Constant TRANSLUCENT represents data which alpha value can vary
  /frameworks/base/awt/java/awt/font/
GlyphJustificationInfo.java 71 * The grow left limit value represents the maximum value by which the left
77 * The grow right limit value repesents the maximum value by which the right
83 * The grow priority value represents the priority level of this glyph as it
95 * The shrink left limit value represents the maximum value by which the
101 * The shrink right limit value represents the maximum value by which the
129 * indicates the maximum value of which the left side of thi
    [all...]
  /frameworks/base/core/config/
README.txt 2 by ../../Android.mk depending on the value of $(TARGET_BUILD_TYPE).
  /frameworks/base/core/tests/coretests/res/raw/
v21_winmo_65.vcf 5 ANNIVERSARY;VALUE=DATE:20091010
  /frameworks/base/docs/html/guide/topics/manifest/
meta-data-element.jd 8 android:<a href="#val">value</a>="<i>string</i>" /&gt;</pre></dd>
17 <dd>A name-value pair for an item of additional, arbitrary data that can
26 Ordinary values are specified through the <code><a href="{@docRoot}guide/topics/manifest/meta-data-element.html#value">value</a></code>
27 attribute. However, to assign a resource ID as the value, use the
29 the following code assigns whatever value is stored in the {@code @string/kangaroo}
33 <pre>&lt;meta-data android:name="zoo" android:value="@string/kangaroo" /&gt;</pre>
37 the numeric ID of the resource, not the value stored in the resource:
57 <dd>A reference to a resource. The ID of the resource is the value assigned
61 <dt><a name="val"></a>{@code android:value}</dt
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserPreferencesPage.java 127 Boolean value = (Boolean) objValue; local
128 if (value.booleanValue() == true) {
132 String value = (String) objValue; local
133 boolean needUpdate = value.indexOf(' ') != -1;
135 value = value.trim().replace(" ", "%20");
137 if (value.length() != 0 && Uri.parse(value).getScheme() == null) {
138 value = "http://" + value;
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
ImpsUtils.java 45 * Checks if a string is a boolean value of true IMPS.
47 * @param value the string value.
50 public static boolean isTrue(String value) {
51 return ImpsConstants.TRUE.equalsIgnoreCase(value);
55 * Checks if a string is a boolean value of false in IMPS.
57 * @param value the string value.
60 public static boolean isFalse(String value) {
61 return ImpsConstants.FALSE.equalsIgnoreCase(value);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
TextValueCellEditor.java 35 protected void doSetValue(Object value) {
36 if (value instanceof UiAttributeNode) {
37 super.doSetValue(((UiAttributeNode)value).getCurrentValue());
41 super.doSetValue(value);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
IUiSettableAttributeNode.java 22 * set and get its current value.
26 /** Returns the current value of the node. */
29 /** Sets the current value of the node. Cannot be null (use an empty string). */
30 public void setCurrentValue(String value);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
HardwareProperties.java 54 ValueType(String value) {
55 mValue = value;
62 public static ValueType getEnum(String value) {
64 if (type.mValue.equals(value)) {
76 /** the string representation of the default value. can be null. */
106 * @return the map of (key,value) pairs, or null if the parsing failed.
122 String value = m.group(2); local
126 prop.mName = value;
137 prop.mType = ValueType.getEnum(value);
139 prop.mDefault = value;
    [all...]
  /system/bluetooth/data/
blacklist.conf 5 // Module,Type,Value List,Parameter List, //Comment
  /system/core/nexus/
WifiController.h 49 virtual int set(int idx, int value) = 0;
61 virtual int set(int idx, const char *value) = 0;
70 int set(int idx, int value);
78 int set(int idx, int value);
86 int set(int idx, int value);
94 int set(int idx, int value);
102 int set(int idx, int value) { return -1; }
110 int set(int idx, int value);
118 int set(int idx, int value);
126 int set(int idx, int value);
    [all...]
  /system/core/toolbox/
setprop.c 8 fprintf(stderr,"usage: setprop <key> <value>\n");
watchprops.c 28 char value[PROP_VALUE_MAX]; local
31 __system_property_read(pi, name, value);
33 for(x = value; *x; x++) {
37 fprintf(stderr,"%10d %s = '%s'\n", (int) time(0), name, value);
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form31i.java 47 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local
49 return regs.get(0).regString() + ", " + literalBitsString(value);
55 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local
56 return literalBitsComment(value, 32);
95 int value = local
100 (short) value,
101 (short) (value >> 16));
  /dalvik/dx/src/com/android/dx/util/
ListIntSet.java 38 public void add(int value) {
39 int index = ints.binarysearch(value);
42 ints.insert(-(index + 1), value);
47 public void remove(int value) {
48 int index = ints.indexOf(value);
56 public boolean has(int value) {
57 return ints.indexOf(value) >= 0;
  /dalvik/libcore/awt-kernel/src/main/java/java/beans/
PropertyChangeSupport.java 69 * Fires a {@link PropertyChangeEvent} with the given name, old value and
70 * new value. As source the bean used to initialize this instance is used.
71 * If the old value and the new value are not null and equal the event will
77 * the old value of the property
79 * the new value of the property
90 * value, new value and index. As source the bean used to initialize this
91 * instance is used. If the old value and the new value are not null an
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MathTest.java 61 assertTrue("Incorrect double abs value",
63 assertTrue("Incorrect double abs value",
86 assertTrue("Incorrect float abs value",
88 assertTrue("Incorrect float abs value",
112 assertTrue("Incorrect int abs value", (Math.abs(-1908897) == 1908897));
113 assertTrue("Incorrect int abs value", (Math.abs(1908897) == 1908897));
129 assertTrue("Incorrect long abs value",
131 assertTrue("Incorrect long abs value",
392 assertEquals("Incorrect returned value for NaN",
394 assertEquals("Incorrect returned value for positive infinity",
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_APUT.S 20 * to specify a scale value which depends on the width of the array
23 * Provides a "value" register to specify the source of the move
27 * Description: Perform an array put operation from the value register;
28 * store the value register at the identified index of a
36 %default { "mov":"l","scale":"4", "value": "rINST"}
49 mov$mov $value, offArrayObject_contents(%ecx) # vBB[vCC]<- rINSTx; value
  /development/simulator/app/
Preferences.h 16 * All value are stored as strings. The class doesn't really try to
39 * Retrieve a value from the preferences database.
41 * These return "false" if the value was not found or could not be
42 * converted to the expected type. The value pointed to be the second
45 * The value set by GetString(const char*, char**) will be set to
58 * Set a value in the database.
76 * Get the value of the "dirty" flag.
  /device/htc/common/updater/
recovery_updater.c 27 Value* UpdateFn(const char* name, State* state, int argc, Expr* argv[]) {
39 Value* image;
40 Value* width_string;
41 Value* height_string;
42 Value* bpp_string;
43 Value* busy;
44 Value* fail;

Completed in 221 milliseconds

<<31323334353637383940>>