Home
last modified time | relevance | path

Searched refs:null (Results 1 – 25 of 58) sorted by relevance

123

/build/tools/droiddoc/src/
DLinkReference.java139 ref = null; in parse()
148 mem = null; in parse()
152 String[] params = null; in parse()
153 String[] paramDimensions = null; in parse()
154 if (mem != null) { in parse()
232 ClassInfo cl = null; in parse()
237 if (ref == null) { in parse()
239 if (cl != null) { in parse()
244 if (cl != null) { in parse()
246 if (result.classInfo == null) { in parse()
[all …]
DMethodInfo.java38 if (m != null) { in inherited()
41 return null; in inherited()
60 if (mReturnType == null) { in findOverriddenMethod()
62 return null; in findOverriddenMethod()
64 if (mOverriddenMethod != null) { in findOverriddenMethod()
74 && me.inlineTags().tags() != null in findOverriddenMethod()
80 return null; in findOverriddenMethod()
87 if (i.realSuperclass() != null && i.realSuperclass().isAbstract()) { in addRealInterfaces()
97 if (mReturnType == null) { in findRealOverriddenMethod()
99 return null; in findRealOverriddenMethod()
[all …]
DProofread.java24 static FileWriter out = null;
36 if (out != null) { in initProofread()
42 out = null; in initProofread()
50 if (out == null) { in finishProofread()
63 if (out == null) { in write()
92 if (out == null) { in writeTagList()
107 if (label == null) { in writeTagList()
119 writeIndented("{" + (t.name() != null ? t.name() : "") + "/" + in writeTagList()
127 if (out == null) { in writePackages()
137 if (out == null) { in writePackage()
[all …]
DSampleTagInfo.java88 if (id == null || "".equals(id)) { in SampleTagInfo()
94 if (mIncluded == null) { in SampleTagInfo()
111 return null; in getTrimString()
120 Reader input = null; in loadInclude()
133 String trimString = null; in loadInclude()
138 if (line == null) { in loadInclude()
139 return null; in loadInclude()
158 if (trimString != null) { in loadInclude()
200 if (input != null) { in loadInclude()
210 return null; in loadInclude()
[all …]
DConverter.java51 mClassesNeedingInit = null; in makeInfo()
143 if (sp == null) { in convertSourcePosition()
144 return null; in convertSourcePosition()
178 if (classes == null) return null; in convertClasses()
189 if (p == null) return null; in convertParameter()
209 if (p == null) return null; in convertTypes()
267 if (mClassesNeedingInit != null) {
275 if (mClassesNeedingInit == null) {
288 if (methods == null) return null; in getHiddenMethods()
315 if (methods == null) return null; in convertMethods()
[all …]
DStubs.java37 PrintStream xmlWriter = null; in writeStubs()
74 if (returnClass != null && returnClass.isHidden()) { in writeStubs()
104 if (returnClass != null && returnClass.isHidden()) { in writeStubs()
134 if (stubPackages == null || stubPackages.contains(cl.containingPackage().name())) { in writeStubs()
148 if (writeXML && xmlWriter != null) { in writeStubs()
152 if (xmlWriter != null) { in writeStubs()
176 if (cl.allSelfFields() != null){ in cantStripThis()
178 if (fInfo.type() != null){ in cantStripThis()
179 if (fInfo.type().asClassInfo() != null){ in cantStripThis()
183 if (fInfo.type().typeArguments() != null){ in cantStripThis()
[all …]
DTypeInfo.java62 if (mFullName != null) { in fullName()
90 String fullName = null; in fullNameNoDimension()
105 if (mTypeArguments != null && mTypeArguments.length > 0) { in fullNameNoDimension()
108 else if (mSuperBounds != null && mSuperBounds.length > 0) { in fullNameNoDimension()
114 else if (mExtendsBounds != null && mExtendsBounds.length > 0) { in fullNameNoDimension()
160 else if (!isPrimitive() && cl != null && cl.isIncluded()) { in makeHDFRecursive()
173 if (mTypeArguments != null) { in makeHDFRecursive()
176 if (mSuperBounds != null) { in makeHDFRecursive()
179 if (mExtendsBounds != null) { in makeHDFRecursive()
259 if (mTypeArguments != null){ in toString()
[all …]
DDroidDoc.java103 String keepListFile = null; in start()
104 String proofreadFile = null; in start()
105 String todoFile = null; in start()
106 String sdkValuePath = null; in start()
108 String stubsDir = null; in start()
112 String apiFile = null; in start()
114 HashSet<String> stubPackages = null; in start()
241 if (proofreadFile != null) { in start()
244 if (todoFile != null) { in start()
270 if (keepListFile != null) { in start()
[all …]
DNavTree.java28 Node node = new Node("Reference", dir + "packages.html", children, null); in writeNavTree()
49 children.add(new Node("Description", pkg.fullDescriptionHtmlPage(), null, null)); in makePackageNode()
65 children.add(new Node(cl.name(), cl.htmlPage(), null, cl.getSince())); in addClassNodes()
70 parent.add(new Node(label, null, children, null)); in addClassNodes()
88 if (s == null) { in renderString()
117 if (list == null || list.size() == 0) { in renderChildren()
DHierarchy.java33 if (me == null) { in makeHierarchy()
39 String sname = superclass != null in makeHierarchy()
40 ? superclass.qualifiedName() : null; in makeHierarchy()
41 if (sname != null) { in makeHierarchy()
43 if (s == null) { in makeHierarchy()
87 if (derived != null && derived.size() > 0) { in depth()
100 return cl != null && !cl.isHidden() && cl.isIncluded(); in exists()
138 if (derived != null && derived.size() > 0) { in recurse()
DSinceTagger.java81 if (packageSpec == null) { in applyVersionsFromSpec()
88 if (classSpec == null) { in applyVersionsFromSpec()
104 if (doc.getSince() == null) { in versionPackage()
113 if (doc.getSince() == null) { in versionClass()
125 if (constructor.getSince() == null in versionConstructors()
139 if (field.getSince() == null in versionFields()
153 if (method.getSince() != null) { in versionMethods()
177 if (claz.getSince() == null) { in warnForMissingVersions()
210 if (t.getSince() != null in missingVersions()
230 for (ClassInfo c = claz; c != null; c = c.containingClass()) { in checkLevelRecursive()
DClassInfo.java97 mConstructors = null; in init()
98 mMethods = null; in init()
99 mSelfMethods = null; in init()
100 mFields = null; in init()
101 mSelfFields = null; in init()
102 mSelfAttributes = null; in init()
239 while (cl != null) { in typeVariables()
241 if (types != null) { in typeVariables()
261 if (mInterfaces == null) { in interfaces()
265 while (superclass != null && !superclass.checkLevel()) { in interfaces()
[all …]
DComment.java110 tag(null, m.group(1), true, pos); in tag()
116 tag(null, text.substring(start), true, pos); in tag()
129 if (name == null) { in tag()
165 if (c != null) { in tag()
189 Errors.error(Errors.UNKNOWN_TAG, pos == null ? null : new SourcePositionInfo(pos), in tag()
321 boolean b = (mText != null) && (mText.indexOf("@doconly") >= 0); in isDocOnly()
349 mText = null; in initImpl()
364 mParamTagsList = null; in initImpl()
365 mSeeTagsList = null; in initImpl()
366 mThrowsTagsList = null; in initImpl()
[all …]
DPackageInfo.java37 if (pkg == null) { in PackageInfo()
63 return null; in parent()
133 if (mInterfaces == null) { in interfaces()
142 if (mOrdinaryClasses == null) { in ordinaryClasses()
151 if (mEnums == null) { in enums()
159 if (mExceptions == null) { in exceptions()
168 if (mErrors == null) { in errors()
DSeeTagInfo.java36 if (mLink == null) { in linkReference()
38 (!"@see".equals(name())) && (mBase != null ? mBase.checkLevel() : true)); in linkReference()
52 if (linkRef.kind != null) { in makeHDF()
61 if (linkRef.href != null) { in makeHDF()
DSourcePositionInfo.java47 if (that == null) { in add()
48 return null; in add()
64 if (that == null) { in findBeginning()
65 return null; in findBeginning()
DAttributeInfo.java43 if (mName == null) { in name()
46 if (n != null) { in name()
56 if (mComment == null) { in comment()
59 if (c != null) { in comment()
65 if (mComment == null) { in comment()
DThrowsTagInfo.java41 if (mException == null) { in ThrowsTagInfo()
63 if (mException != null) { in exceptionType()
66 return null; in exceptionType()
75 if (tags[i].exceptionType() != null) { in makeHDF()
DFieldInfo.java39 super(rawCommentText, name, null, containingClass, realContainingClass, in FieldInfo()
122 String str = null; in constantLiteralValue()
123 if (val != null) { in constantLiteralValue()
169 if (str == null) { in constantLiteralValue()
242 if (val != null) { in makeHDF()
243 String dec = null; in makeHDF()
244 String hex = null; in makeHDF()
245 String str = null; in makeHDF()
283 if (dec != null && hex != null) { in makeHDF()
/build/tools/droiddoc/test/generics/src/com/android/generics/
DFooBar.java29 super(null); in FooBar()
34 return null; in bar()
38 return null; in a()
42 return null; in b()
/build/tools/apicheck/src/com/android/apicheck/
DSourcePositionInfo.java51 if (that == null) { in add()
52 return null; in add()
68 if (that == null) { in findBeginning()
69 return null; in findBeginning()
86 if (this.file == null) { in toString()
108 if (source != null) { in fromXml()
DClassInfo.java67 String parentQName = (mParentClass != null) in qualifiedName()
92 if (mSuperClass == null) { in overriddenMethod()
93 return null; in overriddenMethod()
106 if (sup.mSuperClass != null) { in overriddenMethod()
111 return null; in overriddenMethod()
123 return (mSuperClass != null) ? mSuperClass.interfaceMethod(candidate) : null; in interfaceMethod()
139 for (ClassInfo c = cl; c != null && !found; c = c.mSuperClass) { in isConsistent()
167 if (mi == null) { in isConsistent()
170 if (mi == null) { in isConsistent()
183 if (mi == null) { in isConsistent()
[all …]
/build/tools/droiddoc/test/stubs/src/com/android/stubs/
DTypes.java47 public_final_Object = null; in Types()
58 public_static_final_Object = null;
69 public static final Object public_static_final_Object = null;
/build/tools/signapk/
DSignApk.java107 return null; in readPassword()
127 return null; in decryptPrivateKey()
155 if (spec == null) { in readPrivateKey()
175 if (input != null) { in addDigestsToManifest()
202 (stripPattern == null || in addDigestsToManifest()
209 Attributes attr = null; in addDigestsToManifest()
210 if (input != null) attr = input.getAttributes(name); in addDigestsToManifest()
211 attr = attr != null ? new Attributes(attr) : new Attributes(); in addDigestsToManifest()
317 new ContentInfo(ContentInfo.DATA_OID, null), in writeSignatureBlock()
409 JarEntry outEntry = null; in copyFiles()
[all …]
/build/tools/droiddoc/test/stubs/expected/com/android/stubs/
DTypes.java13 public static final java.lang.Object public_static_final_Object = null;
32 …public_static_final_float = 0; public_static_final_double = 0; public_static_final_Object = null; }

123