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

1 2 3 4

  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_flush.c 39 struct r300_atom *atom; local
51 foreach_atom(r300, atom) {
52 if (atom->state || atom->allow_null_state) {
53 r300_mark_atom_dirty(r300, atom);
  /external/chromium_org/ui/gfx/x/
x11_atom_cache.cc 22 scoped_ptr<Atom[]> cached_atoms(new Atom[cache_count]);
35 Atom X11AtomCache::GetAtom(const char* name) const {
36 std::map<std::string, Atom>::const_iterator it = cached_atoms_.find(name);
39 Atom atom = XInternAtom(xdisplay_, name, false); local
40 cached_atoms_.insert(std::make_pair(name, atom));
41 return atom;
44 CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found";
  /external/mesa3d/src/gallium/drivers/r300/
r300_flush.c 39 struct r300_atom *atom; local
51 foreach_atom(r300, atom) {
52 if (atom->state || atom->allow_null_state) {
53 r300_mark_atom_dirty(r300, atom);
  /external/chromium_org/third_party/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.
121 const char* atom; member in union:BDF_PropertyRec_::__anon15533
  /external/chromium_org/third_party/re2/re2/testing/
search_test.cc 315 vector<string> atom, alpha, ops; local
316 atom.push_back(StringPiece(t.regexp).as_string());
318 ExhaustiveTest(1, 0, atom, ops, 1, alpha, "", "");
  /external/freetype/include/
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_::__anon25341
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftbdf.h 66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM.
121 const char* atom; member in union:BDF_PropertyRec_::__anon32262
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftbdf.h 66 * Property is a string atom.
108 * u.atom ::
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM.
121 const char* atom; member in union:BDF_PropertyRec_::__anon32501
  /external/regex-re2/re2/testing/
search_test.cc 315 vector<string> atom, alpha, ops; local
316 atom.push_back(StringPiece(t.regexp).as_string());
318 ExhaustiveTest(1, 0, atom, ops, 1, alpha, "", "");
  /external/chromium_org/third_party/mesa/src/src/glsl/
s_expression.cpp 66 return NULL; // no atom
74 // Check if the atom is a number.
101 s_expression *atom = read_atom(ctx, src, symbol_buffer); local
102 if (atom != NULL)
103 return atom;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom.c 191 const struct st_tracked_state *atom = atoms[i]; local
194 /*printf("atom %s %x/%x\n", atom->name, atom->dirty.mesa, atom->dirty.st);*/
196 if (!(atom->dirty.mesa || atom->dirty.st) ||
197 !atom->update) {
198 printf("malformed atom %s\n", atom->name)
    [all...]
  /external/chromium_org/third_party/re2/re2/
prefilter.h 26 ATOM, // The string atom() must match
35 const string& atom() const { return atom_; } function in class:re2::Prefilter
90 // If different prefilters have the same string atom, or if they are
91 // structurally the same (e.g., OR of same atom strings) they are
  /external/mesa3d/src/glsl/
s_expression.cpp 66 return NULL; // no atom
74 // Check if the atom is a number.
101 s_expression *atom = read_atom(ctx, src, symbol_buffer); local
102 if (atom != NULL)
103 return atom;
  /external/mesa3d/src/mesa/state_tracker/
st_atom.c 191 const struct st_tracked_state *atom = atoms[i]; local
194 /*printf("atom %s %x/%x\n", atom->name, atom->dirty.mesa, atom->dirty.st);*/
196 if (!(atom->dirty.mesa || atom->dirty.st) ||
197 !atom->update) {
198 printf("malformed atom %s\n", atom->name)
    [all...]
  /external/regex-re2/re2/
prefilter.h 26 ATOM, // The string atom() must match
35 const string& atom() const { return atom_; } function in class:re2::Prefilter
90 // If different prefilters have the same string atom, or if they are
91 // structurally the same (e.g., OR of same atom strings) they are
  /external/chromium_org/base/win/
message_window.cc 24 ATOM atom() { return atom_; } function in class:base::win::MessageWindow::WindowClass
28 ATOM atom_;
108 window_ = CreateWindow(MAKEINTATOM(window_class.atom()), window_name, 0, 0, 0,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LL1DFA.java 142 int atom = edgeSet.getSingleElement(); local
143 if ( atom != Label.INVALID ) {
144 e = new Label(atom);
LL1Analyzer.java 224 int atom = transition0.label.getAtom(); local
225 return new LookaheadSet(atom);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_upload.c 40 * list directly except for a single atom, brw_constant_buffer, which
477 const struct brw_tracked_state *atom = brw->atoms[i]; local
480 if (check_state(state, &atom->dirty)) {
481 atom->emit(brw);
484 accumulate_state(&examined, &atom->dirty);
497 const struct brw_tracked_state *atom = brw->atoms[i]; local
499 if (check_state(state, &atom->dirty)) {
500 atom->emit(brw);
  /external/elfutils/0.153/libdw/
dwarf_getlocation.c 93 uint8_t atom; member in struct:loclist
188 result->atom = DW_OP_plus_uconst;
235 assert ((*llbuf)[*listlen - 1].atom == DW_OP_stack_value);
261 switch ((newloc->atom = *data++))
449 newloc->atom = DW_OP_stack_value;
484 result[0].atom = DW_OP_call_frame_cfa;
494 result[n].atom = loclist->atom;
499 if (result[n].atom == DW_OP_implicit_value)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_upload.c 40 * list directly except for a single atom, brw_constant_buffer, which
477 const struct brw_tracked_state *atom = brw->atoms[i]; local
480 if (check_state(state, &atom->dirty)) {
481 atom->emit(brw);
484 accumulate_state(&examined, &atom->dirty);
497 const struct brw_tracked_state *atom = brw->atoms[i]; local
499 if (check_state(state, &atom->dirty)) {
500 atom->emit(brw);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common_context.c 202 struct radeon_state_atom *atom; local
204 foreach(atom, &radeon->hw.atomlist) {
205 FREE(atom->cmd);
206 if (atom->lastcmd)
207 FREE(atom->lastcmd);
247 /* free atom list */
  /external/chromium_org/ui/gfx/win/
window_impl.cc 53 // Returns the atom identifying the class matching |class_info|,
55 ATOM RetrieveClassAtom(const ClassInfo& class_info);
60 RegisteredClass(const ClassInfo& info, ATOM atom);
65 // The atom identifying the window class.
66 ATOM atom; member in struct:gfx::ClassRegistrar::RegisteredClass
91 ATOM ClassRegistrar::RetrieveClassAtom(const ClassInfo& class_info) {
96 return i->atom;
117 ATOM atom = RegisterClassEx(&window_class) local
177 ATOM atom = GetWindowClassAtom(); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.c 202 struct radeon_state_atom *atom; local
204 foreach(atom, &radeon->hw.atomlist) {
205 FREE(atom->cmd);
206 if (atom->lastcmd)
207 FREE(atom->lastcmd);
247 /* free atom list */

Completed in 526 milliseconds

1 2 3 4