Home
last modified time | relevance | path

Searched refs:atom (Results 1 – 25 of 230) sorted by relevance

12345678910

/third_party/ffmpeg/tests/ref/fate/
Dmovenc1 write_data len 36, time nopts, type header atom ftyp
2 write_data len 2389, time nopts, type header atom -
3 write_data len 788, time 1000000, type sync atom moof
4 write_data len 110, time nopts, type trailer atom -
6 write_data len 36, time nopts, type header atom ftyp
7 write_data len 2721, time nopts, type header atom -
8 write_data len 908, time 966667, type sync atom moof
9 write_data len 110, time nopts, type trailer atom -
11 write_data len 36, time nopts, type header atom ftyp
12 write_data len 2629, time nopts, type header atom -
[all …]
/third_party/flutter/skia/tools/
Drandom_parse_path.cpp32 static void add_white(SkRandom* rand, SkString* atom) { in add_white() argument
34 atom->append(" "); in add_white()
41 atom->append(&gWhiteSpace[index], 1); in add_white()
46 static void add_comma(SkRandom* rand, SkString* atom) { in add_comma() argument
48 atom->append(","); in add_comma()
51 size_t count = atom->size(); in add_comma()
52 add_white(rand, atom); in add_comma()
54 atom->append(","); in add_comma()
57 add_white(rand, atom); in add_comma()
58 } while (count == atom->size()); in add_comma()
[all …]
/third_party/skia/tools/
Drandom_parse_path.cpp32 static void add_white(SkRandom* rand, SkString* atom) { in add_white() argument
34 atom->append(" "); in add_white()
41 atom->append(&gWhiteSpace[index], 1); in add_white()
46 static void add_comma(SkRandom* rand, SkString* atom) { in add_comma() argument
48 atom->append(","); in add_comma()
51 size_t count = atom->size(); in add_comma()
52 add_white(rand, atom); in add_comma()
54 atom->append(","); in add_comma()
57 add_white(rand, atom); in add_comma()
58 } while (count == atom->size()); in add_comma()
[all …]
/third_party/flutter/skia/fuzz/
DFuzzParsePath.cpp38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument
40 atom->append(" "); in add_white()
51 atom->append(&gWhiteSpace[index], 1); in add_white()
56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument
58 add_white(fuzz, atom); in add_some_white()
62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument
64 atom->append(","); in add_comma()
67 add_white(fuzz, atom); in add_comma()
71 atom->append(","); in add_comma()
73 add_some_white(fuzz, atom); in add_comma()
[all …]
/third_party/skia/fuzz/
DFuzzParsePath.cpp38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument
40 atom->append(" "); in add_white()
51 atom->append(&gWhiteSpace[index], 1); in add_white()
56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument
58 add_white(fuzz, atom); in add_some_white()
62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument
64 atom->append(","); in add_comma()
67 add_white(fuzz, atom); in add_comma()
71 atom->append(","); in add_comma()
73 add_some_white(fuzz, atom); in add_comma()
[all …]
/third_party/ffmpeg/tools/
Dqt-faststart.c125 typedef int (*parse_atoms_callback_t)(void *context, atom_t *atom);
135 atom_t atom; in parse_atoms() local
139 atom.size = BE_32(pos); in parse_atoms()
140 atom.type = BE_32(pos + 4); in parse_atoms()
142 atom.header_size = ATOM_PREAMBLE_SIZE; in parse_atoms()
144 switch (atom.size) { in parse_atoms()
151 atom.size = BE_64(pos); in parse_atoms()
153 atom.header_size = ATOM_PREAMBLE_SIZE + 8; in parse_atoms()
157 atom.size = ATOM_PREAMBLE_SIZE + end - pos; in parse_atoms()
161 if (atom.size < atom.header_size) { in parse_atoms()
[all …]
/third_party/libxml2/
Dxmlregexp.c221 xmlRegAtomPtr atom; member
259 xmlRegAtomPtr atom; member
366 static void xmlRegFreeAtom(xmlRegAtomPtr atom);
368 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
609 if ((trans->to == -1) || (trans->atom == NULL)) in xmlRegEpxFromParse()
611 atomno = stringRemap[trans->atom->no]; in xmlRegEpxFromParse()
612 if ((trans->atom->data != NULL) && (transdata == NULL)) { in xmlRegEpxFromParse()
632 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse()
648 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse()
654 trans->atom->data; in xmlRegEpxFromParse()
[all …]
/third_party/gettext/gnulib-local/lib/libxml/
Dxmlregexp.c244 xmlRegAtomPtr atom; member
282 xmlRegAtomPtr atom; member
387 static void xmlRegFreeAtom(xmlRegAtomPtr atom);
389 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
603 if ((trans->to == -1) || (trans->atom == NULL)) in xmlRegEpxFromParse()
605 atomno = stringRemap[trans->atom->no]; in xmlRegEpxFromParse()
606 if ((trans->atom->data != NULL) && (transdata == NULL)) { in xmlRegEpxFromParse()
629 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse()
645 i, j, trans->atom->no, trans->to, atomno, targetno); in xmlRegEpxFromParse()
651 trans->atom->data; in xmlRegEpxFromParse()
[all …]
/third_party/ffmpeg/libavformat/
Dr3d.c41 static int read_atom(AVFormatContext *s, Atom *atom) in read_atom() argument
43 atom->offset = avio_tell(s->pb); in read_atom()
44 atom->size = avio_rb32(s->pb); in read_atom()
45 if (atom->size < 8) in read_atom()
47 atom->tag = avio_rl32(s->pb); in read_atom()
49 atom->size, (char*)&atom->tag, atom->offset); in read_atom()
50 return atom->size; in read_atom()
113 static int r3d_read_rdvo(AVFormatContext *s, Atom *atom) in r3d_read_rdvo() argument
119 r3d->video_offsets_count = (atom->size - 8) / 4; in r3d_read_rdvo()
161 Atom atom; in r3d_read_header() local
[all …]
Dmov.c74 int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
77 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
302 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) in mov_read_udta_string() argument
314 switch (atom.type) { in mov_read_udta_string()
338 return mov_metadata_hmmt(c, pb, atom.size); in mov_read_udta_string()
342 return mov_metadata_loci(c, pb, atom.size); in mov_read_udta_string()
406 if (c->itunes_metadata && atom.size > 8) { in mov_read_udta_string()
409 if (tag == MKTAG('d','a','t','a') && data_size <= atom.size) { in mov_read_udta_string()
413 atom.size -= 16; in mov_read_udta_string()
415 if (atom.type == MKTAG('c', 'o', 'v', 'r')) { in mov_read_udta_string()
[all …]
/third_party/weston/xwayland/
Dwindow-manager.c272 get_atom_name(xcb_connection_t *c, xcb_atom_t atom) in get_atom_name() argument
279 if (atom == XCB_ATOM_NONE) in get_atom_name()
282 cookie = xcb_get_atom_name (c, atom); in get_atom_name()
290 snprintf(buffer, sizeof buffer, "(atom %u)", atom); in get_atom_name()
442 if (reply->type == wm->atom.incr) { in dump_property()
445 } else if (reply->type == wm->atom.utf8_string || in dump_property()
446 reply->type == wm->atom.string) { in dump_property()
510 xcb_atom_t atom; in weston_wm_window_read_properties() member
517 { wm->atom.wm_protocols, TYPE_WM_PROTOCOLS, NULL }, in weston_wm_window_read_properties()
518 { wm->atom.wm_normal_hints, TYPE_WM_NORMAL_HINTS, NULL }, in weston_wm_window_read_properties()
[all …]
Ddnd.c70 client_message.type = wm->atom.xdnd_status; in data_source_accept()
77 client_message.data.data32[4] = wm->atom.xdnd_action_copy; in data_source_accept()
96 wm->atom.xdnd_selection, in data_source_send()
97 wm->atom.utf8_string, in data_source_send()
98 wm->atom.wl_selection, in data_source_send()
142 wm->atom.xdnd_type_list, in handle_enter()
160 if (types[i] == wm->atom.utf8_string || in handle_enter()
161 types[i] == wm->atom.text_plain_utf8 || in handle_enter()
162 types[i] == wm->atom.text_plain) { in handle_enter()
192 if (xfixes_selection_notify->selection != wm->atom.xdnd_selection) in weston_wm_handle_dnd_event()
[all …]
Dselection.c83 wm->atom.wl_selection); in writable_callback()
120 wm->atom.wl_selection, in weston_wm_get_incr_chunk()
131 dump_property(fp, wm, wm->atom.wl_selection, reply); in weston_wm_get_incr_chunk()
170 wm->atom.clipboard, in data_source_send()
171 wm->atom.utf8_string, in data_source_send()
172 wm->atom.wl_selection, in data_source_send()
205 wm->atom.wl_selection, in weston_wm_get_selection_targets()
216 dump_property(fp, wm, wm->atom.wl_selection, reply); in weston_wm_get_selection_targets()
242 if (value[i] == wm->atom.utf8_string) { in weston_wm_get_selection_targets()
268 wm->atom.wl_selection, in weston_wm_get_selection_data()
[all …]
/third_party/python/Tools/peg_generator/pegen/
Dmetagrammar.gram91 | '&' ~ atom {PositiveLookahead(atom)}
92 | '!' ~ atom {NegativeLookahead(atom)}
97 | atom '?' {Opt(atom)}
98 | atom '*' {Repeat0(atom)}
99 | atom '+' {Repeat1(atom)}
100 | sep=atom '.' node=atom '+' {Gather(sep, node)}
101 | atom {atom}
103 atom[Plain]:
Dgrammar_parser.py446 (atom := self.atom())
448 return PositiveLookahead ( atom )
457 (atom := self.atom())
459 return NegativeLookahead ( atom )
490 (atom := self.atom())
494 return Opt ( atom )
499 (atom := self.atom())
503 return Repeat0 ( atom )
508 (atom := self.atom())
512 return Repeat1 ( atom )
[all …]
/third_party/weston/tests/
Dxwayland-test.c66 Atom atom, type_atom, actual_type; in TEST() local
76 atom = XInternAtom(display, "WL_SURFACE_ID", True); in TEST()
77 assert(atom != None); in TEST()
79 atom = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", True); in TEST()
80 assert(atom != None); in TEST()
85 status = XGetWindowProperty(display, root, atom, 0L, ~0L, in TEST()
91 atom = XInternAtom(display, "_NET_WM_NAME", True); in TEST()
92 assert(atom != None); in TEST()
94 assert(atom != None); in TEST()
95 status = XGetWindowProperty(display, *support, atom, 0L, BUFSIZ, in TEST()
/third_party/pcre2/pcre2/testdata/
Dtestinput920 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
21 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
34 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
35 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
48 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
49 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
61 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
62 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
71 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
72 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
[all …]
Dtestoutput928 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
29 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
42 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
43 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
56 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
57 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
69 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
70 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
79 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
80 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
[all …]
Dtestinput1117 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
18 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
31 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
32 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
45 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
46 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
58 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
59 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
68 [^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]+ # some number of atom characters...
69 …\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
[all …]
/third_party/skia/third_party/externals/freetype/src/bdf/
Dbdfdrivr.c227 prop->value.atom && in bdf_interpret_style()
228 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' || in bdf_interpret_style()
229 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) ) in bdf_interpret_style()
232 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ) in bdf_interpret_style()
239 prop->value.atom && in bdf_interpret_style()
240 ( *(prop->value.atom) == 'B' || *(prop->value.atom) == 'b' ) ) in bdf_interpret_style()
248 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style()
249 !( *(prop->value.atom) == 'N' || *(prop->value.atom) == 'n' ) ) in bdf_interpret_style()
250 strings[3] = (const char *)(prop->value.atom); in bdf_interpret_style()
254 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style()
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/bdf/
Dbdfdrivr.c227 prop->value.atom && in bdf_interpret_style()
228 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' || in bdf_interpret_style()
229 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) ) in bdf_interpret_style()
232 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ) in bdf_interpret_style()
239 prop->value.atom && in bdf_interpret_style()
240 ( *(prop->value.atom) == 'B' || *(prop->value.atom) == 'b' ) ) in bdf_interpret_style()
248 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style()
249 !( *(prop->value.atom) == 'N' || *(prop->value.atom) == 'n' ) ) in bdf_interpret_style()
250 strings[3] = (const char *)(prop->value.atom); in bdf_interpret_style()
254 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style()
[all …]
/third_party/freetype/src/bdf/
Dbdfdrivr.c227 prop->value.atom && in bdf_interpret_style()
228 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' || in bdf_interpret_style()
229 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) ) in bdf_interpret_style()
232 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ) in bdf_interpret_style()
239 prop->value.atom && in bdf_interpret_style()
240 ( *(prop->value.atom) == 'B' || *(prop->value.atom) == 'b' ) ) in bdf_interpret_style()
248 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style()
249 !( *(prop->value.atom) == 'N' || *(prop->value.atom) == 'n' ) ) in bdf_interpret_style()
250 strings[3] = (const char *)(prop->value.atom); in bdf_interpret_style()
254 prop->value.atom && *(prop->value.atom) && in bdf_interpret_style()
[all …]
/third_party/libxkbcommon/src/
Dkeymap.c287 xkb_atom_t atom; in xkb_keymap_mod_get_index() local
289 atom = xkb_atom_lookup(keymap->ctx, name); in xkb_keymap_mod_get_index()
290 if (atom == XKB_ATOM_NONE) in xkb_keymap_mod_get_index()
293 return XkbModNameToIndex(&keymap->mods, atom, MOD_BOTH); in xkb_keymap_mod_get_index()
323 xkb_atom_t atom = xkb_atom_lookup(keymap->ctx, name); in xkb_keymap_layout_get_index() local
326 if (atom == XKB_ATOM_NONE) in xkb_keymap_layout_get_index()
330 if (keymap->group_names[i] == atom) in xkb_keymap_layout_get_index()
398 xkb_atom_t atom = xkb_atom_lookup(keymap->ctx, name); in xkb_keymap_led_get_index() local
402 if (atom == XKB_ATOM_NONE) in xkb_keymap_led_get_index()
406 if (led->name == atom) in xkb_keymap_led_get_index()
[all …]
Datom.c148 atom_text(struct atom_table *table, xkb_atom_t atom) in atom_text() argument
150 assert(atom < darray_size(table->table)); in atom_text()
151 return darray_item(table->table, atom).string; in atom_text()
192 xkb_atom_t atom = darray_size(table->table); in atom_intern() local
194 *atomp = atom; in atom_intern()
196 return atom; in atom_intern()
/third_party/libxkbcommon/test/
Datom.c66 xkb_atom_t atom; in test_random_strings() member
74 xkb_atom_t atom; in test_random_strings() local
90 atom = atom_intern(table, arr[i].string, arr[i].len, false); in test_random_strings()
91 if (atom != XKB_ATOM_NONE) { in test_random_strings()
92 string = atom_text(table, atom); in test_random_strings()
112 arr[i].atom = atom_intern(table, arr[i].string, arr[i].len, true); in test_random_strings()
113 if (arr[i].atom == XKB_ATOM_NONE) { in test_random_strings()
122 string = atom_text(table, arr[i].atom); in test_random_strings()
137 fprintf(stderr, "%u\t\t%zu\t\t%.*s\n", arr[i].atom, in test_random_strings()

12345678910