OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:realType
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/content/
ClipData.java
392
String
realType
= resolver.getType(uri);
395
if (
realType
!= null) {
396
mimeTypes = new String[] {
realType
, ClipDescription.MIMETYPE_TEXT_URILIST };
399
String[] tmp = new String[mimeTypes.length + (
realType
!= null ? 2 : 1)];
401
if (
realType
!= null) {
402
tmp[0] =
realType
;
/external/doclava/src/com/google/doclava/
MethodInfo.java
513
String
realType
= myType.isPrimitive() ? "" : myType.asClassInfo().qualifiedName();
519
if (!matchesType(qualifiedName, s) && !matchesType(
realType
, s)) {
Completed in 47 milliseconds