Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 72) sorted by relevance

123

/art/libdexfile/dex/
Dutf-inl.h33 const uint8_t one = *(*utf8_data_in)++; in GetUtf16FromUtf8() local
34 if ((one & 0x80) == 0) { in GetUtf16FromUtf8()
36 return one; in GetUtf16FromUtf8()
40 if ((one & 0x20) == 0) { in GetUtf16FromUtf8()
42 return ((one & 0x1f) << 6) | (two & 0x3f); in GetUtf16FromUtf8()
46 if ((one & 0x10) == 0) { in GetUtf16FromUtf8()
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); in GetUtf16FromUtf8()
59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12) in GetUtf16FromUtf8()
/art/test/ti-agent/
Dti_utf.h68 const uint8_t one = *(*utf8_data_in)++; in GetUtf16FromUtf8() local
69 if ((one & 0x80) == 0) { in GetUtf16FromUtf8()
71 return one; in GetUtf16FromUtf8()
75 if ((one & 0x20) == 0) { in GetUtf16FromUtf8()
77 return ((one & 0x1f) << 6) | (two & 0x3f); in GetUtf16FromUtf8()
81 if ((one & 0x10) == 0) { in GetUtf16FromUtf8()
82 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); in GetUtf16FromUtf8()
94 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12) in GetUtf16FromUtf8()
/art/test/050-sync-test/src/
DMain.java48 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/tools/
Dsymbolize.sh29 function one() { function
57 one $DIR $NAME
69 one $DIR $NAME
/art/test/047-returns/
Dexpected.txt2 one running
3 one
/art/test/641-checker-arraycopy/src/
DMain.java50 public static void assertEquals(Object one, Object two) { in assertEquals() argument
51 if (one != two) { in assertEquals()
52 throw new Error("Expected " + one + ", got " + two); in assertEquals()
/art/test/005-annotations/src/android/test/anno/
DFullyNoted.java20 @AnnoSimpleParameter int one, in bar()
29 @AnnoSimpleParameter int one, in bar1()
/art/test/093-serialization/src/
DMain.java95 Boolean one; field in Base
100 one = true; in Base()
127 System.out.println("one=" + one + " two=" + two + " three=" + three in check()
/art/test/684-select-condition/src/
DMain.java70 int one = $noinline$getField();
72 float a = (float)one;
/art/test/003-omnibus-opcodes/src/
DThrow.java29 public void one() { in one() method in Throw
119 th.one(); in run()
/art/test/1907-suspend-list-self-twice/
Dexpected.txt2 Thread was no longer suspended after one resume.
/art/test/068-classloader/src/
DDoubledImplement2.java29 public void one() { in one() method in DoubledImplement2
DDoubledImplement.java29 public void one() { in one() method in DoubledImplement
/art/test/474-checker-boolean-input/
Dinfo.txt1 Tests if zero/one constants and integer Phis are accepted as boolean values.
/art/test/093-serialization/
Dexpected.txt1 one=true two=2 three=three four=4.0 five=5.0 six=6 seven=7 eight=8 nine=9 thing=X
/art/test/138-duplicate-classes-check2/
Dinfo.txt1 Check whether a duplicate class is not detected, even though we compiled against one (but removed
/art/test/080-oom-fragmentation/
Dinfo.txt1 Test that the allocator can go from a full heap to an empty one and is able to allocate a large
/art/test/505-simplifier-type-propagation/
Dinfo.txt3 instructions from one type to the same type.
/art/test/484-checker-register-hints/
Dinfo.txt2 blocks because one block forced spilling. The block that
/art/test/079-phantom/
Dexpected.txt2 Created Bitmap one: 10x10 (100)
/art/test/800-smali/smali/
Db_22244733.smali5 .registers 2 # One local and one parameter.
/art/test/045-reflect-array/
Dexpected.txt7 zero one two ++
/art/test/978-virtual-interface/
Dinfo.txt5 This test checks that we correctly detect when one attempts to invoke an
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md3 breakpointlogger is a JVMTI agent that lets one set breakpoints that are logged
28 one might expect. This also means that one cannot set breakpoints on classes
/art/tools/ahat/etc/
DREADME.txt2 A version of the test-dump hprof generated on Android L, with one of the

123