HomeSort by relevance Sort by last modified time
    Searched refs:getfile (Results 1 - 25 of 30) sorted by null

1 2

  /external/toolchain-utils/cwp/bartlett/
server.py 76 getfile = FileEntry()
78 getfile.profile_data = db.Blob(f1)
79 getfile.data_md5 = md5.new(f1).hexdigest()
80 getfile.board = self.request.get('board')
81 getfile.chromeos_version = self.request.get('chromeos_version')
82 getfile.put()
83 self.response.out.write(getfile.key())
  /external/tensorflow/tensorflow/tools/docs/
generate.py 40 script_dir = os.path.dirname(tf_inspect.getfile(tf_inspect.currentframe()))
  /external/tensorflow/tensorflow/python/platform/
resource_loader.py 57 return _os.path.dirname(_inspect.getfile(_sys._getframe(1)))
116 data_files_path = _os.path.dirname(_inspect.getfile(_sys._getframe(1)))
googletest.py 77 os.path.basename(tf_inspect.getfile(first_frame)))
  /external/bcc/examples/usdt_sample/scripts/
lat_dist.py 31 bpf_text_shared = "%s/bpf_text_shared.c" % os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
lat_avg.py 37 bpf_text_shared = "%s/bpf_text_shared.c" % os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
latency.py 25 bpf_text_shared = "%s/bpf_text_shared.c" % os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
  /external/curl/tests/
memanalyze.pl 262 $getfile{$1}="$source:$linenum";
268 $getfile{$1}="$source:$linenum";
271 $getfile{$2}="$source:$linenum";
276 $getfile{$1}="$source:$linenum";
388 print "Open file descriptor created at ".$getfile{$_}."\n";
  /external/tensorflow/tensorflow/
api_template.__init__.py 86 _current_file_location = _inspect.getfile(_inspect.currentframe())
api_template_v1.__init__.py 100 _current_file_location = _inspect.getfile(_inspect.currentframe())
  /external/tensorflow/tensorflow/python/util/
tf_inspect.py 304 def getfile(object): # pylint: disable=redefined-builtin function
305 """TFDecorator-aware replacement for inspect.getfile."""
309 # and only .pyc files are used. In this case, getfile
315 return _inspect.getfile(unwrapped_object)
tf_inspect_test.py 500 self.assertTrue('tf_inspect_test.py' in tf_inspect.getfile(
502 self.assertTrue('tf_decorator.py' in tf_inspect.getfile(
  /external/bcc/tests/python/
test_usdt2.py 83 comp = Popen(["gcc", "-I", "%s/include" % os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))),
test_usdt3.py 90 include_path = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) + "/include"
test_usdt.py 134 comp = Popen(["gcc", "-I", "%s/include" % os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
inspect.py 15 getfile(), getsourcefile(), getsource() - find an object's source code
398 def getfile(object): function
444 filename = getfile(object)
466 _filename = getsourcefile(object) or getfile(object)
526 file = getfile(object)
    [all...]
  /external/python/cpython2/Lib/
inspect.py 15 getfile(), getsourcefile(), getsource() - find an object's source code
397 def getfile(object): function
443 filename = getfile(object)
465 _filename = getsourcefile(object) or getfile(object)
525 file = getfile(object)
    [all...]
urllib.py 352 fp = h.getfile()
445 fp = h.getfile()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
inspect.py 15 getfile(), getsourcefile(), getsource() - find an object's source code
400 def getfile(object): function
446 filename = getfile(object)
468 _filename = getsourcefile(object) or getfile(object)
    [all...]
httplib.py 1085 def getfile(self): member in class:HTTP
    [all...]
urllib.py 344 fp = h.getfile()
437 fp = h.getfile()
    [all...]
  /external/tensorflow/tensorflow/python/debug/lib/
source_utils_test.py 91 tf_inspect.getfile(tf_inspect.currentframe()))
227 tf_inspect.getfile(tf_inspect.currentframe()))
  /external/python/apitools/apitools/base/protorpclite/
test_util.py 641 module_file = inspect.getfile(module_attribute)
  /external/python/cpython3/Lib/
inspect.py 14 getfile(), getsourcefile(), getsource() - find an object's source code
642 def getfile(object): function
684 filename = getfile(object)
708 _filename = getsourcefile(object) or getfile(object)
773 file = getfile(object)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_inspect.py 25 # getdoc, getfile, getmodule, getsourcefile, getcomments, getsource,
285 self.assertEqual(inspect.getfile(mod.StupidGit), mod.__file__)

Completed in 744 milliseconds

1 2