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

  /external/libchrome/third_party/jinja2/
loaders.py 38 """Baseclass for all loaders. Subclass this and override `get_source` to
54 def get_source(self, environment, template):
70 def get_source(self, environment, template): member in class:BaseLoader
102 or loads one by calling :meth:`get_source`. Subclasses should not
105 will not call this method but `get_source` directly.
113 source, filename, uptodate = self.get_source(environment, name)
167 def get_source(self, environment, template): member in class:FileSystemLoader
231 def get_source(self, environment, template): member in class:PackageLoader
282 def get_source(self, environment, template): member in class:DictLoader
306 details have a look at :meth:`BaseLoader.get_source` which has the sam
313 def get_source(self, environment, template): member in class:FunctionLoader
349 def get_source(self, environment, template): member in class:PrefixLoader
393 def get_source(self, environment, template): member in class:ChoiceLoader
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
pkgutil.py 282 source = self.get_source(fullname)
294 def get_source(self, fullname=None): member in class:ImpLoader
310 self.source = self._get_delegate().get_source()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pkgutil.py 274 source = self.get_source(fullname)
286 def get_source(self, fullname=None): member in class:ImpLoader
302 self.source = self._get_delegate().get_source()
  /external/python/cpython2/Lib/
pkgutil.py 280 source = self.get_source(fullname)
292 def get_source(self, fullname=None): member in class:ImpLoader
308 self.source = self._get_delegate().get_source()
  /external/python/cpython3/Lib/importlib/
abc.py 224 source = self.get_source(fullname)
230 def get_source(self, fullname): member in class:InspectLoader
276 source = self.get_source(fullname)
_bootstrap.py 761 def get_source(cls, fullname): member in class:BuiltinImporter
838 def get_source(cls, fullname): member in class:FrozenImporter
    [all...]
_bootstrap_external.py 775 def get_source(self, fullname): member in class:SourceLoader
776 """Concrete implementation of InspectLoader.get_source."""
1012 def get_source(self, fullname): member in class:SourcelessFileLoader
1064 def get_source(self, fullname): member in class:ExtensionFileLoader
1150 def get_source(self, fullname): member in class:_NamespaceLoader
    [all...]
  /external/python/cpython3/Lib/
pkgutil.py 322 source = self.get_source(fullname)
334 def get_source(self, fullname=None): member in class:ImpLoader
349 self.source = self._get_delegate().get_source()
  /external/v8/tools/testrunner/objects/
testcase.py 248 source = source or self.get_source()
257 def get_source(self): member in class:TestCase
  /external/pdfium/fxjs/
cjs_event.cpp 230 CJS_Return event::get_source(CJS_Runtime* pRuntime) { function in class:event
cjs_field.cpp 2586 CJS_Return Field::get_source(CJS_Runtime* pRuntime) { function in class:Field
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atifs_to_tgsi.c 126 get_source(struct st_translate *t, GLuint src_type) function
154 struct ureg_src src = get_source(t, srcReg->Index);
  /external/python/cpython3/Lib/test/test_importlib/source/
test_file_loader.py 40 def get_source(self, _): return 'attr = 42' member in class:SimpleTest.test_load_module_API.Tester
53 def get_source(self, _): pass member in class:SimpleTest.test_get_filename_API.Tester
  /external/mesa3d/src/mesa/main/
ff_fragment_shader.cpp 382 get_source(texenv_fragment_program *p, function
443 src = get_source(p, source, unit);
600 return get_source(p, TEXENV_SRC_PREVIOUS, 0);
1001 ir_rvalue *cf = get_source(p, TEXENV_SRC_PREVIOUS, 0);
    [all...]
  /external/python/cpython2/Lib/test/
test_warnings.py 593 # value of get_source() has a bad splitlines() method.
595 def get_source(self, fullname): member in class:_WarningsTests.test_issue31285.BadLoader
    [all...]
  /external/python/cpython3/Python/
_warnings.c 880 _Py_IDENTIFIER(get_source);
885 PyObject *get_source; local
903 /* Make sure the loader implements the optional get_source() method. */
904 (void)_PyObject_LookupAttrId(loader, &PyId_get_source, &get_source);
906 if (!get_source) {
910 /* Call get_source() to get the source code. */
911 source = PyObject_CallFunctionObjArgs(get_source, module_name, NULL);
912 Py_DECREF(get_source);
    [all...]
  /external/python/setuptools/pkg_resources/_vendor/
six.py 224 get_source = get_code # same as get_code variable in class:_SixMetaPathImporter
  /external/python/setuptools/setuptools/_vendor/
six.py 224 get_source = get_code # same as get_code variable in class:_SixMetaPathImporter
  /external/python/six/
six.py 224 get_source = get_code # same as get_code variable in class:_SixMetaPathImporter
  /external/scapy/scapy/modules/
six.py 229 get_source = get_code # same as get_code variable in class:_SixMetaPathImporter
  /external/python/cpython3/Lib/test/test_importlib/
test_abc.py 260 def get_source(self, fullname): member in class:InspectLoader
261 return super().get_source(fullname)
277 self.ins.get_source('blah')
534 with mock.patch.object(self.InspectLoaderSubclass, 'get_source') as mocked:
542 # If get_source() is None then this should be None.
543 with mock.patch.object(self.InspectLoaderSubclass, 'get_source') as mocked:
618 def mock_methods(self, *, get_source=False, get_filename=False):
620 if get_source:
622 'get_source')
631 get_source=True, get_filename=True
    [all...]
  /external/python/cpython3/Lib/test/test_warnings/
__init__.py 832 def get_source(self, fullname): member in class:_WarningsTests.test_issue31285.get_bad_loader.BadLoader
    [all...]

Completed in 1130 milliseconds