Home | History | Annotate | Download | only in opp

Lines Matching refs:hint

94         String filename = null, hint = null;
102 hint = metadataCursor.getString(0);
137 filename = choosefilename(hint);
239 private static String choosefilename(String hint) {
242 // First, try to use the hint from the application, if there's one
243 if (filename == null && !(hint == null) && !hint.endsWith("/") && !hint.endsWith("\\")) {
246 hint = hint.replace('\\', '/');
247 if (V) Log.v(Constants.TAG, "getting filename from hint");
248 int index = hint.lastIndexOf('/') + 1;
250 filename = hint.substring(index);
252 filename = hint;