OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mainDoc
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tools/aidl/
aidl.cpp
875
document_item_type*
mainDoc
= g_document;
900
if (err != 0 ||
mainDoc
== NULL) {
906
err |= check_filenames(options.inputFileName.c_str(),
mainDoc
);
914
err |= gather_types(options.inputFileName.c_str(),
mainDoc
);
923
test_document(
mainDoc
);
934
// check the referenced types in
mainDoc
to make sure we've imported them
935
err |= check_types(options.inputFileName.c_str(),
mainDoc
);
937
// finally, there really only needs to be one thing in
mainDoc
, and it
940
err |= exactly_one_interface(options.inputFileName.c_str(),
mainDoc
, options, &onlyParcelable);
944
if (err != 0 ||
mainDoc
== NULL)
[
all
...]
/sdk/manifmerger/src/com/android/manifmerger/
ManifestMerger.java
146
Document
mainDoc
= XmlUtils.parseDocument(mainFile, mSdkLog);
147
if (
mainDoc
== null) {
151
boolean success = process(
mainDoc
, libraryFiles);
153
if (!XmlUtils.printXmlFile(
mainDoc
, outputFile, mSdkLog)) {
165
* @param
mainDoc
The document to merge into. Will be modified in-place.
169
public boolean process(Document
mainDoc
, File[] libraryFiles) {
172
mMainDoc =
mainDoc
;
174
String prefix = XmlUtils.lookupNsPrefix(
mainDoc
, SdkConstants.NS_RESOURCES);
[
all
...]
Completed in 58 milliseconds