Searched defs:ON (Results 1 - 25 of 28) sorted by relevance

12

/external/clang/test/Parser/
H A Dpragma-optimize-diagnostics.cpp18 #define ON on macro
20 #pragma clang optimize ON
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.h44 #define ON U_OTHER_NEUTRAL macro
/external/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
H A DStateAdapter.java41 private static final String ON = "ON"; field in class:StateAdapter
110 mViewerActivity.onStateChanged(REFRESH_STATE_NAME, isChecked ? ON : OFF);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiTransform.java101 ON; enum constant in enum:BidiTransform.Mirroring
240 this.reorderingOptions = Mirroring.ON.equals(doMirroring)
H A DBidi.java937 static final byte ON = UCharacterDirection.OTHER_NEUTRAL; /* 10 */ field in class:Bidi
1149 static final int MASK_POSSIBLE_N = DirPropFlag(ON)|DirPropFlag(CS)|DirPropFlag(ES)|DirPropFlag(ET)|MASK_WS;
1716 byte result = ON;
1721 if (result == ON) {
1727 result = ON;
1787 byte lastStrong = ON; /* for default level & inverse Bidi */
1810 (dirProp = firstL_R_AL()) != ON) { /* with a strong character */
2050 pLastIsoRun.lastBase = ON;
2067 pLastIsoRun.lastBase = ON;
2122 /* process closing bracket; return L or R if N0b or N0c, ON i
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
H A DTestData.java34 protected static final int ON = UCharacterDirection.OTHER_NEUTRAL; field in class:TestData
50 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON",
65 AN, RLO, NSM, LRE, PDF, RLE, ES, EN, ON /* 9 entries */
74 AL, WS, PDF, WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF,
75 BN, BN, ON, PDF }, // 9
96 { ON, L, RLO, CS, R, WS, AN, AN, PDF, LRE, R, L, LRO, WS, BN, ON, S,
98 { ON, L, RLO, CS, R, WS, AN, AN, PDF, LRE, R, L, LRO, WS, BN, ON, S,
100 { RLO, RLO, AL, AL, WS, EN, ES, ON, W
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiTransform.java106 ON; enum constant in enum:BidiTransform.Mirroring
247 this.reorderingOptions = Mirroring.ON.equals(doMirroring)
H A DBidi.java962 static final byte ON = UCharacterDirection.OTHER_NEUTRAL; /* 10 */ field in class:Bidi
1174 static final int MASK_POSSIBLE_N = DirPropFlag(ON)|DirPropFlag(CS)|DirPropFlag(ES)|DirPropFlag(ET)|MASK_WS;
1751 byte result = ON;
1756 if (result == ON) {
1762 result = ON;
1822 byte lastStrong = ON; /* for default level & inverse Bidi */
1845 (dirProp = firstL_R_AL()) != ON) { /* with a strong character */
2085 pLastIsoRun.lastBase = ON;
2102 pLastIsoRun.lastBase = ON;
2157 /* process closing bracket; return L or R if N0b or N0c, ON i
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestData.java33 protected static final int ON = UCharacterDirection.OTHER_NEUTRAL; field in class:TestData
49 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON",
64 AN, RLO, NSM, LRE, PDF, RLE, ES, EN, ON /* 9 entries */
73 AL, WS, PDF, WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF,
74 BN, BN, ON, PDF }, // 9
95 { ON, L, RLO, CS, R, WS, AN, AN, PDF, LRE, R, L, LRO, WS, BN, ON, S,
97 { ON, L, RLO, CS, R, WS, AN, AN, PDF, LRE, R, L, LRO, WS, BN, ON, S,
99 { RLO, RLO, AL, AL, WS, EN, ES, ON, W
[all...]
/external/iputils/
H A Dclockdiff.c87 #define ON 1 macro
/external/icu/icu4c/source/common/
H A Dubidiimp.h47 ON= U_OTHER_NEUTRAL, /* 10 */ enumerator in enum:__anon7288
97 #define MASK_POSSIBLE_N (DIRPROP_FLAG(ON)|DIRPROP_FLAG(CS)|DIRPROP_FLAG(ES)|DIRPROP_FLAG(ET)|MASK_WS)
/external/clang/lib/AST/
H A DStmtPrinter.cpp1428 OffsetOfNode ON = Node->getComponent(i); local
1429 if (ON.getKind() == OffsetOfNode::Array) {
1432 PrintExpr(Node->getIndexExpr(ON.getArrayExprIndex()));
1439 if (ON.getKind() == OffsetOfNode::Base)
1443 IdentifierInfo *Id = ON.getFieldName();
H A DStmtProfile.cpp794 const OffsetOfNode &ON = S->getComponent(i); local
795 ID.AddInteger(ON.getKind());
796 switch (ON.getKind()) {
802 VisitDecl(ON.getField());
806 ID.AddPointer(ON.getFieldName());
H A DExprConstant.cpp7916 OffsetOfNode ON = OOE->getComponent(i); local
7917 switch (ON.getKind()) {
7919 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
7933 FieldDecl *MemberDecl = ON.getField();
7951 CXXBaseSpecifier *BaseSpec = ON.getBase();
/external/clang/lib/Serialization/
H A DASTWriterStmt.cpp499 const OffsetOfNode &ON = E->getComponent(I); local
500 Record.push_back(ON.getKind()); // FIXME: Stable encoding
501 Record.AddSourceLocation(ON.getSourceRange().getBegin());
502 Record.AddSourceLocation(ON.getSourceRange().getEnd());
503 switch (ON.getKind()) {
505 Record.push_back(ON.getArrayExprIndex());
509 Record.AddDeclRef(ON.getField());
513 Record.AddIdentifierRef(ON.getFieldName());
517 Record.AddCXXBaseSpecifier(*ON.getBase());
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1914 OffsetOfNode ON = E->getComponent(i); local
1916 switch (ON.getKind()) {
1919 Expr *IdxExpr = E->getIndexExpr(ON.getArrayExprIndex());
1938 FieldDecl *MemberDecl = ON.getField();
1967 if (ON.getBase()->isVirtual()) {
1976 CurrentType = ON.getBase()->getType();
/external/clang/lib/Sema/
H A DTreeTransform.h8373 const OffsetOfNode &ON = E->getComponent(I); local
8376 Comp.LocStart = ON.getSourceRange().getBegin();
8377 Comp.LocEnd = ON.getSourceRange().getEnd();
8378 switch (ON.getKind()) {
8380 Expr *FromIndex = E->getIndexExpr(ON.getArrayExprIndex());
8394 Comp.U.IdentInfo = ON.getFieldName();
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dyjp-controller-api-redist.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/yourkit/ com/yourkit/api/ com/yourkit/runtime/ com/ ...
/external/guice/extensions/persist/lib/
H A Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/hsqldb/index/ org/hsqldb/jdbc/ org/ ...
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 806 milliseconds

12