Home
last modified time | relevance | path

Searched refs:VALUE1 (Results 1 – 11 of 11) sorted by relevance

/external/smali/examples/Enums/
DEnum.smali9 .field public static final enum VALUE1:LEnum;
15 #create an instance of this class for the VALUE1 value
17 const-string v1, "VALUE1"
21 #and store it in VALUE1
22 sput-object v0, LEnum;->VALUE1:LEnum;
37 #add VALUE1 to the array
38 sget-object v1, LEnum;->VALUE1:LEnum;
DMain.smali10 sget-object v1, LEnum;->VALUE1:LEnum;
/external/ltp/testcases/kernel/syscalls/lgetxattr/
Dlgetxattr01.c32 #define VALUE1 "test1" macro
56 set_xattr("testfile", SECURITY_KEY1, VALUE1, strlen(VALUE1)); in setup()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
DTestJacksonAnnotationIntrospector.java27 VALUE1; enumConstant
168 ex.setEnumProperty(EnumExample.VALUE1); in testSerializeDeserializeWithJaxbAnnotations()
200 assertEquals("\"value1\"", mapper.writeValueAsString(EnumExample.VALUE1)); in testEnumHandling()
202 assertEquals(EnumExample.VALUE1, result); in testEnumHandling()
/external/nanopb-c/tests/enum_to_string/
Denum.proto10 VALUE1 = 1; enumerator
/external/robolectric-shadows/processor/src/test/resources/org/robolectric/annotation/processing/shadows/
DDocumentedObjectShadow.java20 VALUE1, VALUE2 enumConstant
/external/llvm-project/llvm/test/Transforms/Coroutines/
Dcoro-retcon-resume-values2.ll75 ; CHECK-NEXT: [[VALUE1:%.*]] = load i32, i32* [[T0]]
79 ; CHECK-NEXT: %sum4 = call i32 @add(i32 %sum3, i32 [[VALUE1]])
/external/dagger2/javatests/dagger/internal/codegen/
DElementDescriptorsTest.java236 VALUE1, enumConstant
/external/python/mock/mock/tests/
Dtestmock.py626 mock.method.side_effect = [sentinel.VALUE1, DEFAULT]
628 self.assertEqual(mock.method(), sentinel.VALUE1)
639 mock.method.side_effect = [sentinel.VALUE1, sentinel.VALUE2]
641 self.assertEqual(mock.method(), sentinel.VALUE1)
688 mock.method.side_effect = [sentinel.VALUE1, sentinel.VALUE2]
691 self.assertEqual(mock.method(), sentinel.VALUE1)
715 mock.method.side_effect = [sentinel.VALUE1, DEFAULT]
718 self.assertEqual(mock.method(), sentinel.VALUE1)
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestmock.py621 mock.method.side_effect = [sentinel.VALUE1, DEFAULT]
623 self.assertEqual(mock.method(), sentinel.VALUE1)
634 mock.method.side_effect = [sentinel.VALUE1, sentinel.VALUE2]
636 self.assertEqual(mock.method(), sentinel.VALUE1)
683 mock.method.side_effect = [sentinel.VALUE1, sentinel.VALUE2]
686 self.assertEqual(mock.method(), sentinel.VALUE1)
710 mock.method.side_effect = [sentinel.VALUE1, DEFAULT]
713 self.assertEqual(mock.method(), sentinel.VALUE1)
/external/python/apitools/apitools/base/protorpclite/
Dmessages_test.py242 VALUE1 = 1 variable in EnumTest.testDocstring.NotImportant