HomeSort by relevance Sort by last modified time
    Searched refs:IntHolder (Results 1 - 15 of 15) sorted by null

  /art/test/084-class-init/src/
PartialInit.java 22 public static final IntHolder FIELD0 = new IntHolder(1); // succeeds
23 public static final IntHolder FIELD1 = new IntHolder(-2); // throws
SlowInit.java 22 public static final IntHolder FIELD0 = new IntHolder(0);
23 public static final IntHolder FIELD1 = new IntHolder(0);
24 public static final IntHolder FIELD2 = new IntHolder(0);
25 public static final IntHolder FIELD3 = new IntHolder(0);
IntHolder.java 21 public class IntHolder {
25 * Constructs an IntHolder with the specified value. Throws an
28 public IntHolder(int initialVal) {
Main.java 88 IntHolder zero = SlowInit.FIELD0;
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p4.cpp 3 struct IntHolder { // expected-note{{here}} // expected-note 2{{candidate constructor (the implicit copy constructor)}}
4 IntHolder(int); // expected-note 2{{candidate constructor}}
25 IntHolder &test_X_IntHolderInt(X<IntHolder, int> xih) {
29 X<IntHolder, int>::Inner inner; // expected-note {{first required here}}
31 return X<IntHolder, int>::value; // expected-note{{instantiation}}
34 // Explicitly specialize the members of X<IntHolder, long> to not cause
37 void X<IntHolder, long>::f() { }
40 struct X<IntHolder, long>::Inner {
42 IntHolder value
    [all...]
p5.cpp 3 struct IntHolder {
4 IntHolder(int);
25 // Explicitly specialize the members of X<IntHolder, long> to not cause
28 void X<IntHolder, long>::f();
31 struct X<IntHolder, long>::Inner; // expected-note{{forward declaration}}
34 IntHolder X<IntHolder, long>::value;
36 IntHolder &test_X_IntHolderInt(X<IntHolder, long> xih) {
40 X<IntHolder, long>::Inner inner; // expected-error {{incomplete}
    [all...]
  /external/compiler-rt/test/asan/TestCases/
use-after-scope-temp.cc 7 struct IntHolder {
11 const IntHolder *saved;
13 void save(const IntHolder &holder) {
use-after-scope-dtor-order.cc 6 struct IntHolder {
7 explicit IntHolder(int *val = 0) : val_(val) { }
8 ~IntHolder() {
11 // CHECK: #0 0x{{.*}} in IntHolder::~IntHolder{{.*}}.cc:[[@LINE-2]]
20 // It is incorrect to use "x" int IntHolder destructor, because "x" is
22 IntHolder holder;
  /art/test/141-class-unload/src-ex/
IntHolder.java 19 public class IntHolder {
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMapTest.java 462 private static class IntHolder implements Serializable {
465 public IntHolder(int value) {
470 return (o instanceof IntHolder) && ((IntHolder) o).value == value;
481 IntHolder holderA = new IntHolder(1);
482 IntHolder holderB = new IntHolder(2);
483 Map<String, IntHolder> map = ImmutableMap.of("a", holderA, "b", holderB);
486 Maps.immutableEntry("a", new IntHolder(3))))
    [all...]
ImmutableSortedMapTest.java 579 private static class IntHolder implements Serializable {
582 public IntHolder(int value) {
587 return (o instanceof IntHolder) && ((IntHolder) o).value == value;
598 IntHolder holderA = new IntHolder(1);
599 IntHolder holderB = new IntHolder(2);
600 Map<String, IntHolder> map
603 assertTrue(map.entrySet().contains(Maps.immutableEntry("a", new IntHolder(3))))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMapTest.java 614 private static class IntHolder implements Serializable {
617 public IntHolder(int value) {
622 return (o instanceof IntHolder) && ((IntHolder) o).value == value;
633 IntHolder holderA = new IntHolder(1);
634 IntHolder holderB = new IntHolder(2);
635 Map<String, IntHolder> map = ImmutableMap.of("a", holderA, "b", holderB);
638 Maps.immutableEntry("a", new IntHolder(3))))
    [all...]
ImmutableSortedMapTest.java 668 private static class IntHolder implements Serializable {
671 public IntHolder(int value) {
676 return (o instanceof IntHolder) && ((IntHolder) o).value == value;
687 IntHolder holderA = new IntHolder(1);
688 IntHolder holderB = new IntHolder(2);
689 Map<String, IntHolder> map
692 assertTrue(map.entrySet().contains(Maps.immutableEntry("a", new IntHolder(3))))
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
nashorn.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
nashorn.jar 

Completed in 546 milliseconds