HomeSort by relevance Sort by last modified time
    Searched refs:module_name (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/Perl5/
Build.PL 4 module_name => 'ANTLR::Runtime',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_coding.py 7 module_name = 'bad_coding'
8 self.verify_bad_module(module_name)
11 module_name = 'bad_coding2'
12 self.verify_bad_module(module_name)
14 def verify_bad_module(self, module_name):
15 self.assertRaises(SyntaxError, __import__, 'test.' + module_name)
18 filename = os.path.join(path, module_name + '.py')
test_pkgimport.py 11 self.module_name = self.package_name + '.foo'
15 for module_name in (self.package_name, self.module_name):
16 if module_name in sys.modules:
17 del sys.modules[module_name]
53 try: __import__(self.module_name)
56 self.assertNotIn(self.module_name, sys.modules)
67 try: __import__(self.module_name)
74 module = __import__(self.module_name).foo
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_coding.py 7 module_name = 'bad_coding'
8 self.verify_bad_module(module_name)
11 module_name = 'bad_coding2'
12 self.verify_bad_module(module_name)
14 def verify_bad_module(self, module_name):
15 self.assertRaises(SyntaxError, __import__, 'test.' + module_name)
18 filename = os.path.join(path, module_name + '.py')
test_pkgimport.py 11 self.module_name = self.package_name + '.foo'
15 for module_name in (self.package_name, self.module_name):
16 if module_name in sys.modules:
17 del sys.modules[module_name]
53 try: __import__(self.module_name)
56 self.assertNotIn(self.module_name, sys.modules)
67 try: __import__(self.module_name)
74 module = __import__(self.module_name).foo
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_linux_libcdep.cc 61 InternalScopedBuffer<char> module_name(kMaxPathLength);
62 module_name.data()[0] = '\0';
66 ReadBinaryName(module_name.data(), module_name.size());
68 internal_strncpy(module_name.data(), info->dlpi_name, module_name.size());
70 if (module_name.data()[0] == '\0')
72 if (data->filter && !data->filter(module_name.data()))
75 LoadedModule *cur_module = new(mem) LoadedModule(module_name.data(),
sanitizer_symbolizer_mac.cc 30 InternalScopedBuffer<char> module_name(kMaxPathLength);
35 module_name.data(), module_name.size(), 0);
37 const char *cur_name = module_name.data();
sanitizer_symbolizer_libcdep.cc 29 LoadedModule::LoadedModule(const char *module_name, uptr base_address) {
30 full_name_ = internal_strdup(module_name);
93 // <module_name> <module_offset>
113 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
114 CHECK(module_name);
116 is_data ? "DATA " : "", module_name, module_offset);
211 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
214 if (symbolize_fn(module_name, module_offset, buffer_, kBufferSize))
254 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) {
273 const char *module_name = module->full_name() local
331 const char *module_name = module->full_name(); local
    [all...]
  /development/tools/idegen/
intellij-gen.sh 37 echo "Usage: $progname <module_name>"
40 module_name=$1
66 echo "Generating project files for $module_name"
67 cmd="java -cp $idegenjar com.android.idegen.IntellijProject $index_file $module_name"
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_state_impl_win.cc 60 string16 module_name(base::FilePath(filename).BaseName().value());
61 if (LowerCaseEqualsASCII(module_name, "fsdomsrv.dll"))
63 if (LowerCaseEqualsASCII(module_name, "vbufbackend_gecko_ia2.dll"))
65 if (LowerCaseEqualsASCII(module_name, "stsaw32.dll"))
67 if (LowerCaseEqualsASCII(module_name, "zslhook.dll"))
  /external/chromium_org/tools/grit/grit/extern/
FP.py 49 def UseUnsignedFingerPrintFromModule(module_name):
50 """Imports module_name and replaces UnsignedFingerPrint in the
57 hash_module = __import__(module_name, fromlist=[module_name])
  /external/chromium_org/sandbox/win/src/
target_interceptions.cc 47 UNICODE_STRING* module_name = local
51 if ((!module_name) && (image_flags & MODULE_HAS_CODE)) {
54 module_name = ExtractModuleName(file_name);
60 if (!agent->OnDllLoad(file_name, module_name, *base)) {
67 if (module_name)
68 operator delete(module_name, NT_ALLOC);
  /external/chromium_org/tools/memory_watcher/
preamble_patcher.h 134 // exactly match the function you specify using module_name and
137 // @param module_name The name of the module from which the function
153 static SideStepError Patch(LPCTSTR module_name,
157 ASSERT1(module_name && function_name);
158 if (!module_name || !function_name) {
163 HMODULE module = ::GetModuleHandle(module_name);
  /external/chromium_org/chrome/renderer/extensions/
module_system.h 75 // require('module_name') from the loaded JS files.
76 v8::Handle<v8::Value> Require(const std::string& module_name);
80 // equivalent to calling require('module_name').method_name() from JS.
81 v8::Local<v8::Value> CallModuleMethod(const std::string& module_name,
84 const std::string& module_name,
88 const std::string& module_name,
108 // require(|module_name|)[|module_field|].
115 const std::string& module_name,
120 const std::string& module_name,
125 // requireNative(|module_name|)[|module_field|]
    [all...]
module_system.cc 28 const char* kModuleName = "module_name";
179 v8::Handle<v8::Value> ModuleSystem::Require(const std::string& module_name) {
182 RequireForJsInner(v8::String::New(module_name.c_str())));
187 v8::Handle<v8::String> module_name = args[0]->ToString(); local
188 args.GetReturnValue().Set(RequireForJsInner(module_name));
192 v8::Handle<v8::String> module_name) {
209 v8::Handle<v8::Value> exports(modules->Get(module_name));
213 std::string module_name_str = *v8::String::AsciiValue(module_name);
222 v8::Handle<v8::Value> func_as_value = RunString(wrapped_source, module_name);
259 modules->Set(module_name, exports)
    [all...]
  /development/testrunner/
create_test.py 62 android:label="Tests for $MODULE_NAME">
75 LOCAL_PACKAGE_NAME := ${MODULE_NAME}Tests${CERTIFICATE}
77 LOCAL_INSTRUMENTATION_FOR := ${MODULE_NAME}
86 def _GenerateTestManifest(manifest, module_name, mapping=None):
94 module_name: module name used for labelling
109 mapping = {"PACKAGE_NAME":package_name, "MODULE_NAME":module_name,
159 module_name = mk.GetVariable(mk.PACKAGE_NAME)
160 mapping = {"MODULE_NAME":module_name, "CERTIFICATE":cert_definition
    [all...]
  /external/chromium_org/native_client_sdk/src/
test_all.py 36 for module_name in TEST_MODULES:
37 module = __import__(module_name)
  /external/chromium_org/ui/base/cursor/
cursor_loader_win.h 32 static void SetCursorResourceModule(const string16& module_name);
  /external/freetype/include/freetype/
ftmodapi.h 52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' isn't a valid module name, or `property_name
    [all...]
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 425 def WriteWindowsDefFile(module_name, signatures, outfile):
433 module_name: The name of the module we are writing a stub for.
438 outfile.write('LIBRARY %s\n' % module_name)
456 def CreateWindowsLib(module_name, signatures, intermediate_dir, outdir_path,
465 module_name: The name of the module we are writing a stub for.
477 module_name + '.def')
479 module_name + '.lib')
482 WriteWindowsDefFile(module_name, signatures, outfile)
520 def __init__(self, module_name, signatures):
521 """Initializes PosixStubWriter for this set of signatures and module_name
    [all...]
generate_stubs_unittest.py 128 module_name = 'my_module-1'
131 gs.WriteWindowsDefFile(module_name, signatures, outfile)
137 """ % module_name))
161 self.module_name = 'my_module-1'
164 self.writer = gs.PosixStubWriter(self.module_name, self.signatures)
168 gs.PosixStubWriter.EnumName(self.module_name))
172 gs.PosixStubWriter.IsInitializedName(self.module_name))
177 gs.PosixStubWriter.InitializeModuleName(self.module_name))
182 gs.PosixStubWriter.UninitializeModuleName(self.module_name))
224 decl = gs.PosixStubWriter.InitializeModuleName(self.module_name)
    [all...]
  /external/chromium_org/tools/perf/
run_measurement 16 def BootstrapIfNeeded(module_name, module_path, module_deps_url):
17 """Ensures that the given module_name is available, grab from URL if not."""
19 imp.find_module(module_name)
24 imp.find_module(module_name)
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.h 183 // exactly match the function you specify using module_name and
186 // @param module_name The name of the module from which the function
202 static SideStepError Patch(LPCTSTR module_name,
206 SIDESTEP_ASSERT(module_name && function_name);
207 if (!module_name || !function_name) {
212 HMODULE module = ::GetModuleHandle(module_name);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.h 183 // exactly match the function you specify using module_name and
186 // @param module_name The name of the module from which the function
202 static SideStepError Patch(LPCTSTR module_name,
206 SIDESTEP_ASSERT(module_name && function_name);
207 if (!module_name || !function_name) {
212 HMODULE module = ::GetModuleHandle(module_name);
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 29 for module_name in module_list:
30 self._overrides[module_name] = getattr(base_module, module_name)
31 setattr(self, module_name, stubs[module_name]())
32 setattr(base_module, module_name, getattr(self, module_name))
41 for module_name, original_module in self._overrides.iteritems():
42 setattr(self._base_module, module_name, original_module)

Completed in 713 milliseconds

1 2 3 4 5 6 7 8