Searched refs:atom (Results 1 - 25 of 122) sorted by relevance

12345

/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkAtom.c7 * doesn't have to provide permanent storage for atom names,
23 * The following are a list of the predefined atom strings.
66 * Given a string, produce the equivalent X atom. This
75 * A new entry may be added to the local atom cache.
82 Tk_Window tkwin; /* Window token; map name to atom
84 CONST char *name; /* Name to turn into atom. */
98 Atom atom;
100 atom = XInternAtom(dispPtr->display, name, False);
101 Tcl_SetHashValue(hPtr, atom);
102 hPtr2 = Tcl_CreateHashEntry(&dispPtr->atomTable, (char *) atom,
97 Atom atom; local
195 Atom atom; local
[all...]
H A DtkUndo.c134 TkUndoAtom * atom;
136 atom = (TkUndoAtom *) ckalloc(sizeof(TkUndoAtom));
137 atom->type = TK_UNDO_ACTION;
139 atom->apply = Tcl_NewStringObj(Tcl_DStringValue(actionScript),Tcl_DStringLength(actionScript));
140 Tcl_IncrRefCount(atom->apply);
142 atom->revert = Tcl_NewStringObj(Tcl_DStringValue(revertScript),Tcl_DStringLength(revertScript));
143 Tcl_IncrRefCount(atom->revert);
145 TkUndoPushStack(&(stack->undoStack), atom);
129 TkUndoAtom * atom; local
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkAtom.c7 * for atom names, for example).
21 * The following are a list of the predefined atom strings. They should match
64 * Given a string, produce the equivalent X atom. This function is
73 * A new entry may be added to the local atom cache.
80 Tk_Window tkwin, /* Window token; map name to atom for this
82 CONST char *name) /* Name to turn into atom. */
96 Atom atom;
98 atom = XInternAtom(dispPtr->display, name, False);
99 Tcl_SetHashValue(hPtr, atom);
100 hPtr2 = Tcl_CreateHashEntry(&dispPtr->atomTable, (char*) atom,
95 Atom atom; local
127 Tk_GetAtomName( Tk_Window tkwin, Atom atom) argument
188 Atom atom; local
[all...]
H A DtkUndo.c189 TkUndoAtom *atom;
191 atom = (TkUndoAtom *) ckalloc(sizeof(TkUndoAtom));
192 atom->type = TK_UNDO_ACTION;
193 atom->apply = apply;
194 atom->revert = revert;
196 TkUndoPushStack(&stack->undoStack, atom);
207 * stack with TkUndoPushAction. This sub-atom, if evaluated, will take
212 * If 'subAtomList' is non-NULL, the newly created sub-atom is added onto
242 TkUndoSubAtom *atom;
248 atom
184 TkUndoAtom *atom; local
236 TkUndoSubAtom *atom; local
298 TkUndoSubAtom *atom; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DDefWndProcWindowClass.cpp48 static ATOM atom = registerClass(); local
/macosx-10.9.5/JavaScriptCore-7537.78.1/yarr/
H A DYarrInterpreter.h93 } atom; member in union:JSC::Yarr::ByteTerm::__anon2809
127 atom.patternCharacter = ch;
128 atom.quantityType = quantityType;
129 atom.quantityCount = quantityCount.unsafeGet();
150 atom.casedCharacter.lo = lo;
151 atom.casedCharacter.hi = hi;
152 atom.quantityType = quantityType;
153 atom.quantityCount = quantityCount.unsafeGet();
162 atom.characterClass = characterClass;
163 atom
[all...]
H A DYarrInterpreter.cpp128 unsigned firstSubpatternId = term.atom.subpatternId;
129 unsigned numNestedSubpatterns = term.atom.parenthesesDisjunction->m_numSubpatterns;
152 return reinterpret_cast<DisjunctionContext*>(&(subpatternBackup[term.atom.parenthesesDisjunction->m_numSubpatterns << 1]));
161 size_t size = sizeof(ParenthesesDisjunctionContext) - sizeof(unsigned) + (term.atom.parenthesesDisjunction->m_numSubpatterns << 1) * sizeof(unsigned) + sizeof(DisjunctionContext) - sizeof(uintptr_t) + disjunction->m_frameSize * sizeof(uintptr_t);
396 switch (term.atom.quantityType) {
409 if ((backTrack->matchAmount < term.atom.quantityCount) && input.checkInput(1)) {
411 if (checkCharacter(term.atom.patternCharacter, term.inputPosition + 1))
425 switch (term.atom.quantityType) {
438 if ((backTrack->matchAmount < term.atom.quantityCount) && input.checkInput(1)) {
440 if (checkCasedCharacter(term.atom
[all...]
/macosx-10.9.5/libxml2-26/libxml2/
H A Dxmlregexp.c215 xmlRegAtomPtr atom; member in struct:_xmlRegTrans
253 xmlRegAtomPtr atom; member in struct:_xmlAutomata
358 static void xmlRegFreeAtom(xmlRegAtomPtr atom);
360 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
471 * 3/ build a table state x atom for the transitions
574 if ((trans->to == -1) || (trans->atom == NULL))
576 atomno = stringRemap[trans->atom->no];
577 if ((trans->atom->data != NULL) && (transdata == NULL)) {
590 * if the same atom can generate transitions to 2 different
599 printf("Indet: state %d trans %d, atom
810 xmlRegFreeAtom(xmlRegAtomPtr atom) argument
839 xmlRegCopyAtom(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom) argument
1086 xmlRegPrintAtom(FILE *output, xmlRegAtomPtr atom) argument
1217 xmlRegAtomAddRange(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom, int neg, xmlRegAtomType type, int start, int end, xmlChar *blockName) argument
1288 xmlRegAtomPush(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom) argument
1348 xmlRegStateAddTrans(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, xmlRegAtomPtr atom, xmlRegStatePtr target, int counter, int count) argument
1544 xmlFAGenerateTransitions(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr from, xmlRegStatePtr to, xmlRegAtomPtr atom) argument
2583 xmlFARecurseDeterminism(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, int to, xmlRegAtomPtr atom) argument
2960 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) argument
3215 xmlRegAtomPtr atom; local
3774 xmlRegAtomPtr atom; local
4259 xmlRegAtomPtr atom; local
5702 xmlRegAtomPtr atom; local
5742 xmlRegAtomPtr atom; local
5802 xmlRegAtomPtr atom; local
5870 xmlRegAtomPtr atom; local
5956 xmlRegAtomPtr atom; local
6025 xmlRegAtomPtr atom; local
6104 xmlRegAtomPtr atom; local
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dxmlregexp.c212 xmlRegAtomPtr atom; member in struct:_xmlRegTrans
249 xmlRegAtomPtr atom; member in struct:_xmlAutomata
354 static void xmlRegFreeAtom(xmlRegAtomPtr atom);
356 static int xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint);
467 * 3/ build a table state x atom for the transitions
570 if ((trans->to == -1) || (trans->atom == NULL))
572 atomno = stringRemap[trans->atom->no];
573 if ((trans->atom->data != NULL) && (transdata == NULL)) {
586 * if the same atom can generate transitions to 2 different
595 printf("Indet: state %d trans %d, atom
806 xmlRegFreeAtom(xmlRegAtomPtr atom) argument
835 xmlRegCopyAtom(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom) argument
1082 xmlRegPrintAtom(FILE *output, xmlRegAtomPtr atom) argument
1213 xmlRegAtomAddRange(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom, int neg, xmlRegAtomType type, int start, int end, xmlChar *blockName) argument
1284 xmlRegAtomPush(xmlRegParserCtxtPtr ctxt, xmlRegAtomPtr atom) argument
1344 xmlRegStateAddTrans(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, xmlRegAtomPtr atom, xmlRegStatePtr target, int counter, int count) argument
1540 xmlFAGenerateTransitions(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr from, xmlRegStatePtr to, xmlRegAtomPtr atom) argument
2579 xmlFARecurseDeterminism(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state, int to, xmlRegAtomPtr atom) argument
2952 xmlRegCheckCharacter(xmlRegAtomPtr atom, int codepoint) argument
3207 xmlRegAtomPtr atom; local
3764 xmlRegAtomPtr atom; local
4249 xmlRegAtomPtr atom; local
5688 xmlRegAtomPtr atom; local
5728 xmlRegAtomPtr atom; local
5788 xmlRegAtomPtr atom; local
5856 xmlRegAtomPtr atom; local
5942 xmlRegAtomPtr atom; local
6011 xmlRegAtomPtr atom; local
6090 xmlRegAtomPtr atom; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A Dregcomp.c763 - parseqatom - parse one quantified atom or constraint of an RE
783 struct subre *atom; /* atom's subtree */
791 struct subre **atomp; /* where the pointer to atom is */
797 atom = NULL;
803 * An atom or constraint...
963 atom = parse(v, ')', PLAIN, s, s2);
968 v->subs[subno] = atom;
969 t = subre(v, '(', atom->flags|CAP, lp, rp);
972 t->left = atom;
775 struct subre *atom; /* atom's subtree */ local
[all...]
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_atom.c88 struct refclock_atom atom; /* atom structure pointer */ member in struct:ppsunit
154 return (refclock_ppsapi(up->fddev, &up->atom));
192 if (refclock_pps(peer, &up->atom, pp->sloppyclockflag) <= 0)
H A Drefclock_wwvb.c133 struct refclock_atom atom; /* PPSAPI structure */ member in struct:wwvbunit
440 refclock_pps(peer, &up->atom, pp->sloppyclockflag) > 0) {
535 time_pps_destroy(up->atom.handle);
536 up->atom.handle = 0;
547 if (refclock_ppsapi(pp->io.fd, &up->atom)) {
H A Drefclock_nmea.c119 struct refclock_atom atom; /* PPSAPI structure */ member in struct:nmeaunit
334 time_pps_destroy(up->atom.handle);
376 time_pps_destroy(up->atom.handle);
379 up->atom.handle = 0;
404 if (refclock_ppsapi(pps_fd, &up->atom)) {
437 refclock_pps(peer, &up->atom, pp->sloppyclockflag) > 0) {
/macosx-10.9.5/tcl-102/tk/tk/xlib/
H A Dxutil.c27 * get a unique id for every atom. This is only a partial implementation,
45 static Atom atom = XA_LAST_PREDEFINED;
48 return ++atom;
44 static Atom atom = XA_LAST_PREDEFINED; local
/macosx-10.9.5/tcl-102/tk84/tk/xlib/
H A Dxutil.c32 * Tk_Uid to get a unique id for every atom. This is only a
51 static Atom atom = XA_LAST_PREDEFINED;
54 return ++atom;
50 static Atom atom = XA_LAST_PREDEFINED; local
/macosx-10.9.5/libpcap-42/libpcap/
H A Doptimize.c472 int atom; local
477 atom = atomuse(&s->s);
478 if (atom >= 0) {
479 if (atom == AX_ATOM) {
485 else if (atom < N_ATOMS) {
486 if (!ATOMELEM(def, atom))
487 use |= ATOMMASK(atom);
492 atom = atomdef(&s->s);
493 if (atom >= 0) {
494 if (!ATOMELEM(use, atom))
1173 register int atom; local
1199 register int atom; local
1325 int atom; local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A Dregcomp.c704 - parseqatom - parse one quantified atom or constraint of an RE
724 struct subre *atom; /* atom's subtree */ local
732 struct subre **atomp; /* where the pointer to atom is */
735 atom = NULL;
740 /* an atom or constraint... */
885 atom = parse(v, ')', PLAIN, s, s2);
890 v->subs[subno] = atom;
891 t = subre(v, '(', atom->flags|CAP, lp, rp);
894 t->left = atom;
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dbignum.tcl93 # represented as a single zero atom.
116 # Get the i-th atom out of a bignum.
119 proc ::math::bignum::atom {bignum i} {
127 # Set the i-th atom out of a bignum. If the bignum
497 set atom [expr {$n / $::math::bignum::atombits}]
499 incr atom 2
500 while {$atom >= [llength $z]} {lappend z 0}
501 lset z $atom [expr {[lindex $z $atom]|$bit}]
507 set atom [exp
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_atom.rb5 require "rss/atom"
31 id.content = "http://example.com/atom.xml"
219 atom = RSS::Parser.parse(make_feed)
220 assert_equal(atom.to_s, atom.to_xml)
221 assert_equal(atom.to_s, atom.to_xml("atom"))
222 assert_equal(atom.to_s, atom
[all...]
/macosx-10.9.5/ruby-104/ruby/sample/rss/
H A Dconvert.rb26 when /^-t(0\.91|1\.0|2\.0|atom)$/
/macosx-10.9.5/emacs-92/emacs/src/
H A Dxselect.c49 static Lisp_Object x_atom_to_symbol P_ ((Display *dpy, Atom atom));
314 x_atom_to_symbol (dpy, atom)
316 Atom atom;
322 if (! atom)
325 switch (atom)
358 if (atom == dpyinfo->Xatom_CLIPBOARD)
360 if (atom == dpyinfo->Xatom_TIMESTAMP)
362 if (atom == dpyinfo->Xatom_TEXT)
364 if (atom == dpyinfo->Xatom_COMPOUND_TEXT)
366 if (atom
2293 Atom atom; variable
2659 Atom atom; variable
2694 Lisp_Object atom, frame; variable
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Djavascript.js13 var operator = kw("operator"), atom = {type: "atom", style: "atom"};
22 "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom
151 var atomicTypes = {"atom"
[all...]
H A Dxml.js57 if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>"));
94 return ok ? "atom" : "error";
/macosx-10.9.5/vim-53/src/
H A Dglbl_ime.cpp54 * "atom" must be return value of RegisterClass(Ex).
57 global_ime_init(ATOM atom, HWND hWnd) argument
91 pIApp->FilterClientWindows(&atom, 1);
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A DCONVERT.mk127 .cvt.atom : .FUNCTION
167 A := $(.cvt.atom copy)
232 A := $(.cvt.atom file)

Completed in 409 milliseconds

12345