Home
last modified time | relevance | path

Searched refs:moduleName (Results 1 – 11 of 11) sorted by relevance

/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
DLoginContextTest.java56 private static final String moduleName = "moduleName"; field in LoginContextTest
79 LoginContext context = new LoginContext(moduleName); in testLC_String()
81 assertTrue("Requested module", MyConfig.getLastAppName() == moduleName); in testLC_String()
116 new LoginContext(moduleName); in testLC_String_NoApp()
138 new LoginContext(moduleName); in testLC_String_InaccessibleCallbackHandler()
142 MyConfig.getLastAppName() == moduleName); in testLC_String_InaccessibleCallbackHandler()
165 new LoginContext(moduleName); in testLC_String_InvalidCallbackHandler()
188 new LoginContext(moduleName); in testLC_String_InitCallbackHandler()
217 LoginContext context = new LoginContext(moduleName); in testLC_String_LoginModuleInitialize()
247 context = new LoginContext(moduleName); in testLC_String_LoginModuleInitialize()
[all …]
/external/chromium-trace/trace-viewer/src/
Dbase.js72 function addModuleDependency(moduleName, dependentModuleName) { argument
73 if (!moduleDependencies[moduleName])
74 moduleDependencies[moduleName] = [];
76 var dependentModules = moduleDependencies[moduleName];
85 function addModuleRawScriptDependency(moduleName, rawScriptName) { argument
86 if (!moduleRawScripts[moduleName])
87 moduleRawScripts[moduleName] = [];
89 var dependentRawScripts = moduleRawScripts[moduleName];
98 function addModuleStylesheet(moduleName, stylesheetName) { argument
99 if (!moduleStylesheets[moduleName])
[all …]
/external/clang/test/SemaObjC/
Dblock-return.m11 NSString *moduleName;
12 return [moduleName UTF8String];
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseAuthorizer.cpp285 int DatabaseAuthorizer::createVTable(const String& tableName, const String& moduleName) in createVTable() argument
291 if (!equalIgnoringCase(moduleName, "fts3")) in createVTable()
298 int DatabaseAuthorizer::dropVTable(const String& tableName, const String& moduleName) in dropVTable() argument
304 if (!equalIgnoringCase(moduleName, "fts3")) in dropVTable()
DDatabaseAuthorizer.h75 int createVTable(const String& tableName, const String& moduleName);
76 int dropVTable(const String& tableName, const String& moduleName);
/external/antlr/antlr-3.4/runtime/Python/tests/
Dtestbase.py106 … 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/chromium-trace/trace-viewer/src/base/
Dunittest.js81 var moduleName = path.slice(5, path.length - 3);
82 moduleName = moduleName.replace(/\//g, '.');
83 modules.push(moduleName);
/external/chromium_org/third_party/skia/src/gpu/gl/win/
DGrGLCreateNativeInterface_win.cpp29 AutoLibraryUnload(const char* moduleName) { in AutoLibraryUnload() argument
30 fModule = LoadLibrary(moduleName); in AutoLibraryUnload()
/external/skia/src/gpu/gl/win/
DGrGLCreateNativeInterface_win.cpp29 AutoLibraryUnload(const char* moduleName) { in AutoLibraryUnload() argument
30 fModule = LoadLibrary(moduleName); in AutoLibraryUnload()
/external/clang/include/clang/Basic/
DSourceManager.h728 void pushModuleBuildStack(StringRef moduleName, FullSourceLoc importLoc) { in pushModuleBuildStack() argument
729 StoredModuleBuildStack.push_back(std::make_pair(moduleName.str(),importLoc)); in pushModuleBuildStack()
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
Ddojo-1.6.1.js688 dojo._loadUriAndCheck = function(/*String*/uri, /*String*/moduleName, /*Function?*/cb){ argument
696 return !!(ok && d._loadedModules[moduleName]); // Boolean
961 var module = d._loadedModules[moduleName];
967 var relpath = d._getModuleSymbols(moduleName).join("/") + '.js';
968 var modArg = !omitModuleCheck ? moduleName : null;
971 … throw new Error("Could not load '" + moduleName + "'; last tried '" + relpath + "'");
978 module = d._loadedModules[moduleName];
980 … throw new Error("symbol '" + moduleName + "' is not defined after loading '" + relpath + "'");