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

  /external/elfutils/libdw/
dwarf_getscopevar.c 48 getattr (Dwarf_Die *die, int search_name, Dwarf_Word *value) function
133 if (getattr (result, DW_AT_decl_file, &i) != 0
142 && (getattr (result, DW_AT_decl_line, &i) != 0
146 && (getattr (result, DW_AT_decl_column, &i) != 0
  /external/libmojo/third_party/jinja2/
sandbox.py 283 return not (getattr(obj, 'unsafe_callable', False) or
284 getattr(obj, 'alters_data', False))
316 value = getattr(obj, attr)
325 def getattr(self, obj, attribute): member in class:SandboxedEnvironment
330 value = getattr(obj, attribute)
environment.py 387 return getattr(obj, attr)
392 def getattr(self, obj, attribute): member in class:Environment
397 return getattr(obj, attribute)
415 if getattr(func, 'contextfilter', False):
420 elif getattr(func, 'evalcontextfilter', False):
427 elif getattr(func, 'environmentfilter', False):
    [all...]
  /external/python/cpython3/Objects/
classobject.c 79 PyObject *getattr; local
81 _Py_IDENTIFIER(getattr);
88 getattr = _PyDict_GetItemId(builtins, &PyId_getattr);
89 return Py_BuildValue("O(ON)", getattr, self, funcname);
methodobject.c 325 PyObject *getattr; local
326 _Py_IDENTIFIER(getattr);
332 getattr = _PyDict_GetItemId(builtins, &PyId_getattr);
333 return Py_BuildValue("O(Os)", getattr, m->m_self, m->m_ml->ml_name);
descrobject.c 393 PyObject *getattr; local
394 _Py_IDENTIFIER(getattr);
397 getattr = _PyDict_GetItemId(builtins, &PyId_getattr);
398 return Py_BuildValue("O(OO)", getattr, PyDescr_TYPE(descr),
1102 PyObject *getattr; local
    [all...]
typeobject.c 6212 PyObject *getattr, *getattribute, *res; local
    [all...]
  /external/python/cpython3/Objects/stringlib/
unicode_format.h 147 getattr(PyObject *obj, SubString *name) function
392 format_spec. It handles getindex and getattr lookups and consumes
451 /* getattr lookup "." */
452 tmp = getattr(obj, &name);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
dwarf.go 129 // name. getattr moves the desired one to the front so
131 func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr { func
210 if name == getattr(a, dwarf.DW_AT_name).Data {
589 c := newdie(ctxt, dst, src.Abbrev, getattr(src, dwarf.DW_AT_name).Data.(string), 0)
609 getattr(structdie, dwarf.DW_AT_name).Data, field)
613 a := getattr(child, dwarf.DW_AT_type)
655 elem := getattr(die, dwarf.DW_AT_go_elem).Data.(*sym.Symbol)
703 gotype := getattr(die, dwarf.DW_AT_type).Data.(*sym.Symbol)
777 newattr(dwh, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, getattr(hash, dwarf.DW_AT_byte_size).Value, nil)
793 sudogsize := int(getattr(sudog, dwarf.DW_AT_byte_size).Value
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
dwarf.go 129 // name. getattr moves the desired one to the front so
131 func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr { func
210 if name == getattr(a, dwarf.DW_AT_name).Data {
589 c := newdie(ctxt, dst, src.Abbrev, getattr(src, dwarf.DW_AT_name).Data.(string), 0)
609 getattr(structdie, dwarf.DW_AT_name).Data, field)
613 a := getattr(child, dwarf.DW_AT_type)
655 elem := getattr(die, dwarf.DW_AT_go_elem).Data.(*sym.Symbol)
703 gotype := getattr(die, dwarf.DW_AT_type).Data.(*sym.Symbol)
777 newattr(dwh, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, getattr(hash, dwarf.DW_AT_byte_size).Value, nil)
793 sudogsize := int(getattr(sudog, dwarf.DW_AT_byte_size).Value
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 232 getattr(PyObject *obj, SubString *name) function
474 format_spec. It handles getindex and getattr lookups and consumes
520 /* getattr lookup "." */
521 tmp = getattr(obj, &name);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 235 getattr(PyObject *obj, SubString *name) function
477 format_spec. It handles getindex and getattr lookups and consumes
523 /* getattr lookup "." */
524 tmp = getattr(obj, &name);
    [all...]
  /external/python/cpython2/Objects/stringlib/
string_format.h 232 getattr(PyObject *obj, SubString *name) function
474 format_spec. It handles getindex and getattr lookups and consumes
520 /* getattr lookup "." */
521 tmp = getattr(obj, &name);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 5496 PyObject *getattr, *getattribute, *res; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 5444 PyObject *getattr, *getattribute, *res; local
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 5593 PyObject *getattr, *getattribute, *res; local
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 154 /* builtins.getattr, used for saving nested names with protocol < 4 */
155 PyObject *getattr; member in struct:__anon33343
195 Py_CLEAR(st->getattr);
212 st->getattr = PyDict_GetItemString(builtins, "getattr");
213 if (st->getattr == NULL)
215 Py_INCREF(st->getattr);
    [all...]
  /prebuilts/misc/common/jython/
jython.jar 
  /external/protobuf/php/ext/google/protobuf/
upb.c 3023 static uint64_t getattr(const tarjan *t, const upb_refcounted *r) { function
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.c 3182 static uint64_t getattr(const tarjan *t, const upb_refcounted *r) { function
    [all...]

Completed in 394 milliseconds