Home
last modified time | relevance | path

Searched refs:IS_AROMATIC (Results 1 – 11 of 11) sorted by relevance

/dports/science/cdk/cdk-cdk-2.3/base/isomorphism/src/main/java/org/openscience/cdk/isomorphism/matchers/
H A DQueryAtomContainerCreator.java62 Expr.Type.IS_AROMATIC, in createBasicQueryContainer()
103 Expr.Type.IS_AROMATIC, in createSymbolAndChargeQueryContainer()
120 Expr.Type.IS_AROMATIC); in createSymbolChargeIDQueryContainer()
154 Expr.Type.IS_AROMATIC, in createAnyAtomContainer()
178 return QueryAtomContainer.create(container, Expr.Type.IS_AROMATIC); in createAnyAtomAnyBondContainer()
199 Expr.Type.IS_AROMATIC, in createAnyAtomForPseudoAtomQueryContainer()
H A DExpr.java240 case IS_AROMATIC: in matches()
391 case IS_AROMATIC: in matches()
530 case IS_AROMATIC: in negate()
534 type = Type.IS_AROMATIC; in negate()
798 IS_AROMATIC, enumConstant
952 case IS_AROMATIC: in hasValue()
H A DQueryAtomContainer.java1743 if (optset.contains(IS_AROMATIC)) {
1748 expr.and(new Expr(Expr.Type.IS_AROMATIC));
1812 optset.contains(Expr.Type.IS_AROMATIC))
1825 optset.contains(IS_AROMATIC)))
1826 expr.and(new Expr(Expr.Type.IS_AROMATIC));
1859 optset.contains(Expr.Type.IS_AROMATIC))
/dports/science/cdk/cdk-cdk-2.3/tool/smarts/src/test/java/org/openscience/cdk/smarts/
H A DMolToQueryTest.java63 Expr.Type.IS_AROMATIC, in aromaticWithBonds()
74 Expr.Type.IS_AROMATIC, in aromaticElementWithBonds()
H A DSmartsExprReadTest.java136 Expr expected = or(and(expr(IS_AROMATIC), expr(ELEMENT, 6)), in opPrecedence1()
137 and(expr(IS_AROMATIC), expr(ELEMENT, 7))); in opPrecedence1()
146 Expr expected = and(expr(IS_AROMATIC), in opPrecedence2()
156 Expr expected = and(expr(IS_AROMATIC), in opPrecedence3()
167 and(expr(ELEMENT, 7), expr(IS_AROMATIC))); in opPrecedence4()
177 and(expr(ELEMENT, 6), expr(IS_AROMATIC))); in opPrecedence5()
325 Expr expected = expr(IS_AROMATIC); in aromatic()
332 Expr expected = expr(IS_AROMATIC); in aromatic2()
757 Expr expected = expr(IS_AROMATIC); in aromaticBond()
H A DSmartsExprWriteTest.java50 import static org.openscience.cdk.isomorphism.matchers.Expr.Type.IS_AROMATIC;
230 expr(IS_AROMATIC)); in usrRecrOr()
/dports/science/cdk/cdk-cdk-2.3/storage/ctab/src/main/java/org/openscience/cdk/io/
H A DMDLV2000Writer.java550 case IS_AROMATIC: in writeMolecule()
571 … else if (e.equals(new Expr(Expr.Type.ALIPHATIC_ORDER, 1).or(new Expr(Expr.Type.IS_AROMATIC))) || in writeMolecule()
572 … e.equals(new Expr(Expr.Type.IS_AROMATIC).or(new Expr(Expr.Type.ALIPHATIC_ORDER, 1)))) in writeMolecule()
575 … else if (e.equals(new Expr(Expr.Type.ALIPHATIC_ORDER, 2).or(new Expr(Expr.Type.IS_AROMATIC))) || in writeMolecule()
576 … e.equals(new Expr(Expr.Type.IS_AROMATIC).or(new Expr(Expr.Type.ALIPHATIC_ORDER, 2)))) in writeMolecule()
/dports/science/openbabel/openbabel-3.1.1/include/openbabel/
H A Dresidue.h226 #define IS_AROMATIC(x) ((x) & ((AA_HIS)|(AA_PHE)|(AA_TRP)|(AA_TYR))) macro
/dports/science/cdk/cdk-cdk-2.3/base/isomorphism/src/test/java/org/openscience/cdk/isomorphism/
H A DExprTest.java67 import static org.openscience.cdk.isomorphism.matchers.Expr.Type.IS_AROMATIC;
209 Expr expr = new Expr(IS_AROMATIC); in testIsAromatic()
1247 Expr expr = new Expr(IS_AROMATIC); in testBondIsAromaticT()
1255 Expr expr = new Expr(IS_AROMATIC); in testBondIsAromaticF()
1412 assertThat(new Expr(IS_ALIPHATIC).negate(), is(new Expr(IS_AROMATIC))); in testNegationOptimizations()
1413 assertThat(new Expr(IS_AROMATIC).negate(), is(new Expr(IS_ALIPHATIC))); in testNegationOptimizations()
/dports/science/cdk/cdk-cdk-2.3/tool/smarts/src/main/java/org/openscience/cdk/smarts/
H A DSmarts.java1005 expr = new Expr(IS_AROMATIC);
1394 expr = new Expr(Expr.Type.IS_AROMATIC);
1904 append(new Expr(Expr.Type.IS_AROMATIC));
2101 case IS_AROMATIC:
2649 case IS_AROMATIC:
3034 case IS_AROMATIC:
/dports/science/openbabel/openbabel-3.1.1/src/
H A Dresidue.cpp1137 return IS_AROMATIC(_aakey) != 0; in GetAminoAcidProperty()