HomeSort by relevance Sort by last modified time
    Searched defs:VALUE (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/winedlls/
version.rc.h 15 VALUE "CompanyName", "Microsoft Corporation"
16 VALUE "FileDescription", "GalliumD3D1x " NAME " runtime"
17 VALUE "FileVersion", "6.0.6000.16386"
18 VALUE "InternalName", ""
19 VALUE "LegalCopyright", "Copyright (c) 2010 Luca Barbieri and other contributors"
20 VALUE "OriginalFilename", FILENAME ".dll"
21 VALUE "ProductName", "GalliumD3D1x"
22 VALUE "ProductVersion", "6.0.6000.16386"
27 VALUE "Translation", 0x0409, 0x04E4
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/
version.rc.h 15 VALUE "CompanyName", "Microsoft Corporation"
16 VALUE "FileDescription", "GalliumD3D1x " NAME " runtime"
17 VALUE "FileVersion", "6.0.6000.16386"
18 VALUE "InternalName", ""
19 VALUE "LegalCopyright", "Copyright (c) 2010 Luca Barbieri and other contributors"
20 VALUE "OriginalFilename", FILENAME ".dll"
21 VALUE "ProductName", "GalliumD3D1x"
22 VALUE "ProductVersion", "6.0.6000.16386"
27 VALUE "Translation", 0x0409, 0x04E4
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
request_stage.cc 21 enum { VALUE = HighestBit<(n >> 1)>::VALUE << 1 };
25 enum { VALUE = 1 };
28 const unsigned int kLastActiveStage = HighestBit<kActiveStages>::VALUE;
  /external/clang/test/Index/
file-refs.c 2 VALUE = 3
8 return x+glob_x+VALUE;
27 // CHECK: EnumConstantDecl=VALUE:2:3 (Definition)
28 // CHECK-NEXT: EnumConstantDecl=VALUE:2:3 (Definition) =[2:3 - 2:8]
29 // CHECK-NEXT: DeclRefExpr=VALUE:2:3 =[8:19 - 8:24]
targeted-top.h 8 VALUE = 3
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
WrongType.java 27 VALUE
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 64 VALUE("Value") {
68 return call(Type.VALUE, "asVariableValue", expression, TemplateTranslator.DATA_CONTEXT);
70 return call(Type.VALUE, "asValue", expression);
114 // calls with no return value). Wraps the input expression with a
132 * The Java literal representing the type (e.g. "int", "boolean", "Value")
218 * and thus there is no return value.
243 public static JavaExpression string(String value) {
244 return new StringExpression(value);
249 private final String value;
    [all...]
  /cts/tests/sample/src/android/sample/cts/
SampleDeviceTest.java 31 private static final String VALUE = "bar";
62 * This inserts the key value pair and assert they can be retrieved. Then it clears the
68 // Save the key value pair to the preferences and assert they were saved.
69 mActivity.savePreference(KEY, VALUE);
70 assertEquals("Preferences were not saved", VALUE, mActivity.getPreference(KEY));
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
create-html-entity-table 36 VALUE = 1
49 def convert_value_to_int(value):
50 if not value:
52 assert(value[0] == "U")
53 assert(value[1] == "+")
54 return "0x" + value[2:]
129 values = entry[VALUE].split(' ')
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
results.js 53 // 0 is where the count is length is stored. 1 is the value.
56 VALUE: 1
103 var result = testResults[i][results.RLE.VALUE];
  /external/v8/src/
interface.h 39 // interface ::= UNDETERMINED | VALUE | MODULE(exports)
52 static Interface value_interface(VALUE + FROZEN); // Cached.
77 // Determine this interface to be a value interface.
80 if (*ok) Chase()->flags_ |= VALUE;
104 // Check whether this is a value type.
105 bool IsValue() { return Chase()->flags_ & VALUE; }
124 VALUE = 1, // This type describes a value
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
SimpleBackupSharedPreference.java 35 private static final String VALUE = "value";
37 public SimpleBackupSharedPreference(final String key, final Object value) {
39 mValue = value;
52 public void setValue(Object value) {
53 mValue = value;
66 json.put(VALUE, array);
68 json.put(VALUE, mValue);
74 Object value = json.get(VALUE); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ForwardingCheckedFutureTest.java 38 private static final String VALUE = "delegated";
49 expect(delegate.checkedGet()).andReturn(VALUE).times(2);
51 assertEquals(VALUE, forwarded.checkedGet());
52 assertEquals(VALUE, simple.checkedGet());
57 expect(delegate.checkedGet(100, TIME_UNIT)).andReturn(VALUE).times(2);
59 assertEquals(VALUE, forwarded.checkedGet(100, TIME_UNIT));
60 assertEquals(VALUE, simple.checkedGet(100, TIME_UNIT));
  /cts/tests/src/android/content/cts/
DummyProvider.java 58 public static final String VALUE = "value";
86 + NAME + " TEXT," + VALUE + " TEXT"+ ");");
106 db.insert(tbName, VALUE, values);
  /external/chromium_org/v8/src/
interface.h 39 // interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
49 // value (frozen) module
51 // const fr.value fr.module
67 static Interface value_interface(VALUE + FROZEN); // Cached.
72 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
93 // Determine this interface to be a value interface.
96 if (*ok) Chase()->flags_ |= VALUE;
102 if (*ok) Chase()->flags_ |= VALUE + CONST;
129 // Check whether this is a value type.
130 bool IsValue() { return Chase()->flags_ & VALUE; }
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 31 public static final int VALUE = 3;
159 bundle.putInt(KEY, VALUE);
167 assertEquals(VALUE, mMessage.getData().getInt(KEY));
187 bundle.putInt(KEY, VALUE);
197 assertEquals(VALUE, mMessage.getData().getInt(KEY));
  /external/chromium_org/third_party/bintrees/bintrees/
ctrees.c 16 #define VALUE(node) (node->value)
25 ct_new_node(PyObject *key, PyObject *value, int xdata)
31 VALUE(new_node) = value;
32 Py_INCREF(value);
45 Py_XDECREF(VALUE(node));
73 tmp = VALUE(node1);
74 VALUE(node1) = VALUE(node2)
    [all...]
  /external/clang/test/Sema/
warn-duplicate-enum.c 4 A1 = 0, // expected-note {{element A1 also has value 0}}
10 B1 = -1, // expected-note {{element B1 also has value -1}}
15 B6 // expected-note {{element B6 also has value 0}}
19 // expected-note {{element C3 also has value 0}}
26 D5 = 2 // expected-note {{element D5 also has value 2}}
96 VALUE // expected-note{{previous definition is here}}
100 VALUE // expected-error{{redefinition of enumerator 'VALUE'}}
  /frameworks/base/core/java/android/provider/
BrowserContract.java 53 * to specify that it is a sync adapter. The default value is false. If true
679 * Flag indicating that an item is a bookmark. A value of 1 indicates a bookmark, a value
702 * Key for a setting value.
707 * Value for a setting.
709 public static final String VALUE = "value";
722 cursor = context.getContentResolver().query(CONTENT_URI, new String[] { VALUE },
739 values.put(VALUE, enabled ? 1 : 0);
Contacts.java 129 * The value of this setting.
134 public static final String VALUE = "value";
206 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE},
221 String value) {
230 values.put(VALUE, value);
    [all...]
CalendarContract.java 167 * to specify that it is a sync adapter. The default value is false. If set
340 * <P>Type: INTEGER (color value)</P>
523 // Create the content value
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java 70 private static final InternalState VALUE;
103 VALUE = InternalState.getInstanceHtml("VALUE");
135 private final CharacterRecorder value; field in class:HtmlParserImpl
141 // True iff InsertText() was called at the start of a URL attribute value.
158 value = new CharacterRecorder();
176 value = new CharacterRecorder(aHtmlParserImpl.value);
289 return (getState() == STATE_VALUE) ? value.getContent() : "";
302 // False when not inside an HTML attribute value
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 101 /** Column name for the width of the original image. Integer value. */
103 /** Column name for the height of the original image. Integer value. */
107 * value indicating the milliseconds since epoch in the GMT time zone.
111 * Column name indicating the long value of the album id that this image
118 /** The title of the photo. String value. */
120 /** The date the photo entry was last updated. Long value. */
124 * been applied. Integer value.
142 /** The type of album. Non-null, if album is auto-generated. String value. */
149 /** The user-specified location associated with the album. String value. */
151 /** The title of the album. String value. *
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp 557 assert(!T.isNull() && "r-value conversion on typeless expression?");
606 // If the lvalue has qualified type, the value has the unqualified
607 // version of the type of the lvalue; otherwise, the value has the
614 // Loading a __weak object implicitly retains the value, so we need a cleanup to
624 // ... if the lvalue has atomic type, the value has the non-atomic version
652 // First, convert to an r-value.
678 // value is converted to an int; otherwise, it is converted to an
720 // operand or a subexpression thereof the value contained in the
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 474 public static final String VALUE = Data.DATA2;
2979 String value = cursor.getString(Upgrade303Query.DATA1); local
3015 String value = cursor.getString(Upgrade303Query.DATA1); local
4925 Object value = fromValues.get(fromKey); local
4957 String value = null; local
4973 setProperty(getWritableDatabase(), key, value); local
    [all...]

Completed in 568 milliseconds

1 2 3 4