Searched defs:atom (Results 1 - 25 of 34) sorted by relevance

12

/external/clang/test/CXX/special/class.conv/class.conv.ctor/
H A Dp1.cpp16 struct atom { }; struct in namespace:PR13003
18 void_type v1 = atom();
19 void_type2 v2 = atom();
/external/freetype/include/freetype/
H A Dftbdf.h66 * 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_::__anon6069
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java51 public LookaheadSet(int atom) { argument
52 tokenTypeSet = IntervalSet.of(atom);
H A DLabel.java83 /** Anything at this value or larger can be considered a simple atom int
114 /** The wildcard '.' char atom implies all valid characters==UNICODE */
209 /** return the single atom label or INVALID if not a single atom */
234 public boolean matches(int atom) { argument
235 if ( label==atom ) {
236 return true; // handle the single atom case efficiently
239 return labelSet.member(atom);
275 // TODO: do we care about comparing set {A} with atom A? Doesn't now.
/external/mesa3d/src/glsl/
H A Ds_expression.cpp61 return NULL; // no atom
63 // Check if the atom is a number.
89 s_expression *atom = read_atom(ctx, src); local
90 if (atom != NULL)
91 return atom;
/external/regex-re2/re2/
H A Dprefilter.h26 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/chrome/browser/chromeos/
H A Dwm_ipc.cc24 WmIpc::AtomType atom; member in struct:chromeos::__anon1892::AtomInfo
186 type_to_atom_[kAtomInfos[i].atom] = atoms[i];
/external/elfutils/libdw/
H A Ddwarf_getlocation.c92 uint8_t atom; member in struct:loclist
150 switch ((newloc->atom = *data++))
319 result[n].atom = loclist->atom;
H A Dlibdw.h186 uint8_t atom; /* Operation */ member in struct:__anon5810
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dsymbols.c174 * lAddToTree() - Using a binary tree is not a good idea for basic atom values because they
220 Symbol *AddSymbol(SourceLoc *loc, Scope *fScope, int atom, symbolkind kind) argument
226 lSymb = NewSymbol(loc, fScope, atom, kind);
241 Symbol *LookUpLocalSymbol(Scope *fScope, int atom) argument
246 ratom = GetReversedAtom(atable, atom);
270 Symbol *LookUpSymbol(Scope *fScope, int atom) argument
277 lSymb = LookUpLocalSymbol(fScope, atom);
H A Datom.c46 // atom.c
295 HashTable htable; // Hashes string to atom number and token value. Multiple strings can
296 // have the same token value but each unique string is a unique atom.
297 int *amap; // Maps atom value to offset in string table. Atoms all map to unique
299 // of the atom table that map to "<undefined>". The lowest 256 atoms
302 // language tokens with their atom values equal to the token value.
304 int *arev; // Reversed atom for symbol table use.
312 static int AddAtomFixed(AtomTable *atable, const char *s, int atom);
315 * GrowAtomTable() - Grow the atom table to at least "size" if it's smaller.
375 * AllocateAtom() - Allocate a new atom
521 int hashindex, atom; local
537 GetAtomString(AtomTable *atable, int atom) argument
566 GetReversedAtom(AtomTable *atable, int atom) argument
582 int atom; local
593 AddAtomFixed(AtomTable *atable, const char *s, int atom) argument
706 GetStringOfAtom(AtomTable *atable, int atom) argument
[all...]
H A Dcpp.c268 int atom,depth=0; local
285 atom = yylvalpp->sc_ident;
286 if (atom == ifAtom || atom == ifdefAtom || atom == ifndefAtom){
290 else if (atom == endifAtom) {
301 if (atom == elseAtom ) {
315 else if (atom == elifAtom) {
325 else if((atom==elseAtom) && (!ChkCorrectElseNesting())){
839 int atom local
932 MacroExpand(int atom, yystypepp * yylvalpp) argument
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DPasteboardHelper.cpp253 GdkAtom atom = gtk_drag_dest_find_target(widget, context, list.get()); local
254 if (atom != GDK_NONE)
255 dropAtoms.append(atom);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParser.cs50 "invalidRule", "atom", "expr", "formalPar", "func", "multExpr", "prog",
1006 // BuildOptions\\DebugGrammar.g3:76:0: multExpr : atom ( ( '*' | '/' | '%' ) atom )* ;
1032 // BuildOptions\\DebugGrammar.g3:77:9: ( atom ( ( '*' | '/' | '%' ) atom )* )
1035 // BuildOptions\\DebugGrammar.g3:77:9: atom ( ( '*' | '/' | '%' ) atom )*
1041 atom22=atom();
1047 // BuildOptions\\DebugGrammar.g3:77:14: ( ( '*' | '/' | '%' ) atom )*
1078 // BuildOptions\\DebugGrammar.g3:77:15: ( '*' | '/' | '%' ) atom
1165 private DebugGrammarParser.atom_return atom( ) method in class:DebugGrammarParser
[all...]
H A DProfileGrammarParser.cs50 "invalidRule", "atom", "expr", "formalPar", "func", "multExpr", "prog",
1010 // BuildOptions\\ProfileGrammar.g3:76:0: multExpr : atom ( ( '*' | '/' | '%' ) atom )* ;
1036 // BuildOptions\\ProfileGrammar.g3:77:9: ( atom ( ( '*' | '/' | '%' ) atom )* )
1039 // BuildOptions\\ProfileGrammar.g3:77:9: atom ( ( '*' | '/' | '%' ) atom )*
1045 atom22=atom();
1051 // BuildOptions\\ProfileGrammar.g3:77:14: ( ( '*' | '/' | '%' ) atom )*
1082 // BuildOptions\\ProfileGrammar.g3:77:15: ( '*' | '/' | '%' ) atom
1169 private ProfileGrammarParser.atom_return atom( ) method in class:ProfileGrammarParser
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java617 // SimpleCTP.g:54:1: expr : ( ^( EQEQ expr expr ) | ^( LT expr expr ) | ^( PLUS expr expr ) | ^( EQ ID e= expr ) | atom );
627 // SimpleCTP.g:54:5: ( ^( EQEQ expr expr ) | ^( LT expr expr ) | ^( PLUS expr expr ) | ^( EQ ID e= expr ) | atom )
748 // SimpleCTP.g:58:9: atom
751 atom();
772 // $ANTLR start "atom"
773 // SimpleCTP.g:61:1: atom : ( ID | INT );
774 public final void atom() throws RecognitionException { method in class:SimpleCTP
800 // $ANTLR end "atom"
H A DSimpleCParser.java1472 // SimpleC.g:81:1: aexpr : atom ( '+' atom )* ;
1488 // SimpleC.g:82:5: ( atom ( '+' atom )* )
1489 // SimpleC.g:82:9: atom ( '+' atom )*
1494 atom46=atom();
1499 // SimpleC.g:82:14: ( '+' atom )*
1512 // SimpleC.g:82:16: '+' atom
1519 atom48=atom();
1561 public final SimpleCParser.atom_return atom() throws RecognitionException { method in class:SimpleCParser
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java617 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:54:1: expr : ( ^( EQEQ expr expr ) | ^( LT expr expr ) | ^( PLUS expr expr ) | ^( EQ ID e= expr ) | atom );
627 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:54:5: ( ^( EQEQ expr expr ) | ^( LT expr expr ) | ^( PLUS expr expr ) | ^( EQ ID e= expr ) | atom )
748 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:58:9: atom
751 atom();
772 // $ANTLR start "atom"
773 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:61:1: atom : ( ID | INT );
774 public final void atom() throws RecognitionException { method in class:SimpleCTP
800 // $ANTLR end "atom"
H A DSimpleCParser.java1472 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:81:1: aexpr : atom ( '+' atom )* ;
1488 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:82:5: ( atom ( '+' atom )* )
1489 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:82:9: atom ( '+' atom )*
1494 atom46=atom();
1499 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:82:14: ( '+' atom )*
1512 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:82:16: '+' atom
1519 atom48=atom();
1561 public final SimpleCParser.atom_return atom() throws RecognitionException { method in class:SimpleCParser
[all...]
/external/linux-tools-perf/util/
H A Dtrace-event.h59 char *atom; member in struct:print_arg_atom
123 struct print_arg_atom atom; member in union:print_arg::__anon9001
H A Dtrace-event-parse.c389 if (arg->atom.atom)
390 free(arg->atom.atom);
1256 left->atom.atom = realloc(left->atom.atom,
1257 sizeof(left->atom.atom)
1687 char *atom; local
[all...]
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrInterpreter.h92 } atom; member in union:JSC::Yarr::ByteTerm::__anon15009
122 atom.patternCharacter = ch;
123 atom.quantityType = quantityType;
124 atom.quantityCount = quantityCount;
145 atom.casedCharacter.lo = lo;
146 atom.casedCharacter.hi = hi;
147 atom.quantityType = quantityType;
148 atom.quantityCount = quantityCount;
157 atom.characterClass = characterClass;
158 atom
[all...]
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js199 "atom": function(name) {
1260 if (!beautify && el[0] == "atom" && el[1] == "undefined") return "";
1276 "atom": function(name) {
1416 case "atom":
/external/libpcap/
H A Doptimize.c454 int atom; local
459 atom = atomuse(&s->s);
460 if (atom >= 0) {
461 if (atom == AX_ATOM) {
467 else if (atom < N_ATOMS) {
468 if (!ATOMELEM(def, atom))
469 use |= ATOMMASK(atom);
474 atom = atomdef(&s->s);
475 if (atom >= 0) {
476 if (!ATOMELEM(use, atom))
1144 register int atom; local
1170 register int atom; local
1296 int atom; local
[all...]
/external/webkit/Tools/QtTestBrowser/
H A Dlauncherwindow.cpp442 Atom atom = XInternAtom(QX11Info::display(), "_HILDON_ZOOM_KEY_ATOM", False); local
443 if (!atom) {
449 XChangeProperty(QX11Info::display(), winId(), atom, XA_INTEGER, 32, PropModeReplace, reinterpret_cast<unsigned char*>(&val), 1); local

Completed in 1098 milliseconds

12