HomeSort by relevance Sort by last modified time
    Searched full:getattr (Results 451 - 475 of 779) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib.py 208 return getattr(self, name)(url)
210 return getattr(self, name)(url, data)
370 method = getattr(self, name)
696 return getattr(self,name)(url, realm)
698 return getattr(self,name)(url, realm, data)
718 return getattr(self,name)(url, realm)
720 return getattr(self,name)(url, realm, data)
    [all...]
argparse.py 138 if getattr(namespace, name, None) is None:
140 return getattr(namespace, name)
797 return [(name, getattr(self, name)) for name in names]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_builtin.py 306 # (an ugly trick to cause getattr(f, "__class__") to fail)
616 self.assertTrue(getattr(sys, 'stdout') is sys.stdout)
617 self.assertRaises(TypeError, getattr, sys, 1)
618 self.assertRaises(TypeError, getattr, sys, 1, "foo")
619 self.assertRaises(TypeError, getattr)
621 self.assertRaises(UnicodeError, getattr, sys, unichr(sys.maxunicode))
711 self.assertEqual(getattr(s, s), s)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib.py 208 return getattr(self, name)(url)
210 return getattr(self, name)(url, data)
370 method = getattr(self, name)
696 return getattr(self,name)(url, realm)
698 return getattr(self,name)(url, realm, data)
718 return getattr(self,name)(url, realm)
720 return getattr(self,name)(url, realm, data)
    [all...]
argparse.py 138 if getattr(namespace, name, None) is None:
140 return getattr(namespace, name)
797 return [(name, getattr(self, name)) for name in names]
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 342 const TLSModelAttr *Attr = D.getAttr<TLSModelAttr>();
689 if (const SectionAttr *SA = D->getAttr<SectionAttr>())
751 if (const SectionAttr *SA = FD->getAttr<SectionAttr>())
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 44 ctrls = getattr(JetDefs, ctrlList)
52 self.ctrls[Text].Bind(wx.EVT_BUTTON, getattr(callbackClass, Fct), self.ctrls[Text], id=Id)
67 self.ctrls[Text].Bind(wx.EVT_COMBOBOX, getattr(callbackClass, Fct), self.ctrls[Text])
81 self.ctrls[Text].Bind(wx.EVT_CHECKBOX , getattr(callbackClass, Fct), self.ctrls[Text])
86 self.ctrls[Text].Bind(wx.EVT_RADIOBOX , getattr(callbackClass, Fct), self.ctrls[Text])
92 self.ctrls[Text].Bind(wx.EVT_RADIOBUTTON , getattr(callbackClass, Fct), self.ctrls[Text])
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t057autoAST.py 71 r = getattr(parser, grammarEntry)()
100 r = getattr(parser, grammarEntry)()
104 r = getattr(walker, treeEntry)()
t055templates.py 21 result = getattr(parser, grammarEntry)()
  /external/clang/tools/libclang/
CXComment.cpp 208 return cxstring::createRef(HST->getAttr(AttrIdx).Name);
216 return cxstring::createRef(HST->getAttr(AttrIdx).Value);
535 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i);
    [all...]
  /external/chromium_org/chrome/tools/
webforms_extractor.py 247 options.log_level = getattr(logging, options.log_level)
  /external/chromium_org/native_client_sdk/src/tools/
httpd.py 82 delegate_class = getattr(module, 'HTTPRequestHandlerDelegate', None)
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
server.py 93 response = getattr(l, name)(**kargs)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
python.js 24 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id',
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
message_pool.py 180 method = getattr(self, '_handle_' + message.name)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 69 return getattr(self.__delegate, name)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
main.py 226 if not hasattr(getattr(testCaseClass, attrname), '__call__'):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
main.py 82 self.module = getattr(self.module, part)
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
parse.py 252 method = getattr(self, 'parse_' + self.token.name_or_data)
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
service_reflection.py 170 method = getattr(srvc, method_descriptor.name)
  /external/chromium_org/tools/gyp/
gyptest.py 127 return getattr(self.fp, attr)
  /external/chromium_org/tools/gyp/pylib/gyp/
mac_tool.py 38 return getattr(self, method)(*args[1:])
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 166 if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
  /external/llvm/utils/lit/lit/
ProgressBar.py 152 else: return getattr(self, s[2:-1])

Completed in 1365 milliseconds

<<11121314151617181920>>