Searched refs:prefix (Results 26 - 36 of 36) sorted by relevance

12

/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java742 * {@code "./"}, then that prefix is removed and the rest is
1032 * Checks the current argument against the given prefix.
1033 * If prefix is in the form '--name=', an extra value is expected.
1037 public boolean isArg(String prefix) { argument
1038 int n = prefix.length();
1039 if (n > 0 && prefix.charAt(n-1) == '=') {
1041 if (current.startsWith(prefix)) {
1047 prefix = prefix.substring(0, n-1);
1048 if (current.equals(prefix)) {
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDalvInsn.java229 * Gets the instruction prefix required, if any, to use in a high
234 * @return {@code null-ok;} the prefix, if any
307 * @param prefix {@code non-null;} prefix before the address; each follow-on
316 public final String listingString(String prefix, int width, argument
324 String addr = prefix + identifierString() + ": ";
H A DLocalList.java77 * @param prefix {@code non-null;} prefix to attach to each line of output
79 public void debugPrint(PrintStream out, String prefix) { argument
83 out.print(prefix);
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvInsn.java253 * Gets the instruction prefix required, if any, to use in an expanded
260 * @return {@code null-ok;} the prefix, if any
335 * @param prefix {@code non-null;} prefix before the address; each follow-on
344 public final String listingString(String prefix, int width, argument
352 String addr = prefix + identifierString() + ": ";
H A DLocalList.java77 * @param prefix {@code non-null;} prefix to attach to each line of output
79 public void debugPrint(PrintStream out, String prefix) { argument
83 out.print(prefix);
/dalvik/vm/compiler/codegen/mips/
H A DArchUtility.cpp165 void dvmDumpResourceMask(LIR *lir, u8 mask, const char *prefix)
207 ALOGD("%s: %s", prefix, buf);
/dalvik/vm/compiler/codegen/arm/
H A DArchUtility.cpp241 void dvmDumpResourceMask(LIR *lir, u8 mask, const char *prefix)
284 ALOGD("%s: %s", prefix, buf);
/dalvik/vm/compiler/codegen/x86/libenc/
H A Dencoder.h168 // prefix code
464 // prefix
465 ENCODER_DECLARE_EXPORT char * prefix(char * stream, InstrPrefix p);
584 ENCODER_DECLARE_EXPORT char * branch8(char * stream, ConditionCode cc, const Imm_Opnd & imm, InstrPrefix prefix = no_prefix);
587 ENCODER_DECLARE_EXPORT char * branch32(char * stream, ConditionCode cc, const Imm_Opnd & imm, InstrPrefix prefix = no_prefix);
590 //char * branch(char * stream, ConditionCode cc, const char * target, InstrPrefix prefix = no_prefix);
593 ENCODER_DECLARE_EXPORT char * branch(char * stream, ConditionCode cc, I_32 disp, InstrPrefix prefix = no_prefix);
611 ENCODER_DECLARE_EXPORT char * scas(char * stream, unsigned char prefix);
612 ENCODER_DECLARE_EXPORT char * stos(char * stream, unsigned char prefix);
H A Denc_base.h92 * @brief Inserts a prefix into the code buffer.
97 * @param stream - buffer where to insert the prefix
98 * @param pref - prefix to be inserted. If it's InstPrefix_Null, then
103 static char * prefix(char* stream, InstPrefix pref);
229 * prefix).
H A Denc_defs.h391 #define CCM(prefix,cond) Mnemonic_##prefix##cond=Mnemonic_##prefix##cc+ConditionMnemonic_##cond
H A Denc_base.cpp655 char * EncoderBase::prefix(char* stream, InstPrefix pref)

Completed in 228 milliseconds

12