/external/clang/test/SemaObjC/ |
D | warn-forward-class-attr-deprecated.m | 7 - (id) filenames __attribute__((deprecated)); // expected-note {{'filenames' has been explicitly ma… 12 - (id) filenames __attribute__((deprecated)); 13 - (id)initWithAccount: (id)account filenames:(id)filenames; 19 …id p = [self initWithAccount : 0 filenames :[scope filenames]]; // expected-warning {{'filenames'… 22 - (id) filenames { return 0; } method 23 - (id)initWithAccount: (id)account filenames:(id)filenames { return 0; }
|
/external/e2fsprogs/e2fsck/ |
D | profile_helpers.c | 267 char **filenames; in profile_init_path() local 277 filenames = (char **) malloc((n_entries+1) * sizeof(char*)); in profile_init_path() 278 if (filenames == 0) in profile_init_path() 284 filenames[i] = (char*) malloc(ent_len + 1); in profile_init_path() 285 if (filenames[i] == 0) { in profile_init_path() 287 while(--i >= 0) free(filenames[i]); in profile_init_path() 288 free(filenames); in profile_init_path() 291 strncpy(filenames[i], s, ent_len); in profile_init_path() 292 filenames[i][ent_len] = 0; in profile_init_path() 299 filenames[i] = 0; in profile_init_path() [all …]
|
/external/v8/tools/ |
D | concatenate-files.py | 41 def Concatenate(filenames): argument 51 if len(filenames) < 2: 52 print "An error occured generating %s:\nNothing to do." % filenames[-1] 56 with open(filenames[-1], "wb") as target: 57 for filename in filenames[:-1]: 62 print "An error occured when writing %s:\n%s" % (filenames[-1], e)
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | shuffler.py | 181 def run(self, job_name, bucket_name, filenames): argument 183 for i in range(len(filenames)): 185 filenames[i]) 290 filenames = mapper_spec.params[self.FILES_PARAM][shard_number] 292 if len(filenames) != len(self._offsets): 299 for (i, filename) in enumerate(filenames): 492 filenames = [] 494 filenames.append([None] * shards) 499 filenames[y][x] = shard_filenames[y] 500 return filenames [all …]
|
/external/opencv3/modules/shape/test/ |
D | test_shape.cpp | 69 filenames.push_back(filename.str()); in ShapeBaseTest() 73 const int totalCount = (int)filenames.size(); in ShapeBaseTest() 121 for (vector<string>::const_iterator a = filenames.begin(); a != filenames.end(); ++a) in mpegTest() 124 int aIndex = (int)(a - filenames.begin()); in mpegTest() 134 for (vector<string>::const_iterator b = filenames.begin(); b != filenames.end(); ++b) in mpegTest() 136 int bIndex = (int)(b - filenames.begin()); in mpegTest() 194 vector<string> filenames; member in ShapeBaseTest
|
/external/autotest/client/profilers/catprofile/ |
D | catprofile.py | 15 def initialize(self, filenames = ['/proc/meminfo', '/proc/slabinfo'], argument 17 self.filenames = filenames 29 for filename in self.filenames:
|
/external/selinux/policycoreutils/sepolicy/ |
D | sepolicy-bash-completion.sh | 102 compopt -o filenames 129 compopt -o filenames 133 compopt -o filenames 152 compopt -o filenames 163 compopt -o filenames 169 compopt -o filenames
|
/external/v8/test/preparser/ |
D | testcfg.py | 91 filenames = [f[:-3] for f in os.listdir(self.root) if f.endswith(".js")] 92 filenames.sort() 93 for f in filenames: 102 filenames = [f[:-4] for f in os.listdir(self.root) if f.endswith(".pyt")] 103 filenames.sort() 104 for f in filenames:
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/ |
D | run_pylint.py | 185 def lint_fileset(filenames, rcfile, description): argument 191 filenames = [filename for filename in filenames 193 if filenames: 195 pylint_shell_command = ['pylint', rc_flag] + filenames
|
/external/opencv3/apps/annotation/ |
D | opencv_annotation.cpp | 185 vector<String> filenames; in main() local 187 glob(folder, filenames); in main() 192 for (size_t i = 0; i < filenames.size(); i++){ in main() 194 Mat current_image = imread(filenames[i]); in main() 202 output << filenames[i] << output_stream.str(); in main()
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/lib/input_reader/ |
D | _gcs.py | 101 def __init__(self, filenames, index=0, buffer_size=None, _account_id=None, argument 115 self._filenames = filenames 179 filenames = reader_params[cls.OBJECT_NAMES_PARAM] 180 if not isinstance(filenames, list): 183 filenames.__class__.__name__) 184 for filename in filenames: 231 filenames = reader_params[cls.OBJECT_NAMES_PARAM] 239 for filename in filenames:
|
/external/chromium-trace/catapult/tracing/tracing_build/ |
D | check_gypi.py | 22 filenames = map(os.path.normpath, data['variables'][group]) 23 error += check_common.CheckListedFilesSorted(GYPI_FILE, group, filenames) 24 listed_files.extend(filenames)
|
/external/deqp/executor/tools/ |
D | xeTestLogCompare.cpp | 116 vector<string> filenames; member 270 XE_CHECK(!cmdLine.filenames.empty()); in runCompare() 275 results.resize(cmdLine.filenames.size()); in runCompare() 279 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++) in runCompare() 281 …ack(de::SharedPtr<LogFileReader>(new LogFileReader(results[ndx], cmdLine.filenames[ndx].c_str()))); in runCompare() 285 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++) in runCompare() 290 batchNames.push_back(de::FilePath(cmdLine.filenames[ndx].c_str()).getBaseName()); in runCompare() 387 cmdLine.filenames = opts.getArgs(); in parseCommandLine()
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
D | test_doctests.py | 5 filenames = [ variable 31 for filename in filenames: 58 args = filenames
|
/external/autotest/site_utils/suite_scheduler/ |
D | forgiving_config_parser.py | 36 def read(self, filenames): argument 42 to_return = ConfigParser.SafeConfigParser.read(self, filenames) 43 self._cached_config_file_names = filenames
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | reloader.py | 92 filenames = list(self.extra_files) 95 filenames.extend(file_callback()) 106 filenames.append(filename) 107 for filename in filenames:
|
/external/webrtc/webrtc/test/ |
D | frame_generator.cc | 242 std::vector<std::string> filenames, in CreateFromYuvFile() argument 246 assert(!filenames.empty()); in CreateFromYuvFile() 248 for (const std::string& filename : filenames) { in CreateFromYuvFile() 259 std::vector<std::string> filenames, in CreateScrollingInputFromYuvFiles() argument 266 assert(!filenames.empty()); in CreateScrollingInputFromYuvFiles() 268 for (const std::string& filename : filenames) { in CreateScrollingInputFromYuvFiles()
|
/external/chromium-trace/catapult/telemetry/build/ |
D | update_docs.py | 19 for dirname, _, filenames in os.walk(docs_dir): 20 for filename in filenames: 91 for dirname, _, filenames in os.walk(docs_dir): 92 for filename in filenames:
|
/external/jetty/src/java/org/eclipse/jetty/security/ |
D | PropertyUserStore.java | 258 public void filesChanged(List<String> filenames) throws Exception in doStart() 260 if (filenames == null) in doStart() 262 if (filenames.isEmpty()) in doStart() 264 if (filenames.size() == 1) in doStart() 266 Resource r = Resource.newResource(filenames.get(0)); in doStart()
|
/external/libxml2/xstc/ |
D | fixup-tests.py | 9 filenames = os.listdir(baseDir) variable 15 for file in filenames: 21 for sub in filenames:
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/ |
D | validators_unittest.py | 532 filenames = {'1f_click.dat': 1.718284027744, 534 for filename, expected_max_distance in filenames.items(): 559 filenames = [ 567 for filename in filenames: 572 filenames = [ 578 for filename in filenames: 727 filenames = {'center_to_right_normal_link.dat': 4.6043458, 730 for filename, expected_value in filenames.items(): 767 filenames = ['finger_crossing.top_right_to_bottom_left.slow.dat', 769 for filename in filenames: [all …]
|
D | firmware_utils_unittest.py | 17 filenames = { 31 for filename, (expected_fw, expected_date) in filenames.items():
|
/external/llvm/utils/lint/ |
D | generic_lint.py | 18 def GenericCodeLintMain(filenames): argument 19 common_lint.RunLintOverAllFiles(GenericCodeLint(), filenames)
|
/external/pdfium/tools/drmemory/scripts/ |
D | drmemory_analyze.py | 146 def Report(self, filenames, testcase, check_sanity): argument 153 for f in filenames: 195 filenames = args 198 return DrMemoryAnalyzer().Report(filenames, None, False)
|
/external/deqp/modules/gles2/functional/ |
D | es2fTextureFormatTests.cpp | 397 …nderCtxInfo, const char* name, const char* description, const std::vector<std::string>& filenames); 417 …enderCtxInfo, const char* name, const char* description, const std::vector<std::string>& filenames) in Compressed2DFormatCase() argument 421 , m_filenames (filenames) in Compressed2DFormatCase() 497 …nderCtxInfo, const char* name, const char* description, const std::vector<std::string>& filenames); 522 …enderCtxInfo, const char* name, const char* description, const std::vector<std::string>& filenames) in CompressedCubeFormatCase() argument 526 , m_filenames (filenames) in CompressedCubeFormatCase() 660 static const char* filenames[] = in init() local 671 …_pot", "GL_ETC1_RGB8_OES, GL_TEXTURE_2D", toStringVector(filenames, DE_LENGTH_OF_ARRAY(filenames))… in init() 675 vector<string> filenames; in init() local 676 filenames.push_back("data/etc1/photo_helsinki_113x89.pkm"); in init() [all …]
|