HomeSort by relevance Sort by last modified time
    Searched refs:getValue (Results 1 - 25 of 8453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/638-checker-inline-caches/src/
Super.java 18 abstract int getValue();
Main.java 18 int getValue() { return 42; }
22 int getValue() { return 38; }
26 int getValue() { return 10; }
30 int getValue() { return -4; }
36 /// CHECK: InvokeVirtual method_name:Super.getValue
44 /// CHECK: <<DefaultRet:i\d+>> InvokeVirtual [<<Obj>>] method_name:Super.getValue
51 return a.getValue();
55 /// CHECK: InvokeVirtual method_name:Super.getValue
71 /// CHECK-DAG: <<DefaultRet:i\d+>> InvokeVirtual [<<Obj>>] method_name:Super.getValue
79 return a.getValue();
    [all...]
  /art/test/638-checker-inline-caches/src-multidex/
SubC.java 18 public int getValue() { return 24; }
  /external/clang/test/CXX/over/over.built/
p23.cpp 8 Variant getValue();
11 bool ret1 = getValue() || getValue();
12 bool ret2 = getValue() && getValue();
13 bool ret3 = !getValue();
  /art/test/ProfileTestMultiDex/
Main.java 31 return s.getValue();
35 return s.getValue();
39 return s.getValue();
43 return s.getValue();
47 return s.getValue();
52 abstract int getValue();
56 int getValue() { return 42; }
60 int getValue() { return 38; };
64 int getValue() { return 20; };
68 int getValue() { return 16; }
    [all...]
Second.java 30 int getValue() { return 24; }
  /art/test/643-checker-bogus-ic/src/
Main.java 23 /// CHECK: InvokeVirtual method_name:Main.getValue
26 /// CHECK: InvokeVirtual method_name:Main.getValue
29 return a.getValue();
33 /// CHECK: InvokeVirtual method_name:Main.getValue
36 /// CHECK: InvokeVirtual method_name:Main.getValue
38 return a.getValue();
41 public int getValue() {
  /art/test/707-checker-invalid-profile/src/
Main.java 23 /// CHECK: InvokeVirtual method_name:Main.getValue
25 return a.getValue();
29 /// CHECK: InvokeVirtual method_name:Main.getValue
31 return a.getValue();
34 public int getValue() {
  /external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.cpp 6 int getValue();
33 return ptr->getValue(); // expected-warning {{Called C++ object pointer is null}}
  /external/testng/src/main/java/org/testng/annotations/
IExpectedExceptionsAnnotation.java 12 public Class[] getValue();
IParametersAnnotation.java 25 public String[] getValue();
  /test/suite_harness/tools/dex-tools/src/dex/structure/
DexEncodedValue.java 37 Object getValue();
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyThreadReference.java 46 return getValue().currentContendedMonitor();
50 getValue().forceEarlyReturn(value);
54 return getValue().frame(index);
58 return getValue().frameCount();
62 return getValue().frames();
66 return getValue().frames(start, length);
70 getValue().interrupt();
74 return getValue().isAtBreakpoint();
78 return getValue().isSuspended();
82 return getValue().name()
    [all...]
LazyPrimitiveValue.java 44 return getValue().booleanValue();
48 return getValue().byteValue();
52 return getValue().charValue();
56 return getValue().doubleValue();
60 return getValue().floatValue();
64 return getValue().intValue();
68 return getValue().longValue();
72 return getValue().shortValue();
76 return getValue().toString();
LazyObjectReference.java 48 getValue().disableCollection();
52 return getValue().referenceType();
55 @Override public Value getValue(Field sig) {
56 return getValue().getValue(sig);
60 return getValue().getValues(fields);
64 getValue().setValue(field, value);
71 return getValue().invokeMethod(thread, method, arguments, options);
75 getValue().enableCollection();
79 return getValue().isCollected()
    [all...]
LazyThreadGroupReference.java 49 return getValue().name();
53 return getValue().parent();
57 getValue().resume();
61 getValue().suspend();
65 return getValue().threadGroups();
69 return getValue().threads();
  /external/compiler-rt/test/asan/TestCases/
initialization-constexpr.cc 22 int getValue() {return value;}
25 int getCoolestInteger() { return coolestInteger.getValue(); }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
EncodedValueUtils.java 41 return !((BooleanEncodedValue)encodedValue).getValue();
43 return ((ByteEncodedValue)encodedValue).getValue() == 0;
45 return ((CharEncodedValue)encodedValue).getValue() == 0;
47 return ((DoubleEncodedValue)encodedValue).getValue() == 0;
49 return ((FloatEncodedValue)encodedValue).getValue() == 0;
51 return ((IntEncodedValue)encodedValue).getValue() == 0;
53 return ((LongEncodedValue)encodedValue).getValue() == 0;
57 return ((ShortEncodedValue)encodedValue).getValue() == 0;
  /external/apache-http/src/org/apache/http/
NameValuePair.java 111 String getValue();
Header.java 65 String getValue();
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
PositionMetric.java 60 return getValue();
62 return (size/2f) + getValue();
64 return size - getValue();
75 return size * getValue();
77 return (size/2f) + ((size/2f) * getValue());
79 return size + (size*getValue());
SizeMetric.java 49 return getValue();
51 return getValue() * size;
53 return size - getValue();
  /art/test/078-polymorphic-virtual/src/
Base.java 29 public int getValue() {
  /art/test/084-class-init/src/
IntHolder.java 35 public int getValue() {
  /external/mockito/src/test/java/org/mockitousage/stubbing/
CallingRealMethodTest.java 27 String getValue() {
32 return getValue();
38 when(mock.getValue()).thenReturn("foo");
46 when(mock.getValue()).thenCallRealMethod();
48 assertEquals("HARD_CODED_RETURN_VALUE", mock.getValue());
64 assertEquals("HARD_CODED_RETURN_VALUE", mock.getValue());
71 when(mock.getValue()).thenCallRealMethod();
72 when(mock.getValue()).thenReturn("FAKE_VALUE");
74 assertEquals("FAKE_VALUE", mock.getValue());

Completed in 669 milliseconds

1 2 3 4 5 6 7 8 91011>>