Searched defs:to (Results 1 - 9 of 9) sorted by relevance

/art/build/
H A DAndroid.common_utils.mk10 # Unless required by applicable law or agreed to in writing, software
24 art-string-to-uppercase = $(shell echo $(1) | tr '[:lower:]' '[:upper:]')
/art/test/005-annotations/src/android/test/anno/
H A DIntToString.java11 String to(); method in interface:IntToString
/art/compiler/optimizing/
H A Dparallel_move_resolver.cc10 * Unless required by applicable law or agreed to in writing, software
25 // Perform a linear sweep of the moves to add them to the initial list of
26 // moves to perform, ignoring any move that is redundant (the source is
42 // Move stack/stack slot to take advantage of a free register on constrained machines.
58 // Skip constants to perform them last. They don't block other moves
106 // `move` is non-pair, we need to extract which register to use.
120 // Each call to this function performs a move and deletes it from the move
122 // mark a move as "pending" on entry to PerformMov
504 UpdateMoveSource(Location from, Location to) argument
[all...]
H A Dinduction_var_analysis.cc10 * Unless required by applicable law or agreed to in writing, software
26 * classification, the lexicographically first entry-phi is rotated to the front.
44 // If found, bring that entry-phi to front.
57 * Returns true if the from/to types denote a narrowing, integral conversion (precision loss).
59 static bool IsNarrowingIntegralConversion(Primitive::Type from, Primitive::Type to) { argument
62 return to == Primitive::kPrimByte || to == Primitive::kPrimShort
63 || to == Primitive::kPrimChar || to == Primitive::kPrimInt;
65 return to
447 TransferCnv(InductionInfo* a, Primitive::Type from, Primitive::Type to) argument
558 Primitive::Type to = conversion->GetResultType(); local
[all...]
H A Dregister_allocator.cc10 * Unless required by applicable law or agreed to in writing, software
112 // Check that the linear order is still correct with regards to lifetime positions.
169 // Iterate post-order, to ensure the list is sorted, and the last added interval
184 // intervals belonging to the live-in set of the catch/header block to be spilled.
198 // Fixed interval is added to inactive_ instead of unhandled_.
201 // Fixed interval is never split and never moves to unhandled_.
218 // Fixed interval is added to inactive_ instead of unhandled_.
221 // Fixed interval is never split and never moves to unhandled_.
280 // TODO: We do this here because we do not want the suspend check to artificiall
1201 SplitBetween(LiveInterval* interval, size_t from, size_t to) argument
[all...]
H A Dnodes.cc10 * Unless required by applicable law or agreed to in writing, software
129 // We only need to update the successor, which might be live.
139 // Mark the block as removed. This is used by the HGraphBuilder to discard
158 // Step (5) requires dead blocks to be removed from the
162 // (4) Simplify the CFG now, so that we don't need to recompute
177 // which needs the information to build catch block phis from values of
238 // Nodes for which we need to visit successors.
264 // If so, we need to update the dominators of those headers and recursively of
266 // The algorithm is guaranteed to terminate because it loops only if the sum
291 // needs to b
2051 HBasicBlock* to = at->SplitBeforeForInlining(invoke); local
[all...]
/art/test/
H A DAndroid.run-test.mk9 # Unless required by applicable law or agreed to in writing, software
25 # The art-run-tests module, used to build all run-tests into an image.
49 # Helper to create individual build targets for tests. Must be called with $(eval).
80 # The build system use this flag to pick up files generated by declare-make-art-run-test.
91 # General rules to build and run a run-test.
202 # Convert's a rule name to the form used in variables, e.g. no-relocate to NO_RELOCATE
203 define name-to-var
205 endef # name-to-var
263 # Check if we have python3 to ru
[all...]
/art/test/004-JniTest/src/
H A DMain.java10 * Unless required by applicable law or agreed to in writing, software
191 private static native boolean nativeIsAssignableFrom(Class<?> from, Class<?> to); argument
/art/test/004-JniTest/
H A Djni_test.cc10 * Unless required by applicable law or agreed to in writing, software
186 // We use b1 to drive the output.
206 // The weird static_cast is because short int is only guaranteed down to -32767, not Java's -32768.
211 // We use s1 to drive the output.
232 // We use b1 to drive the output.
253 // We use c1 to drive the output.
270 // Delete the arg to see if it crashes.
275 jclass from, jclass to) {
276 return env->IsAssignableFrom(from, to);
362 // For better testing we would need to compil
274 Java_Main_nativeIsAssignableFrom(JNIEnv* env, jclass, jclass from, jclass to) argument
[all...]

Completed in 245 milliseconds