OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:KEY1
(Results
1 - 7
of
7
) sorted by null
/external/clang/test/Preprocessor/
print-pragma-microsoft.c
9
#define
KEY1
"
KEY1
"
14
#pragma detect_mismatch(
KEY1
KEY2, VAL1 VAL2)
15
// CHECK: #pragma detect_mismatch("
KEY1
" "KEY2", "VAL1\"" "VAL2")
/external/u-boot/board/k+p/kp_imx53/
kp_imx53.c
26
#define
KEY1
IMX_GPIO_NR(2, 26)
190
gpio_request(
KEY1
, "KEY1_GPIO");
191
gpio_direction_input(
KEY1
);
193
if (gpio_get_value(
KEY1
))
194
env_set("
key1
", "off");
196
env_set("
key1
", "on");
/cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java
35
private static final String
KEY1
= "name";
46
new Annotation(
KEY1
, VALUE1);
52
mAnnotation = new Annotation(
KEY1
, VALUE1);
61
mAnnotation = new Annotation(
KEY1
, VALUE1);
62
assertEquals(
KEY1
, mAnnotation.getKey());
69
mAnnotation = new Annotation(
KEY1
, VALUE1);
78
mAnnotation = new Annotation(
KEY1
, VALUE1);
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java
38
private static final String
KEY1
= "
key1
";
77
invocationRecord.set(
KEY1
, null);
78
assertNull(
KEY1
, invocationRecord.getObject(
KEY1
));
85
invocationRecord.set(
KEY1
, STRING);
86
assertTrue(
KEY1
, invocationRecord.containsKey(
KEY1
));
108
invocationRecord.set(
KEY1
, STRING);
109
assertEquals(
KEY1
, STRING, invocationRecord.getString(KEY1));
[
all
...]
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java
40
private static final String
KEY1
= "
key1
";
79
invocationRecord.set(
KEY1
, null);
80
assertNull(
KEY1
, invocationRecord.getObject(
KEY1
));
87
invocationRecord.set(
KEY1
, STRING);
88
assertTrue(
KEY1
, invocationRecord.containsKey(
KEY1
));
110
invocationRecord.set(
KEY1
, STRING);
111
assertEquals(
KEY1
, STRING, invocationRecord.getString(KEY1));
[
all
...]
/cts/tests/tests/deviceconfig/src/android/deviceconfig/cts/
DeviceConfigApiTests.java
48
private static final String
KEY1
= "
key1
";
99
nullifyProperty(NAMESPACE1,
KEY1
);
100
nullifyProperty(NAMESPACE2,
KEY1
);
111
deletePropertyThrowShell(NAMESPACE1,
KEY1
);
112
deletePropertyThrowShell(NAMESPACE2,
KEY1
);
124
String result = DeviceConfig.getProperty(EMPTY_NAMESPACE,
KEY1
);
134
DeviceConfig.setProperty(NAMESPACE1,
KEY1
, VALUE1, /*makeDefault=*/false);
135
String result = DeviceConfig.getProperty(NAMESPACE1,
KEY1
);
146
DeviceConfig.setProperty(NAMESPACE1,
KEY1
, VALUE1, /*makeDefault=*/false)
[
all
...]
/cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java
78
private static final String
KEY1
= "
key1
";
103
values.put(COLUMN_KEY_NAME,
KEY1
);
343
assertEquals(
KEY1
, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
[
all
...]
Completed in 710 milliseconds