Searched defs:which (Results 1 - 12 of 12) sorted by relevance

/dalvik/tests/003-omnibus-opcodes/src/
H A DGoto.java25 static int smallGoto(boolean which) { argument
30 if (which) {
39 static int mediumGoto(boolean which) { argument
44 if (which) {
62 static int bigGoto(boolean which) { argument
67 if (which) {
/dalvik/tests/054-uncaught/src/
H A DMain.java15 private static void testThread(int which) { argument
16 Thread t = new Helper(which);
26 static void catchTheUncaught(int which) { argument
30 System.out.println("Test " + which);
31 switch (which) {
53 private int which; field in class:Main.Helper
55 public Helper(int which) { argument
56 this.which = which;
60 catchTheUncaught(which);
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DAlternativeName.java32 // constants indicating which alternative name is presented
37 // indicating which alternative name is presented by this object
38 private boolean which; field in class:AlternativeName
44 * @param which specifies which alternative names are given
47 public AlternativeName(boolean which, GeneralNames alternativeNames) { argument
48 this.which = which;
54 * @param which specifies which alternativ
57 AlternativeName(boolean which, byte[] encoding) argument
[all...]
/dalvik/tests/047-returns/src/
H A DMain.java21 public static Runnable pickOne(int which) { argument
24 if (which == 1)
26 else if (which == 2)
28 else if (which == 3)
/dalvik/tests/060-reflection-security/src/
H A DEnforcer.java40 public void checkMemberAccess(Class c, int which) { argument
43 switch (which) {
46 default: member = "<" + which + ">?"; break;
52 super.checkMemberAccess(c, which);
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputCollector.java25 * by the primary list, such as switch case tables) &mdash; which it
31 * {@code non-null;} the associated finisher (which holds the instruction
66 * Reverses a branch which is buried a given number of instructions
70 * @param which how many instructions back to find the branch;
75 public void reverseBranch(int which, CodeAddress newTarget) { argument
76 finisher.reverseBranch(which, newTarget);
106 * Helper for {@link #getFinisher}, which appends the suffix to
H A DOutputFinisher.java34 * Processor for instruction lists, which takes a "first cut" of
98 * Helper for {@link #add} which scrutinizes a single
125 * Helper for {@link #hasAnyLocalInfo} which scrutinizes a single
154 * Helper for {@link #getAllConstants} which adds all the info for
178 * Helper for {@link #getAllConstants} which adds all the info for
231 * which updates the position and local info flags.
251 * Reverses a branch which is buried a given number of instructions
255 * @param which how many instructions back to find the branch;
260 public void reverseBranch(int which, CodeAddress newTarget) { argument
262 int index = size - which
[all...]
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
H A DFactoryFinder.java70 * <p>Use try/catch block to support applets, which throws
113 // Figure out which ClassLoader to use for loading the provider
158 debugPrintln("Loaded " + className + " from " + which(spiClass));
362 private static String which(Class clazz) { method in class:FactoryFinder
/dalvik/libcore/xml/src/main/java/javax/xml/validation/
H A DSchemaFactoryFinder.java307 if(debug) debugPrintln("loaded it from "+which(clazz));
397 // VJ++, which does not implement the UTF-8
402 // development, we have dropped in a fallback which makes a
404 // VJ++ this is apparently ASCII, which is a subset of
473 private static String which( Class clazz ) { method in class:SchemaFactoryFinder
474 return which( clazz.getName(), clazz.getClassLoader() );
485 private static String which(String classname, ClassLoader loader) { method in class:SchemaFactoryFinder
/dalvik/libcore/xml/src/main/java/javax/xml/xpath/
H A DXPathFactoryFinder.java277 if(debug) debugPrintln("loaded it from "+which(clazz));
429 private static String which( Class clazz ) { method in class:XPathFactoryFinder
430 return which( clazz.getName(), clazz.getClassLoader() );
441 private static String which(String classname, ClassLoader loader) { method in class:XPathFactoryFinder
/dalvik/vm/
H A DMisc.h100 } which; member in struct:DebugOutputTarget
181 * Return a newly-allocated string in which all occurrences of '.' have
262 * have elapsed. Pass in the start time, which must be a value returned by
/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
H A DFunctionTable.java319 * @param which The function ID, which may correspond to one of the FUNC_XXX
328 Function getFunction(int which) argument
332 if (which < NUM_BUILT_IN_FUNCS)
333 return (Function) m_functions[which].newInstance();
336 which-NUM_BUILT_IN_FUNCS].newInstance();
347 * @return a function ID, which may correspond to one of the FUNC_XXX values

Completed in 307 milliseconds