Lines Matching refs:method

45  * function and cached by this class for quick lookup by the method index.
58 * Analyse method code to determine if the method is a candidate for inlining.
61 * @param verifier the method verifier holding data about the method to analyse.
62 * @return true if the method is a candidate for inlining, false otherwise.
68 * Check whether a particular method index corresponds to an intrinsic function.
78 * Check whether a particular method index corresponds to a special function.
128 * To avoid multiple lookups of a method name string, we cache its string
186 * To avoid multiple lookups of a method signature, we cache its proto
233 * The maximum number of method parameters we support in the ProtoDef.
238 * The method signature (proto) definition using cached class indexes.
249 * The method definition using cached class, name and proto indexes.
250 * The class index, method name index and proto index are used with
260 * The definition of an intrinsic function binds the method definition
269 * Cache for class, method name and method signature indexes used during
273 * method signatures and we want to avoid repeated lookups since they are
274 * not exactly cheap. The method names and method signatures are sometimes
311 bool AddInlineMethod(int32_t method_idx, const InlineMethod& method) LOCKS_EXCLUDED(lock_);
314 MIR* move_result, const InlineMethod& method);
316 MIR* move_result, const InlineMethod& method);
318 MIR* move_result, const InlineMethod& method, uint32_t method_idx);
320 MIR* move_result, const InlineMethod& method, uint32_t method_idx);
324 * Maps method indexes (for the particular DexFile) to Intrinsic defintions.