Searched refs:fn (Results 1 - 25 of 687) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRFileStream.m86 NSString *fn = [aFileName stringByStandardizingPath];
87 NSURL *f = [NSURL fileURLWithPath:fn];
/external/bison/build-aux/
H A Dtexinfo.tex1066 \newcodeindex{fn}%
3575 \def\itemindex ##1{\doind {fn}{\code{##1}}}%
6919 % Remember that \dosubind{fn}{foo}{} is equivalent to \doind{fn}{foo}.
6920 \dosubind{fn}{\code{#3}}{#1}%
6938 \dosubind{fn}{\code{#4}}{#1}%
7115 % if the fn name has parens in it, \boldbrax will not be in effect yet,
/external/bison/data/
H A Dlocation.cc54 void initialize (]b4_percent_define_get([[filename_type]])[* fn = YY_NULL,
58 filename = fn;
/external/bison/examples/calc++/
H A Dposition.hh74 void initialize (std::string* fn = YY_NULL,
78 filename = fn;
/external/blktrace/
H A Dblkiomon.c68 char *fn; member in struct:output
110 if (!debug.fn)
134 if (!debug.fn)
239 if (!binary.fn)
249 fprintf(stderr, "blkiomon: could not write to %s\n", binary.fn);
251 binary.fn = NULL;
433 if (!drvdata.fn)
445 fprintf(stderr, "blkiomon: could not write to %s\n", drvdata.fn);
447 drvdata.fn = NULL;
530 if (!out->fn)
[all...]
H A Dblktrace.c1081 char fn[MAXPATHLEN + 64], tmp[256]; local
1083 snprintf(fn, sizeof(fn), "%s/block/%s/dropped", debugfs_path,
1086 fd = my_open(fn, O_RDONLY);
1094 fn, errno, strerror(errno));
1098 fn, errno, strerror(errno));
/external/blktrace/btreplay/
H A Dbtreplay.c787 char fn[MAXPATHLEN]; local
789 sprintf(fn, "%s/%s.%s.%d.rep", idir, tip->devnm, ibase,
791 tip->vfp = fopen(fn, "w");
793 fatal(fn, ERR_SYSCALL, "Failed to open report\n");
/external/blktrace/btt/
H A Dbtt_plot.py361 for fn in glob.glob('*c.dat'):
363 if fn.find(t) >= 0:
366 files.append(fn)
/external/chromium-libpac/test/js-unittest/
H A Dbindings.js29 expectEquals(null, dnsResolve(fn));
61 function fn() {} function
/external/chromium-trace/trace-viewer/
H A DPRESUBMIT.py64 def RunWithPrependedPath(prepended_path, fn, *args):
70 return fn(*args)
/external/chromium-trace/trace-viewer/src/base/
H A Diteration_helpers.js69 function iterItems(dict, fn, opt_this) {
72 fn.call(opt_this, key, dict[key]);
H A Dunittest.js169 global.setup = function(fn) { this.setupFn_ = fn; }.bind(this);
170 global.teardown = function(fn) { this.teardownFn_ = fn; }.bind(this);
H A Dutils.js26 function tracedFunction(fn, name, opt_this) {
30 fn.apply(opt_this, arguments);
/external/chromium-trace/trace-viewer/src/base/unittest/
H A Dassertions.js9 function forAllAssertMethodsIn_(prototype, fn) {
16 fn(fieldName, fieldValue);
167 assertThrows: function(fn, opt_message) {
169 fn();
173 var message = opt_message || 'Expected throw from ' + fn;
177 assertDoesNotThrow: function(fn, opt_message) {
179 fn();
181 var message = opt_message || 'Expected to not throw from ' + fn +
H A Dassertions_test.js11 global.rawAssertThrows = function(fn) {
13 fn();
17 throw new Error('Expected <' + fn + '> to throw');
20 global.rawAssertNotThrows = function(fn) {
22 fn();
24 throw new Error('Expected <' + fn + '> to not throw');
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_view_test.js21 typeConstructor, opt_options, fn) {
24 fn();
/external/chromium-trace/trace-viewer/src/tracing/
H A Dselection.js297 map: function(fn) {
299 fn(this[i]);
H A Dtimeline_viewport.js57 * @param {Function} fn Function to call when the viewport can be safely
60 setWhenPossible: function(fn) {
61 this.pendingSetFunction_ = fn;
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js538 * @param {Function} fn Function to call for each vector in the array
539 * @param {Object} [arg] additional argument to pass to fn
546 return function(a, stride, offset, count, fn, arg) {
564 fn(vec, vec, arg);
1022 * @param {Function} fn Function to call for each vector in the array
1023 * @param {Object} [arg] additional argument to pass to fn
1030 return function(a, stride, offset, count, fn, arg) {
1048 fn(vec, vec, arg);
1510 * @param {Function} fn Function to call for each vector in the array
1511 * @param {Object} [arg] additional argument to pass to fn
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dvec2.js436 * @param {Function} fn Function to call for each vector in the array
437 * @param {Object} [arg] additional argument to pass to fn
444 return function(a, stride, offset, count, fn, arg) {
462 fn(vec, vec, arg);
H A Dvec3.js436 * @param {Function} fn Function to call for each vector in the array
437 * @param {Object} [arg] additional argument to pass to fn
444 return function(a, stride, offset, count, fn, arg) {
462 fn(vec, vec, arg);
H A Dvec4.js440 * @param {Function} fn Function to call for each vector in the array
441 * @param {Object} [arg] additional argument to pass to fn
448 return function(a, stride, offset, count, fn, arg) {
466 fn(vec, vec, arg);
/external/chromium_org/base/task/
H A Dcancelable_task_tracker_unittest.cc361 // Runs |fn| with |task_tracker|, expecting it to crash in debug mode.
364 const Callback<void(CancelableTaskTracker*)>& fn) {
368 EXPECT_DEATH_IF_SUPPORTED(fn.Run(task_tracker), "");
362 MaybeRunDeadlyTaskTrackerMemberFunction( CancelableTaskTracker* task_tracker, const Callback<void(CancelableTaskTracker*)>& fn) argument
/external/chromium_org/base/third_party/symbolize/
H A Dsymbolize.cc132 // Re-runs fn until it doesn't cause EINTR.
133 #define NO_INTR(fn) do {} while ((fn) < 0 && errno == EINTR)
/external/chromium_org/chrome/browser/extensions/api/sessions/
H A Dsessions_apitest.cc99 scoped_refptr<T> fn(new T());
100 fn->set_extension(extension_.get());
101 fn->set_has_callback(has_callback);
102 return fn;

Completed in 563 milliseconds

1234567891011>>