HomeSort by relevance Sort by last modified time
    Searched full:filenames (Results 1 - 25 of 1141) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
warn-forward-class-attr-deprecated.m 7 - (id) filenames __attribute__((deprecated)); // expected-note {{'filenames' has been explicitly marked deprecated here}}
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' may be deprecated because the receiver type is unknown}}
22 - (id) filenames { return 0; }
23 - (id)initWithAccount: (id)account filenames:(id)filenames { return 0;
    [all...]
  /external/chromium-trace/trace-viewer/build/
generate_deps_js_contents.py 14 for dirpath, dirnames, filenames in os.walk(srcdir):
15 for f in filenames:
18 filenames = [x for x in all_filenames if
20 filenames = [os.path.relpath(x) for x in filenames]
26 filenames = [x for x in filenames if not ignored(x)]
28 load_sequence = parse_deps.calc_load_sequence(filenames, srcdir)
generate_template_contents.py 14 for dirpath, dirnames, filenames in os.walk(srcdir):
15 for f in filenames:
18 filenames = [x for x in all_filenames if
20 filenames = [os.path.relpath(x) for x in filenames]
30 filenames = [x for x in filenames if not ignored(x)]
34 for filename in filenames:
check_grit.py 12 filenames = [os.path.join(srcdir, x) for x in [
17 load_sequence = parse_deps.calc_load_sequence(filenames, srcdir)
31 for (dirpath, dirnames, filenames) in os.walk('src/images'):
32 for name in filenames:
flatten.py 13 def flatten_module_contents(filenames):
15 load_sequence = parse_deps.calc_load_sequence(filenames, srcdir)
28 def flatten_style_sheet_contents(filenames):
30 load_sequence = parse_deps.calc_load_sequence(filenames, srcdir)
53 sys.stderr.write("Expected: filename or filenames to flatten\n")
  /external/nanopb-c/tests/special_characters/
SConscript 1 # Test that special characters in .proto filenames work.
  /external/chromium_org/tools/gyp/test/external-cross-compile/src/
fake_cross.py 10 filenames = sys.argv[2:] variable
12 for filename in filenames:
  /external/llvm/utils/lint/
generic_lint.py 18 def GenericCodeLintMain(filenames):
19 common_lint.RunLintOverAllFiles(GenericCodeLint(), filenames)
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
lintrunner.py 30 def Run(self, filenames, error_handler):
31 """Run a linter on the given filenames.
34 filenames: The filenames to check
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
verify_ppapi_test.py 25 filenames = [
30 result = verify_ppapi.PartitionFiles(filenames)
31 self.assertTrue(filenames[0] in result['ppapi'])
32 self.assertTrue(filenames[1] in result['ppapi_cpp'])
33 self.assertTrue(filenames[2] in result['ppapi_cpp'])
37 filenames = [
42 result = verify_ppapi.PartitionFiles(filenames)
48 filenames = [
52 result = verify_ppapi.PartitionFiles(filenames)
58 filenames =
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
lintrunner.py 30 def Run(self, filenames, error_handler):
31 """Run a linter on the given filenames.
34 filenames: The filenames to check
  /libcore/luni/src/main/files/
README.cacerts 1 The filenames in the cacerts directory are in the format of <hash>.<n>
  /external/chromium-trace/trace-viewer/examples/
trace_viewer.html 45 function loadTraces(filenames, onTracesLoaded) {
47 for (var i = 0; i < filenames.length; i++) {
50 var numTracesPending = filenames.length;
52 filenames.forEach(function(filename, i) {
57 onTracesLoaded(filenames, traces);
79 function createViewFromTraces(filenames, traces) {
87 timelineViewEl.viewTitle = filenames;
122 var filenames = ['../test_data/' + file];
123 loadTraces(filenames, createViewFromTraces);
  /external/e2fsprogs/e2fsck/
profile_helpers.c 267 char **filenames; local
277 filenames = (char **) malloc((n_entries+1) * sizeof(char*));
278 if (filenames == 0)
284 filenames[i] = (char*) malloc(ent_len + 1);
285 if (filenames[i] == 0) {
287 while(--i >= 0) free(filenames[i]);
288 free(filenames);
291 strncpy(filenames[i], s, ent_len);
292 filenames[i][ent_len] = 0;
299 filenames[i] = 0
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 15 for dirpath, _, filenames in walk(top, **kwargs):
16 for filename in filter(filenames, pattern):
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.c 46 dbgfmt_cv->filenames =
49 dbgfmt_cv->filenames[i].pathname = NULL;
50 dbgfmt_cv->filenames[i].filename = NULL;
51 dbgfmt_cv->filenames[i].str_off = 0;
52 dbgfmt_cv->filenames[i].info_off = 0;
72 if (dbgfmt_cv->filenames[i].pathname)
73 yasm_xfree(dbgfmt_cv->filenames[i].pathname);
75 yasm_xfree(dbgfmt_cv->filenames);
  /external/chromium_org/tools/grit/grit/node/custom/
filename.py 6 '''A CustomType for filenames.'''
13 '''Validates that messages can be used as Windows filenames, and strips
  /external/chromium_org/chrome/common/extensions/docs/server2/
start_dev_server.py 17 FILENAMES = ['app.yaml', 'appengine_main.py']
20 for filename in FILENAMES:
30 for filename in FILENAMES:
  /external/chromium_org/third_party/WebKit/Source/platform/
FileChooser.cpp 70 Vector<String> filenames; local
71 filenames.append(filename);
72 chooseFiles(filenames);
75 void FileChooser::chooseFiles(const Vector<String>& filenames)
78 if (m_settings.selectedFiles == filenames)
83 for (unsigned i = 0; i < filenames.size(); ++i)
84 files.append(FileChooserFileInfo(filenames[i]));
  /external/chromium_org/tools/git/
for-all-touched-files.py 11 flag) is replaced with each of the filenames of new or modified files.
61 filenames = []
71 filenames.append(filename)
72 return filenames
81 filenames = FilenamesFromGit(branch_name, extensions)
82 for filename in filenames:
  /external/chromium_org/tools/gyp/test/escaping/
gyptest-colon.py 8 Tests that filenames that contain colons are handled correctly.
16 # TODO: Make colons in filenames work with make, if required.
23 # Windows uses : as drive separator and doesn't allow it in regular filenames.
  /external/chromium_org/net/tools/flip_server/
spdy_util.h 12 // Flag indicating if we need to encode urls into filenames (legacy).
  /external/chromium_org/third_party/skia/tools/
svn.py 115 filenames = self._RunCommand([SVN, 'ls', url]).split('\n')
116 for filename in filenames:
154 def AddFiles(self, filenames):
157 @param filenames files to add to SVN control
159 self._RunCommand([SVN, 'add'] + filenames)
161 def SetProperty(self, filenames, property_name, property_value):
164 @param filenames files to set property on
168 if filenames:
170 [SVN, 'propset', property_name, property_value] + filenames)
  /external/chromium_org/tools/gyp/test/android/
gyptest-space-filenames.py 8 Verifies that action input/output filenames with spaces are rejected.
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 65 for (int i = 0; i < FileNames.Size(); i++)
66 if (name.CompareNoCase(FileNames[i]) == 0)
82 OpenCallbackImp->FileNames.Delete(index);
110 FileNames.Add(name);

Completed in 1471 milliseconds

1 2 3 4 5 6 7 8 91011>>