HomeSort by relevance Sort by last modified time
    Searched refs:opt_end (Results 1 - 13 of 13) sorted by null

  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 39 bool opt_end; /* at end of options (passed a "--") */ member in struct:miniopt
  /external/fio/lib/
getopt_long.c 76 const char *opt_end = NULL; local
87 if ((opt_end = option_matches(carg+2, lo->name)))
90 if (!opt_end)
96 if (*opt_end == '=') {
98 optarg = (char *)opt_end+1;
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
byte_reader.js 82 * @param {number=} opt_end Maximum position to read from.
85 ByteReader.readString = function(dataView, pos, size, opt_end) {
86 ByteReader.validateRead(pos, size, opt_end || dataView.byteLength);
105 * @param {number=} opt_end Maximum position to read from.
108 ByteReader.readNullTerminatedString = function(dataView, pos, size, opt_end) {
109 ByteReader.validateRead(pos, size, opt_end || dataView.byteLength);
132 * @param {number=} opt_end Maximum position to read from.
136 dataView, pos, bom, size, opt_end) {
137 ByteReader.validateRead(pos, size, opt_end || dataView.byteLength);
177 * @param {number=} opt_end Maximum position to read from
    [all...]
mpeg_parser.js 25 * @param {number=} opt_end End of atom position.
28 MpegParser.readAtomSize = function(br, opt_end) {
31 if (opt_end) {
32 // Assert that opt_end <= buffer end.
33 // When supplied, opt_end is the end of the enclosing atom and is used to
35 br.validateRead(opt_end - pos);
38 var size = br.readScalar(4, false, opt_end);
43 if (opt_end && pos + size > opt_end)
44 throw 'atom too long (' + size + '>' + (opt_end - pos) + ') @' + pos
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
miniopt.c 79 if (!t->opt_end && !strcmp(p, "--")) {
80 t->opt_end = TRUE;
89 if (t->opt_end) {
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 151 * from nonopt_end to opt_end (keeping the same order of arguments
155 permute_args(int panonopt_start, int panonopt_end, int opt_end,
165 nopts = opt_end - panonopt_end;
167 cyclelen = (opt_end - panonopt_start) / ncycle;
  /external/chromium_org/third_party/mesa/src/src/getopt/
getopt_long.c 118 * from nonopt_end to opt_end (keeping the same order of arguments
122 permute_args(int panonopt_start, int panonopt_end, int opt_end,
132 nopts = opt_end - panonopt_end;
134 cyclelen = (opt_end - panonopt_start) / ncycle;
  /external/mesa3d/src/getopt/
getopt_long.c 118 * from nonopt_end to opt_end (keeping the same order of arguments
122 permute_args(int panonopt_start, int panonopt_end, int opt_end,
132 nopts = opt_end - panonopt_end;
134 cyclelen = (opt_end - panonopt_start) / ncycle;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
spannable.js 195 * @param {number=} opt_end End index, exclusive.
199 cvox.Spannable.prototype.substring = function(start, opt_end) {
200 var end = goog.isDef(opt_end) ? opt_end : this.string_.length;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 121 * @param {number} opt_end The end of the slice (optional).
124 function arraySlice(array, start, opt_end) {
128 // return Array.prototype.slice.call(array, start, opt_end);
131 // if opt_end is not provided.
  /external/chromium_org/third_party/jstemplate/
util.js 119 * @param {number=} opt_end The end of the slice (optional).
122 function arraySlice(array, start, opt_end) {
126 // return Array.prototype.slice.call(array, start, opt_end);
129 // if opt_end is not provided.
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
folder_shortcuts_data_model.js 226 * @param {number=} opt_end Where to end the selection.
229 slice: function(begin, opt_end) {
230 return this.array_.slice(begin, opt_end);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
jstemplate_compiled.js 585 * @param {Number} opt_end End (exclusive) of slice of second array (optional).
587 function arrayAppend(a1, a2, opt_begin, opt_end) {
589 var i1 = opt_end || jsLength(a2);

Completed in 1238 milliseconds