/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
ccompiler.py | 617 def link(self, target_desc, objects, output_filename, output_dir=None, 625 as 'objects'. 'output_filename' should be a filename. If 626 'output_dir' is supplied, 'output_filename' is relative to it 627 (i.e. 'output_filename' can provide directory components if 682 def link_shared_object(self, objects, output_filename, output_dir=None, 688 output_filename, output_dir, [all...] |
/external/chromium_org/tools/grit/grit/tool/ |
build.py | 224 outfiles[ix].output_filename = os.path.abspath( 228 output.output_filename = os.path.abspath(os.path.join(
|
/external/sonivox/jet_tools/JetCreator/ |
JetFile.py | 63 OUTPUT_FILENAME = 'filename'
274 if config.has_option(OUTPUT_SECTION, OUTPUT_FILENAME):
275 config.filename = config.get(OUTPUT_SECTION, OUTPUT_FILENAME)
663 config.set(OUTPUT_SECTION, OUTPUT_FILENAME, self.config.filename)
[all...] |
/external/webrtc/src/modules/audio_processing/test/ |
unit_test.cc | 66 const std::string output_filename; member in class:__anon28693::ApmTest 78 output_filename(resource_path + "output_data_fixed.pb"), 80 output_filename(resource_path + "output_data_float.pb"), [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
android.py | 135 def Write(self, qualified_target, relative_target, base_path, output_filename, 144 output_filename: output .mk file name to write 148 gyp.common.EnsureDirExists(output_filename) 150 self.fp = open(output_filename, 'w') [all...] |
make.py | 676 def Write(self, qualified_target, base_path, output_filename, spec, configs, 684 output_filename: output .mk file name to write 688 gyp.common.EnsureDirExists(output_filename) 690 self.fp = open(output_filename, 'w') 805 def WriteSubMake(self, output_filename, makefile_path, targets, build_dir): 812 output_filename: sub-project Makefile name to write 817 gyp.common.EnsureDirExists(output_filename) 818 self.fp = open(output_filename, 'w') 823 os.path.join(os.path.dirname(output_filename), build_dir)) [all...] |
/frameworks/av/cmds/stagefright/ |
stagefright.cpp | 609 fprintf(stderr, " -d(ump) output_filename (raw stream data to a file)\n"); 610 fprintf(stderr, " -D(ump) output_filename (decoded PCM data to a file)\n");
|
/art/runtime/hprof/ |
hprof.cc | 369 Hprof(const char* output_filename, int fd, bool direct_to_ddms) 370 : filename_(output_filename), [all...] |