Searched refs:parentValue (Results 1 – 7 of 7) sorted by relevance
34 Object parentValue = new Object(); in childValue_shouldReturnInputArgument() local35 assertEquals(parentValue, threadLocal.childValue(parentValue)); in childValue_shouldReturnInputArgument()41 public T childValue(T parentValue) { in childValue() argument42 return super.childValue(parentValue); in childValue()
31 protected Object childValue(Object parentValue) { in test_Ljava_lang_InheritableThreadLocal()32 assertSame(value, parentValue); in test_Ljava_lang_InheritableThreadLocal()59 protected String childValue(String parentValue) { in test_childValue()
61 protected T childValue(T parentValue) { in childValue() argument62 return parentValue; in childValue()
266 T childValue(T parentValue) { in childValue() argument
37 protected Integer childValue(Integer parentValue) {38 return new Integer(parentValue.intValue() + 1);
61 protected Integer childValue(Integer parentValue) {62 return new Integer(parentValue.intValue() + 1);
80 T childValue(T parentValue) { in childValue() argument