HomeSort by relevance Sort by last modified time
    Searched defs:atom (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug049.go 9 func atom(s string) { func
  /prebuilts/go/linux-x86/test/fixedbugs/
bug049.go 9 func atom(s string) { func
  /external/libxkbcommon/xkbcommon/test/
context.c 33 xkb_atom_t atom; local
41 atom = xkb_atom_intern(context, "HELLOjunkjunkjunk", 5);
42 assert(atom != XKB_ATOM_NONE);
43 assert(streq(xkb_atom_text(context, atom), "HELLO"));
45 atom = xkb_atom_intern_literal(context, "HELLOjunkjunkjunk");
46 assert(atom != XKB_ATOM_NONE);
47 assert(streq(xkb_atom_text(context, atom), "HELLOjunkjunkjunk"));
atom.c 27 #include "atom.h"
64 xkb_atom_t atom; member in struct:atom_string
72 xkb_atom_t atom; local
87 atom = atom_lookup(table, arr[i].string, arr[i].len);
88 if (atom != XKB_ATOM_NONE) {
89 string = atom_text(table, atom);
108 arr[i].atom = atom_intern(table, arr[i].string, arr[i].len, false);
109 if (arr[i].atom == XKB_ATOM_NONE) {
117 string = atom_text(table, arr[i].atom);
132 fprintf(stderr, "%u\t\t%lu\t\t%.*s\n", arr[i].atom,
    [all...]
  /external/clang/test/CXX/special/class.conv/class.conv.ctor/
p1.cpp 17 struct atom { }; struct in namespace:PR13003
19 void_type v1 = atom();
20 void_type2 v2 = atom();
  /external/mesa3d/src/gallium/drivers/r300/
r300_flush.c 40 struct r300_atom *atom; local
60 foreach_atom(r300, atom) {
61 if (atom->state || atom->allow_null_state) {
62 r300_mark_atom_dirty(r300, atom);
  /external/freetype/include/freetype/
ftbdf.h 66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be
122 const char* atom; member in union:BDF_PropertyRec_::__anon20666
  /frameworks/base/tools/stats_log_api_gen/
test_collation.cpp 58 /** Expects that the provided atom has no enum values for any field. */
59 #define EXPECT_NO_ENUM_FIELD(atom) \
61 for (vector<AtomField>::const_iterator field = atom->fields.begin(); \
62 field != atom->fields.end(); field++) { \
68 #define EXPECT_HAS_ENUM_FIELD(atom, field_name, values) \
70 for (vector<AtomField>::const_iterator field = atom->fields.begin(); \
71 field != atom->fields.end(); field++) { \
118 set<AtomDecl>::const_iterator atom = atoms.decls.begin(); local
119 EXPECT_EQ(1, atom->code);
120 EXPECT_EQ("int_atom", atom->name)
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftbdf.h 66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be
122 const char* atom; member in union:BDF_PropertyRec_::__anon190
  /external/libxkbcommon/xkbcommon/src/
atom.c 74 #include "atom.h"
78 xkb_atom_t atom; member in struct:atom_node
98 /* The original throw-away root is here, at the illegal atom 0. */
119 atom_text(struct atom_table *table, xkb_atom_t atom)
121 if (atom == XKB_ATOM_NONE || atom >= darray_size(table->table))
124 return darray_item(table->table, atom).string;
219 node.atom = darray_size(table->table);
221 *atomp = node.atom;
224 return node.atom;
    [all...]
  /external/mesa3d/src/compiler/glsl/
s_expression.cpp 67 return NULL; // no atom
75 // Check if the atom is a number.
102 s_expression *atom = read_atom(ctx, src, symbol_buffer); local
103 if (atom != NULL)
104 return atom;
  /external/skia/tools/
random_parse_path.cpp 32 static void add_white(SkRandom* rand, SkString* atom) {
34 atom->append(" ");
41 atom->append(&gWhiteSpace[index], 1);
46 static void add_comma(SkRandom* rand, SkString* atom) {
48 atom->append(",");
51 size_t count = atom->size();
52 add_white(rand, atom);
54 atom->append(",");
57 add_white(rand, atom);
58 } while (count == atom->size())
69 SkString atom; local
    [all...]
  /external/skqp/tools/
random_parse_path.cpp 32 static void add_white(SkRandom* rand, SkString* atom) {
34 atom->append(" ");
41 atom->append(&gWhiteSpace[index], 1);
46 static void add_comma(SkRandom* rand, SkString* atom) {
48 atom->append(",");
51 size_t count = atom->size();
52 add_white(rand, atom);
54 atom->append(",");
57 add_white(rand, atom);
58 } while (count == atom->size())
69 SkString atom; local
    [all...]
  /cts/hostsidetests/statsd/src/android/cts/statsd/atom/
HostAtomTests.java 16 package android.cts.statsd.atom;
37 import com.android.os.AtomsProto.Atom;
58 * Statsd atom tests that are done via adb (hostside).
82 final int atomTag = Atom.SCREEN_STATE_CHANGED_FIELD_NUMBER;
113 atom -> atom.getScreenStateChanged().getState().getNumber());
124 final int atomTag = Atom.CHARGING_STATE_CHANGED_FIELD_NUMBER;
165 atom -> atom.getChargingStateChanged().getState().getNumber());
176 final int atomTag = Atom.PLUGGED_STATE_CHANGED_FIELD_NUMBER
365 Atom atom = data.get(0); local
394 Atom atom = data.get(0); local
460 Atom atom = data.get(0); local
490 Atom atom = data.get(0); local
618 AppBreadcrumbReported atom = data.get(0).getAtom().getAppBreadcrumbReported(); local
    [all...]
BaseTestCase.java 17 package android.cts.statsd.atom;
  /external/skia/fuzz/
FuzzParsePath.cpp 37 static void add_white(Fuzz* fuzz, SkString* atom) {
39 atom->append(" ");
50 atom->append(&gWhiteSpace[index], 1);
55 static void add_some_white(Fuzz* fuzz, SkString* atom) {
57 add_white(fuzz, atom);
61 static void add_comma(Fuzz* fuzz, SkString* atom) {
63 atom->append(",");
66 add_white(fuzz, atom);
70 atom->append(",");
72 add_some_white(fuzz, atom);
76 SkString atom; local
    [all...]
  /external/skqp/fuzz/
FuzzParsePath.cpp 37 static void add_white(Fuzz* fuzz, SkString* atom) {
39 atom->append(" ");
50 atom->append(&gWhiteSpace[index], 1);
55 static void add_some_white(Fuzz* fuzz, SkString* atom) {
57 add_white(fuzz, atom);
61 static void add_comma(Fuzz* fuzz, SkString* atom) {
63 atom->append(",");
66 add_white(fuzz, atom);
70 atom->append(",");
72 add_some_white(fuzz, atom);
76 SkString atom; local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/lld/Core/
Atom.h 1 //===- Core/Atom.h - A node in linking graph --------------------*- C++ -*-===//
25 /// as a set of Atoms with References to other Atoms. Each Atom is a node
26 /// and each Reference is an edge. An Atom can be a DefinedAtom which has
30 class Atom {
34 /// Whether this atom is defined or a proxy for an undefined symbol
42 /// The scope in which this atom is acessible to other atoms.
52 /// file - returns the File that produced/owns this Atom
55 /// name - The name of the atom. For a function atom, it is the (mangled)
59 /// definition - Whether this atom is a definition or represents an undefine
126 T *atom = nullptr; member in class:lld::OwningAtomPtr
    [all...]

Completed in 973 milliseconds

1 2 3 4 5 6