Searched refs:import_name (Results 1 - 6 of 6) sorted by relevance

/external/opencv3/3rdparty/jinja2/
H A Dutils.py119 def import_string(import_name, silent=False):
131 if ':' in import_name:
132 module, obj = import_name.split(':', 1)
133 elif '.' in import_name:
134 items = import_name.split('.')
138 return __import__(import_name)
/external/chromium-trace/catapult/third_party/webapp2/
H A Dwebapp2.py1670 import_name = None variable in class:ImportStringError
1674 def __init__(self, import_name, exception):
1675 self.import_name = import_name
1680 for part in import_name.split('.'):
1688 msg = msg % (import_name, exception.__class__.__name__,
1834 def import_string(import_name, silent=False):
1839 :param import_name:
1847 import_name = _to_utf8(import_name)
[all...]
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
H A Dimport_statement.py161 if children[0].type != symbol.import_name:
/external/v8/src/ast/
H A Dast.h582 const AstRawString* import_name() const { return import_name_; } function in class:v8::internal::final
594 const AstRawString* import_name,
597 import_name_(import_name),
3114 const AstRawString* import_name,
3118 parser_zone_, proxy, import_name, module_specifier, scope, pos);
593 ImportDeclaration(Zone* zone, VariableProxy* proxy, const AstRawString* import_name, const AstRawString* module_specifier, Scope* scope, int pos) argument
3113 NewImportDeclaration(VariableProxy* proxy, const AstRawString* import_name, const AstRawString* module_specifier, Scope* scope, int pos) argument
/external/v8/test/cctest/
H A Dtest-parsing.cc5903 CHECK(import_decl->import_name()->IsOneByteEqualTo("q"));
5907 CHECK(import_decl->import_name()->IsOneByteEqualTo("default"));
/external/v8/src/parsing/
H A Dparser.cc1444 const AstRawString* import_name = ParseIdentifierName(CHECK_OK); local
1445 const AstRawString* local_name = import_name;
1464 factory()->NewImportDeclaration(proxy, import_name, NULL, scope_, pos);

Completed in 255 milliseconds