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

1 2 3 4 5

  /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/extensions/browser/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 41 VALUE = 1
43 def convert_value_to_int(value):
44 if not value:
46 assert(value[0] == "U")
47 assert(value[1] == "+")
48 return "0x" + value[2:]
173 values = entry[VALUE].split(' ')
  /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));
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpPostRequestTest.java 18 public static final String VALUE = "Summer vacation";
22 public static final String VALUE_TEST_SIMPLE_RAW_DATA_WITH_AMPHASIS = "Test raw data & Result value";
46 VALUE +"\n" +
55 assertEquals(VALUE, testServer.parms.get(FIELD));
66 VALUE +"\n" +"--" + divider + "\n" +
78 assertEquals(VALUE, testServer.parms.get(FIELD));
90 VALUE +"\n" +"--" + divider + "\n" +
102 assertEquals(VALUE, testServer.parms.get(FIELD));
109 String fileContent = VALUE;
123 String fileContent = VALUE;
    [all...]
  /cts/tests/tests/content/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 8 #include "src/ast-value-factory.h"
17 // interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
27 // value (frozen) module
29 // const fr.value fr.module
45 static Interface value_interface(VALUE + FROZEN); // Cached.
50 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
72 // Determine this interface to be a value interface.
75 if (*ok) Chase()->flags_ |= VALUE;
81 if (*ok) Chase()->flags_ |= VALUE + CONST;
108 // Check whether this is a value type
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
SerializationTest.java 257 VALUE
273 // String s = SerializationTester.serializeHex(WasEnum.VALUE);
299 VALUE;
  /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'}}
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Frame.java 65 * This format is the following: DIM KIND VALUE (4, 4 and 24 bits). DIM is a
70 * stack types. VALUE depends on KIND. For LOCAL types, it is an index in
78 * does not correspond to any valid type value). Input frames can only
118 * Mask to get the value of a frame type.
120 static final int VALUE = 0xFFFFFF;
128 * Mask to get the value of base types.
152 * input stack map frame. The value of such types is a local variable index.
158 * map frame. The value of such types is a position relatively to the top of
523 // so it is still equal to its value in the input frame
529 // so it is still equal to its value in the input frame
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 32 public static final int VALUE = 3;
160 bundle.putInt(KEY, VALUE);
168 assertEquals(VALUE, mMessage.getData().getInt(KEY));
188 bundle.putInt(KEY, VALUE);
198 assertEquals(VALUE, mMessage.getData().getInt(KEY));
  /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 128 * The value of this setting.
133 public static final String VALUE = "value";
205 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE},
220 String value) {
229 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 561 assert(!T.isNull() && "r-value conversion on typeless expression?");
610 // If the lvalue has qualified type, the value has the unqualified
611 // version of the type of the lvalue; otherwise, the value has the
618 // Loading a __weak object implicitly retains the value, so we need a cleanup to
628 // ... if the lvalue has atomic type, the value has the non-atomic version
674 // First, convert to an r-value.
700 // value is converted to an int; otherwise, it is converted to an
742 // operand or a subexpression thereof the value contained in the
    [all...]

Completed in 971 milliseconds

1 2 3 4 5