HomeSort by relevance Sort by last modified time
    Searched refs:moduleName (Results 1 - 22 of 22) sorted by null

  /development/tools/idegen/src/com/android/idegen/
ModuleCache.java 54 public Module getAndCache(String moduleName) throws IOException {
57 Module module = modulesByName.get(moduleName);
59 String makeFile = indexes.getMakeFile(moduleName);
61 logger.warning("Unable to find make file for module: " + moduleName);
63 module = new StandardModule(moduleName, makeFile);
65 modulesByName.put(moduleName, module);
71 public void buildAndCacheAggregatedModule(String moduleName) throws IOException {
72 if (indexes.isPartOfAggregatedModule(moduleName)) {
73 Set<String> moduleNames = indexes.getAggregatedModules(moduleName);
81 String aggregatedName = indexes.getAggregateName(moduleName);
    [all...]
ModuleIndexes.java 66 String moduleName = arr[1];
67 moduleNameToMakeFileMap.put(moduleName, makeFile);
68 append(makeFile, moduleName);
80 private void append(String makeFile, String moduleName) {
87 //moduleNameToMakeFileMap.put(getAggregateName(moduleName), makeFile);
89 moduleNames.add(moduleName);
92 public String getMakeFile(String moduleName) {
95 return moduleNameToMakeFileMap.get(moduleName);
98 public Set<String> getAggregatedModules(String moduleName) {
101 String makeFile = getMakeFile(moduleName);
    [all...]
StandardModule.java 53 String moduleName;
64 public StandardModule(String moduleName, String makeFile) {
65 this(moduleName, new File(makeFile), false);
68 public StandardModule(String moduleName, String makeFile, boolean searchForSrc) {
69 this(moduleName, new File(makeFile), searchForSrc);
72 public StandardModule(String moduleName, File makeFile, boolean searchForSrc) {
73 this.moduleName = moduleName;
93 makeFileParser = new MakeFileParser(makeFile, moduleName);
101 logger.info("Done building module " + moduleName);
    [all...]
IntellijProject.java 40 String moduleName;
42 public IntellijProject(String indexFile, String moduleName) {
44 this.moduleName = Preconditions.checkNotNull(moduleName);
57 Module module = cache.getAndCache(moduleName);
81 createNameFile(moduleName);
90 private void replaceWithAggregate(Set<String> deps, String moduleName) {
98 if (!replacement.equals(moduleName)) {
FrameworkModule.java 28 public FrameworkModule(String moduleName, String makeFile) {
MakeFileParser.java 53 private String moduleName;
62 * @param moduleName The module to extract.
64 public MakeFileParser(File makeFile, String moduleName) {
66 this.moduleName = Preconditions.checkNotNull(moduleName);
90 logger.info("Parsing " + makeFile.getAbsolutePath() + " for module " + moduleName);
107 if (moduleName.equals(getModuleName())) {
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
LoginContextTest.java 56 private static final String moduleName = "moduleName";
79 LoginContext context = new LoginContext(moduleName);
81 assertTrue("Requested module", MyConfig.getLastAppName() == moduleName);
116 new LoginContext(moduleName);
138 new LoginContext(moduleName);
142 MyConfig.getLastAppName() == moduleName);
165 new LoginContext(moduleName);
188 new LoginContext(moduleName);
217 LoginContext context = new LoginContext(moduleName);
    [all...]
  /external/webkit/Source/WebCore/storage/
DatabaseAuthorizer.h 75 int createVTable(const String& tableName, const String& moduleName);
76 int dropVTable(const String& tableName, const String& moduleName);
DatabaseAuthorizer.cpp 288 int DatabaseAuthorizer::createVTable(const String& tableName, const String& moduleName)
294 if (!equalIgnoringCase(moduleName, "fts3"))
301 int DatabaseAuthorizer::dropVTable(const String& tableName, const String& moduleName)
307 if (!equalIgnoringCase(moduleName, "fts3"))
  /hardware/libhardware_legacy/audio/
AudioPolicyCompatClient.cpp 33 audio_module_handle_t AudioPolicyCompatClient::loadHwModule(const char *moduleName)
35 return mServiceOps->load_hw_module(mService, moduleName);
AudioPolicyCompatClient.h 38 virtual audio_module_handle_t loadHwModule(const char *moduleName);
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 106 self.moduleName = os.path.splitext(os.path.basename(sys.modules[self.__module__].__file__))[0]
152 self.moduleName, self.className, testName)
185 grammarName = self.moduleName + '.g'
189 self.moduleName)
  /external/webkit/Source/WebCore/bindings/scripts/
IDLParser.pm 137 my $moduleName = (defined($1) ? $1 : die("Parsing error!\nSource:\n$data\n)"));
138 $dataNode->module($moduleName);
140 print " |----> Module; NAME \"$moduleName\"\n |-\n |\n" unless $beQuiet;
  /frameworks/av/services/audioflinger/
AudioFlinger.h 462 AudioHwDevice(const char *moduleName,
465 : mModuleName(strdup(moduleName))
478 const char *moduleName() const { return mModuleName; }
AudioFlinger.cpp     [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 721 void pushModuleBuildStack(StringRef moduleName, FullSourceLoc importLoc) {
722 StoredModuleBuildStack.push_back(std::make_pair(moduleName.str(),importLoc));
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp     [all...]
  /prebuilts/devtools/tools/lib/
lint-api.jar 
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 2772 milliseconds