Home
last modified time | relevance | path

Searched refs:isSpecial (Results 1 – 10 of 10) sorted by relevance

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DTimeLineGraphItem.java28 boolean isSpecial=false; field in TimeLineGraphItem
33 …ption,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseli… in TimeLineGraphItem() argument
34 this(title, description, value, color,display, timestamp,isSpecial); in TimeLineGraphItem()
38 …, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { in TimeLineGraphItem() argument
40 this.isSpecial=isSpecial; in TimeLineGraphItem()
DTimeLineGraph.java114 if (thisItem.isSpecial) in paint()
152 …, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { in addItem() argument
154 timestamp,isSpecial,false); in addItem()
157 …ption, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBase… in addItem() argument
164 timestamp,isSpecial,drawBaseline)); in addItem()
/external/proguard/src/proguard/classfile/visitor/
DMethodImplementationTraveler.java80 if (!isSpecial(programClass, programMethod)) in visitProgramMethod()
103 if (!isSpecial(libraryClass, libraryMethod)) in visitLibraryMethod()
121 private boolean isSpecial(Clazz clazz, Method method) in isSpecial() method in MethodImplementationTraveler
/external/javassist/src/main/javassist/compiler/
DMemberCodeGen.java454 boolean isSpecial = false; in atCallExpr()
469 isSpecial = true; in atCallExpr()
493 isSpecial = true; in atCallExpr()
523 atMethodCallCore(targetClass, mname, args, isStatic, isSpecial, in atCallExpr()
538 ASTList args, boolean isStatic, boolean isSpecial, in atMethodCallCore() argument
575 atMethodCallCore2(targetClass, mname, isStatic, isSpecial, in atMethodCallCore()
580 boolean isStatic, boolean isSpecial, in atMethodCallCore2() argument
591 isSpecial = true; in atMethodCallCore2()
602 isSpecial = true; in atMethodCallCore2()
604 isSpecial = false; in atMethodCallCore2()
[all …]
/external/icu4c/i18n/
Ducol_sit.cpp741 …if(isSpecial(CE) && getCETag(CE) == CONTRACTION_TAG && isSpecial(newCE) && getCETag(newCE) == SPEC… in addSpecial()
746 if(expansions && isSpecial(CE) && getCETag(CE) == EXPANSION_TAG) { in addSpecial()
763 … if(isSpecial(newCE) && (getCETag(newCE) == CONTRACTION_TAG || getCETag(newCE) == SPEC_PROC_TAG)) { in addSpecial()
769 if(expansions && isSpecial(newCE) && getCETag(newCE) == EXPANSION_TAG) { in addSpecial()
783 … if(isSpecial(newCE) && (getCETag(newCE) == CONTRACTION_TAG || getCETag(newCE) == SPEC_PROC_TAG)) { in addSpecial()
789 if(expansions && isSpecial(newCE) && getCETag(newCE) == EXPANSION_TAG) { in addSpecial()
808 if(isSpecial(CE)) { in _processSpecials()
Ducol_cnt.h35 #define isCntTableElement(CE) (isSpecial((CE)) && \
Ducol_imp.h630 #define isSpecial(CE) ((((CE)&UCOL_SPECIAL_FLAG)>>28)==0xF) macro
644 #define isContraction(CE) (isSpecial((CE)) && (getCETag((CE)) == CONTRACTION_TAG))
645 #define isPrefix(CE) (isSpecial((CE)) && (getCETag((CE)) == SPEC_PROC_TAG))
Ducol_elm.cpp1106 if ((element->prefixSize!=0) && (!isSpecial(CE) || (getCETag(CE)!=IMPLICIT_TAG))) { in uprv_uca_finalizeAddition()
1393 } else if(!(isSpecial(value) && (tag == IMPLICIT_TAG || tag == NOT_FOUND_TAG))) { in getFoldedValue()
Ducol.cpp3482 if(isSpecial(isZeroCE) && getCETag(isZeroCE) == SURROGATE_TAG) { in ucol_prv_getSpecialPrevCE()
/external/javassist/src/main/javassist/bytecode/analysis/
DType.java186 public boolean isSpecial() { in isSpecial() method in Type