/art/runtime/ |
D | utf-inl.h | 25 uint8_t one = *(*utf8_data_in)++; in GetUtf16FromUtf8() local 26 if ((one & 0x80) == 0) { in GetUtf16FromUtf8() 28 return one; in GetUtf16FromUtf8() 32 if ((one & 0x20) == 0) { in GetUtf16FromUtf8() 34 return ((one & 0x1f) << 6) | (two & 0x3f); in GetUtf16FromUtf8() 38 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); in GetUtf16FromUtf8()
|
/art/test/050-sync-test/src/ |
D | Main.java | 48 CpuThread one, two; in countTest() local 50 one = new CpuThread(1); in countTest() 53 synchronized (one) { in countTest() 54 one.start(); in countTest() 56 one.wait(); in countTest() 68 one.join(); in countTest()
|
/art/test/047-returns/ |
D | expected.txt | 2 one running 3 one
|
/art/test/005-annotations/src/android/test/anno/ |
D | FullyNoted.java | 20 @AnnoSimpleParameter int one, in bar() 29 @AnnoSimpleParameter int one, in bar1()
|
/art/test/093-serialization/src/ |
D | Main.java | 95 Boolean one; field in Base 100 one = true; in Base() 127 System.out.println("one=" + one + " two=" + two + " three=" + three in check()
|
/art/test/003-omnibus-opcodes/src/ |
D | Throw.java | 29 public void one() { in one() method in Throw 119 th.one(); in run()
|
D | IntMath.java | 91 int one = thirtyTwo / 32; in shiftTest3() local 99 Main.assertTrue(1 << -one == -2147483648); in shiftTest3() 107 Main.assertTrue(1 >> -one == 0); in shiftTest3() 115 Main.assertTrue(1 >>> -one == 0); in shiftTest3()
|
/art/test/068-classloader/src/ |
D | DoubledImplement2.java | 29 public void one() { in one() method in DoubledImplement2
|
D | DoubledImplement.java | 29 public void one() { in one() method in DoubledImplement
|
D | Main.java | 365 di.one(); in useImplement() 423 di2.one(); in testIfaceImplement()
|
/art/test/093-serialization/ |
D | expected.txt | 1 one=true two=2 three=three four=4.0 five=5.0 six=6 seven=7 eight=8 nine=9 thing=X
|
/art/test/015-switch/ |
D | expected.txt | 1 CORRECT (one)
|
/art/test/079-phantom/ |
D | expected.txt | 2 Created Bitmap one: 10x10 (100)
|
/art/test/045-reflect-array/ |
D | expected.txt | 7 zero one two ++
|
/art/test/068-classloader/ |
D | expected.txt | 11 DoubledImplement one
|
/art/test/303-verification-stress/ |
D | info.txt | 2 classes, each one initializing a big array of string in its class initializer.
|
/art/runtime/jdwp/ |
D | jdwp_socket.cc | 128 int one = 1; in SocketStartup() local 129 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) { in SocketStartup()
|
/art/test/064-field-access/ |
D | info.txt | 7 same time, we can only throw one or the other.
|
/art/test/003-omnibus-opcodes/ |
D | expected.txt | 66 Throw.one
|
/art/compiler/ |
D | Android.mk | 304 $(eval $(call copy-one-file, $(call intermediates-dir-for,STATIC_LIBRARIES,libcompiler_rt,,)/libcom… 306 $(eval $(call copy-one-file, $(call intermediates-dir-for,STATIC_LIBRARIES,libcompiler_rt,,,t)/libc…
|
/art/test/046-reflect/src/ |
D | Main.java | 66 String one, two, three, four; in showStrings() local 70 one = (String) field.get(instance); in showStrings() 78 System.out.println(" ::: " + one + ":" + two + ":" + three); in showStrings()
|
/art/test/023-many-interfaces/src/ |
D | ManyInterfaces.java | 191 Interface001 one; in run() local
|
/art/ |
D | NOTICE | 123 pertain to any part of the Derivative Works, in at least one
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 750 mov r3, r2 @ pass one half of wide argument
|