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

1 2 3 4

  /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
  /external/walt/pywalt/pywalt/
evparser.py 5 VALUE = 'value'
8 re_xy = re.compile(r'.*time (?P<time>\d+\.\d+), type \d+ \(EV_ABS\), code \d+ \(ABS_(?P<axis>[XY])\), value (?P<value>\d+)')
9 re_tap = re.compile(r'.*time (?P<time>\d+\.\d+), type \d+ \(EV_KEY\), code \d+ \(BTN_TOUCH\), value (?P<value>\d+)')
17 x = array([int(e[VALUE]) for e in events if e[AXIS] == 'X'])
20 y = array([int(e[VALUE]) for e in events if e[AXIS] == 'Y'])
32 val = int(m.group(VALUE))
  /cts/tests/sample/src/android/sample/cts/
SampleJUnit4DeviceTest.java 39 private static final String VALUE = "bar";
47 * This inserts the key value pair and assert they can be retrieved. Then it clears the
54 // Save the key value pair to the preferences and assert they were saved.
55 mActivityRule.getActivity().savePreference(KEY, VALUE);
56 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));
  /art/tools/class2greylist/src/com/android/class2greylist/
RepeatedAnnotationHandler.java 17 private static final String VALUE = "value";
30 ElementValuePair value = findValue(annotation); local
31 if (value == null) {
32 context.reportError("No value found on %s", annotation.getAnnotationType());
35 Preconditions.checkArgument(value.getValue() instanceof ArrayElementValue);
36 ArrayElementValue array = (ArrayElementValue) value.getValue();
50 if (property.getNameString().equals(VALUE)) {
  /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/libese/apps/weaver/tests/
weaver_test.cpp 27 const uint8_t VALUE[kEseWeaverValueSize] = {
64 ASSERT_EQ(ese_weaver_write(&mSession, slotId, KEY, VALUE), ESE_APP_RESULT_OK);
69 ASSERT_EQ(0, memcmp(VALUE, readValue, kEseWeaverValueSize));
74 ASSERT_EQ(ese_weaver_write(&mSession, slotId, KEY, VALUE), ESE_APP_RESULT_OK);
80 ASSERT_NE(0, memcmp(VALUE, readValue, kEseWeaverValueSize));
86 ASSERT_EQ(ese_weaver_write(&mSession, slotId, KEY, VALUE), ESE_APP_RESULT_OK);
89 // The read should be successful as the key is unchanged but the value should
  /external/ltp/testcases/kernel/syscalls/flistxattr/
flistxattr01.c 43 #define VALUE "test"
44 #define VALUE_SIZE (sizeof(VALUE) - 1)
83 SAFE_FSETXATTR(fd, SECURITY_KEY1, VALUE, VALUE_SIZE, XATTR_CREATE);
flistxattr02.c 43 #define VALUE "test"
44 #define VALUE_SIZE (sizeof(VALUE) - 1)
85 SAFE_FSETXATTR(fd1, SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
flistxattr03.c 41 #define VALUE "test"
42 #define VALUE_SIZE (sizeof(VALUE) - 1)
76 SAFE_FSETXATTR(fd[1], SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
  /external/ltp/testcases/kernel/syscalls/lgetxattr/
lgetxattr02.c 23 * 2) lgetxattr(2) fails if the size of the value buffer is too small
47 #define VALUE "this is a test value"
54 {"testfile", sizeof(VALUE), ENODATA},
56 {(char *)-1, sizeof(VALUE), EFAULT}
85 res = lsetxattr("symlink", SECURITY_KEY, VALUE, strlen(VALUE), XATTR_CREATE);
  /external/ltp/testcases/kernel/syscalls/listxattr/
listxattr01.c 43 #define VALUE "test"
44 #define VALUE_SIZE (sizeof(VALUE) - 1)
82 SAFE_SETXATTR(TESTFILE, SECURITY_KEY1, VALUE, VALUE_SIZE, XATTR_CREATE);
listxattr02.c 49 #define VALUE "test"
50 #define VALUE_SIZE (sizeof(VALUE) - 1)
93 SAFE_SETXATTR(TESTFILE, SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
listxattr03.c 40 #define VALUE "test"
41 #define VALUE_SIZE (sizeof(VALUE) - 1)
77 SAFE_SETXATTR(filename[1], SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
  /external/ltp/testcases/kernel/syscalls/llistxattr/
llistxattr01.c 42 #define VALUE "test"
43 #define VALUE_SIZE (sizeof(VALUE) - 1)
90 SAFE_LSETXATTR(TESTFILE, SECURITY_KEY1, VALUE, VALUE_SIZE, XATTR_CREATE);
92 SAFE_LSETXATTR(SYMLINK, SECURITY_KEY2, VALUE, VALUE_SIZE, XATTR_CREATE);
llistxattr02.c 47 #define VALUE "test"
48 #define VALUE_SIZE (sizeof(VALUE) - 1)
94 SAFE_LSETXATTR(SYMLINK, SECURITY_KEY, VALUE, VALUE_SIZE, XATTR_CREATE);
llistxattr03.c 39 #define VALUE "test"
40 #define VALUE_SIZE (sizeof(VALUE) - 1)
76 SAFE_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);
  /external/v8/src/interpreter/
setup-interpreter-internal.cc 37 #define VALUE(Name, _) OperandScale::k##Name,
38 OPERAND_SCALE_LIST(VALUE)
39 #undef VALUE
  /external/v8/src/snapshot/
builtin-snapshot-utils.cc 54 #define VALUE(Name, _) OperandScale::k##Name,
55 OPERAND_SCALE_LIST(VALUE)
56 #undef VALUE
  /external/ltp/testcases/kernel/syscalls/signal/
signal06.c 59 #define VALUE 123.456
71 D = VALUE;
72 while (D == VALUE && loop < LOOPS) {

Completed in 1832 milliseconds

1 2 3 4