Home
last modified time | relevance | path

Searched refs:dotted_name (Results 1 – 21 of 21) sorted by relevance

/external/libchrome/base/android/
Djni_android.cc122 char dotted_name[bufsize]; in GetClass() local
123 memmove(dotted_name, class_name, bufsize); in GetClass()
125 if (dotted_name[i] == '/') { in GetClass()
126 dotted_name[i] = '.'; in GetClass()
133 ConvertUTF8ToJavaString(env, dotted_name).obj())); in GetClass()
/external/python/cpython2/Grammar/
DGrammar22 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
54 import_from: ('from' ('.'* dotted_name | '.'+)
57 dotted_as_name: dotted_name ['as' NAME]
60 dotted_name: NAME ('.' NAME)*
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt15 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
57 import_from: ('from' ('.'* dotted_name | '.'+)
60 dotted_as_name: dotted_name ['as' NAME]
63 dotted_name: NAME ('.' NAME)*
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt34 decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE
74 import_from: ('from' ('.'* dotted_name | '.'+)
77 dotted_as_name: dotted_name ['as' NAME]
80 dotted_name: NAME ('.' NAME)*
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
Dimport_statement.py31 if symbol_type != symbol.dotted_name:
260 return self.FindChild(symbol.dotted_name).value
264 self.FindChild(symbol.dotted_name).value = value
/external/python/cpython2/Include/
Dgraminit.h35 #define dotted_name 288 macro
/external/python/cpython3/Include/
Dgraminit.h38 #define dotted_name 291 macro
/external/python/cpython3/Lib/
Dsymbol.py59 dotted_name = 291 variable
/external/python/cpython2/Lib/
Dsymbol.py45 dotted_name = 288 variable
/external/python/cpython2/Tools/i18n/
Dpygettext.py264 def _get_modpkg_path(dotted_name, pathlist=None): argument
272 parts = dotted_name.split('.', 1)
292 dotted_name, pathlist)
/external/python/cpython3/Grammar/
DGrammar103 import_from: ('from' (('.' | '...')* dotted_name | ('.' | '...')+)
106 dotted_as_name: dotted_name ['as' NAME]
109 dotted_name: NAME ('.' NAME)*
Dpython.gram132 | 'from' a=('.' | '...')* b=dotted_name 'import' c=import_from_targets {
150 | a=dotted_name b=['as' z=NAME { z }] { _Py_alias(a->v.Name.id,
153 dotted_name[expr_ty]:
154 | a=dotted_name '.' b=NAME { _PyPegen_join_names_with_dot(p, a, b) }
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_import.py28 elif node.type == syms.dotted_name:
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_import.py28 elif node.type == syms.dotted_name:
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g202 | 'from' dotted_name 'import'
210 dotted_as_name: dotted_name (NAME NAME)?
213 dotted_name: NAME (DOT NAME)*
/external/python/cpython2/Lib/compiler/
Dtransformer.py216 assert nodelist[1][0] == symbol.dotted_name
342 def dotted_name(self, nodelist): member in Transformer
462 if nodelist[idx][0] == symbol.dotted_name:
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst449 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
451 dotted_name: `identifier` ("." `identifier`)*
/external/python/cpython2/Python/
Dast.c811 REQ(n, dotted_name); in ast_for_dotted_name()
2481 case dotted_name: in alias_for_import_name()
2578 if (TYPE(CHILD(n, idx)) == dotted_name) { in ast_for_import_stmt()
/external/python/cpython2/Modules/
Dparsermodule.c1870 int res = (validate_ntype(tree, dotted_name) in validate_dotted_name()
1968 int havename = (TYPE(CHILD(tree, ndots + 1)) == dotted_name); in validate_import_from()
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst512 dotted_name: `identifier` ("." `identifier`)*
/external/python/cpython3/Python/
Dast.c3516 case dotted_name: in alias_for_import_name()
3626 if (TYPE(CHILD(n, idx)) == dotted_name) { in ast_for_import_stmt()