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

1 2 3 4 5 6 7 8 91011>>

  /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/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 28 VALUE
  /cts/tests/sample/src/android/sample/cts/
SampleJUnit4DeviceTest.java 43 private static final String VALUE = "bar";
51 * This inserts the key value pair and assert they can be retrieved. Then it clears the
58 // Save the key value pair to the preferences and assert they were saved.
59 mActivityRule.getActivity().savePreference(KEY, VALUE);
60 Assert.assertEquals("Preferences were not saved", VALUE,
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/guava/guava/src/com/google/common/collect/
Maps.java 93 VALUE {
109 return (Function) EntryFunction.VALUE;
211 return Integer.MAX_VALUE; // any large value
271 * such as the concurrency level, load factor, key/value reference types,
272 * and value computation.
396 * equality, the value on the 'left' is returned in the difference.
525 result.append(": value differences=").append(differences);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Maps.java 88 VALUE {
104 return (Function) EntryFunction.VALUE;
206 return Integer.MAX_VALUE; // any large value
266 * such as the concurrency level, load factor, key/value reference types,
267 * and value computation.
391 * equality, the value on the 'left' is returned in the difference.
520 result.append(": value differences=").append(differences);
906 * keys} and whose value for each key was computed by {@code valueFunction}.
926 * keys} and whose value for each key was computed by {@code valueFunction}.
951 * supplied function on its corresponding value
    [all...]
  /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...]
  /external/ltp/testcases/kernel/syscalls/llistxattr/
llistxattr01.c 42 #define VALUE "test"
50 n = lsetxattr(path, key, VALUE, VALUE_SIZE, XATTR_CREATE);
llistxattr02.c 45 #define VALUE "test"
89 n = lsetxattr("symlink", SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
llistxattr03.c 39 #define VALUE "test"
80 ret = lsetxattr(filename[1], SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
  /external/ltp/testcases/kernel/syscalls/removexattr/
removexattr01.c 41 #define VALUE "test"
42 #define VALUE_SIZE (sizeof(VALUE) - 1)
74 n = setxattr("testfile", USER_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicBoolean.java 39 * A {@code boolean} value that may be updated atomically. See the
53 private static final long VALUE;
57 VALUE = U.objectFieldOffset
58 (AtomicBoolean.class.getDeclaredField("value"));
64 private volatile int value; field in class:AtomicBoolean
67 * Creates a new {@code AtomicBoolean} with the given initial value.
69 * @param initialValue the initial value
72 value = initialValue ? 1 : 0;
76 * Creates a new {@code AtomicBoolean} with initial value {@code false}.
82 * Returns the current value
    [all...]
AtomicReference.java 53 private static final long VALUE;
57 VALUE = U.objectFieldOffset
58 (AtomicReference.class.getDeclaredField("value"));
64 private volatile V value; field in class:AtomicReference
67 * Creates a new AtomicReference with the given initial value.
69 * @param initialValue the initial value
72 value = initialValue;
76 * Creates a new AtomicReference with null initial value.
82 * Gets the current value.
84 * @return the current value
    [all...]
AtomicInteger.java 42 * An {@code int} value that may be updated atomically. See the
58 private static final long VALUE;
62 VALUE = U.objectFieldOffset
63 (AtomicInteger.class.getDeclaredField("value"));
69 private volatile int value; field in class:AtomicInteger
72 * Creates a new AtomicInteger with the given initial value.
74 * @param initialValue the initial value
77 value = initialValue;
81 * Creates a new AtomicInteger with initial value {@code 0}.
87 * Gets the current value
    [all...]
AtomicLong.java 42 * A {@code long} value that may be updated atomically. See the
58 private static final long VALUE;
76 VALUE = U.objectFieldOffset
77 (AtomicLong.class.getDeclaredField("value"));
83 private volatile long value; field in class:AtomicLong
86 * Creates a new AtomicLong with the given initial value.
88 * @param initialValue the initial value
91 value = initialValue;
95 * Creates a new AtomicLong with initial value {@code 0}.
101 * Gets the current value
    [all...]
  /external/caliper/caliper/src/test/java/com/google/caliper/memory/
ObjectGraphMeasurerTest.java 34 VALUE;
37 @SuppressWarnings("unused") DummyEnum enumField = DummyEnum.VALUE;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
Resolver.java 47 public static final Pattern VALUE = Pattern.compile("^(?:=)$");
102 public Tag resolve(NodeId kind, String value, boolean implicit) {
105 if (value.length() == 0) {
108 resolvers = yamlImplicitResolvers.get(value.charAt(0));
114 if (regexp.matcher(value).matches()) {
123 if (regexp.matcher(value).matches()) {
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
GoogleLocationSettingHelper.java 47 private static final String VALUE = "value";
62 * Get the current value for the 'Use value for location' setting.
75 new String[] {VALUE},
95 int value; local
97 value = Integer.parseInt(stringValue);
99 value = USE_LOCATION_FOR_SERVICES_NOT_SET;
101 return 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...]
  /cts/tests/JobScheduler/src/android/jobscheduler/
DummyJobContentProvider.java 45 public static final String VALUE = "value";
72 + NAME + " TEXT," + VALUE + " TEXT"+ ");");
92 db.insert(tbName, VALUE, values);
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpPostRequestTest.java 52 public static final String VALUE = "Summer vacation";
60 public static final String VALUE_TEST_SIMPLE_RAW_DATA_WITH_AMPHASIS = "Test raw data & Result value";
89 String fileContent = HttpPostRequestTest.VALUE;
105 String fileContent = HttpPostRequestTest.VALUE;
120 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE + "\r\n"
130 assertEquals(HttpPostRequestTest.VALUE, this.testServer.parms.get(HttpPostRequestTest.FIELD));
139 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE + "\r\n"
149 assertEquals(HttpPostRequestTest.VALUE, this.testServer.parms.get(HttpPostRequestTest.FIELD));
158 "--" + divider + "\r\n" + "Content-Disposition: form-data; name=\"" + HttpPostRequestTest.FIELD + "\"\r\n" + "\r\n" + HttpPostRequestTest.VALUE + "\r\n"
167 assertEquals(HttpPostRequestTest.VALUE, this.testServer.parms.get(HttpPostRequestTest.FIELD))
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
DummyProvider.java 55 public static final String VALUE = "value";
83 + NAME + " TEXT," + VALUE + " TEXT"+ ");");
103 db.insert(tbName, VALUE, values);
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser.h 104 VALUE, // Expects a {, [, true, false, null, string or number
108 ARRAY_VALUE, // Expects a value or ]
131 // Parses a value from p_ and writes it to ow_.
132 // A value may be an object, array, true, false, null, string or number.
157 // Handles a { during parsing of a value.
169 // Handles a [ during parsing of a value.
207 // have parsed a single value from the root (e.g. an object or list).
241 // A value of 0 indicates that string parsing is not in process.

Completed in 985 milliseconds

1 2 3 4 5 6 7 8 91011>>