Home
last modified time | relevance | path

Searched refs:getVal (Results 1 – 20 of 20) sorted by relevance

/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DAPIInfo.java114 public boolean isDraft() { return getVal(STA) == STA_DRAFT; } in isDraft()
115 public boolean isStable() { return getVal(STA) == STA_STABLE; } in isStable()
116 public boolean isDeprecated() { return getVal(STA) == STA_DEPRECATED; } in isDeprecated()
117 public boolean isObsolete() { return getVal(STA) == STA_OBSOLETE; } in isObsolete()
118 public boolean isInternal() { return getVal(STA) == STA_INTERNAL; } in isInternal()
119 public boolean isPackage() { return getVal(VIS) == VIS_PACKAGE; } in isPackage()
120 public boolean isPublic() { return getVal(VIS) == VIS_PUBLIC; } in isPublic()
121 public boolean isProtected() { return getVal(VIS) == VIS_PROTECTED; } in isProtected()
122 public boolean isPrivate() { return getVal(VIS) == VIS_PRIVATE; } in isPrivate()
123 public boolean isStatic() { return getVal(STK) == STK_STATIC; } in isStatic()
[all …]
DCheckAPI.java99 public abstract int getVal(int typ); in getVal() method in CheckAPI.APIInfo
112 public int getVal(int typ) { in getVal() method in CheckAPI.Info
208 int val = getVal(CAT); in write()
393 result = (lhi.getVal(CAT) == CAT_CLASS ? lhi.name : lhi.cls) in defaultComparator()
394 .compareTo(rhi.getVal(CAT) == CAT_CLASS ? rhi.name : rhi.cls); in defaultComparator()
396 result = lhi.getVal(CAT)- rhi.getVal(CAT); in defaultComparator()
418 result = (lhi.getVal(CAT) == CAT_CLASS ? lhi.name : lhi.cls) in changedComparator()
419 .compareTo(rhi.getVal(CAT) == CAT_CLASS ? rhi.name : rhi.cls); in changedComparator()
421 result = lhi.getVal(CAT)- rhi.getVal(CAT); in changedComparator()
424 if (result == 0 && lhi.getVal(CAT) != CAT_CLASS) { in changedComparator()
[all …]
DCollectAPI.java76 if (state != info.getVal(APIInfo.STA)) { in writeHTML()
154 if (!filter.get(info.getVal(APIInfo.STA))) { in writeTSV()
176 buf.append(APIInfo.getTypeValName(APIInfo.STA, info.getVal(APIInfo.STA))); in writeTSV()
DAPIData.java130 int sta = info.getVal(APIInfo.STA); in printStats()
131 int cat = info.getVal(APIInfo.CAT); in printStats()
DReportAPI.java68 public int getVal(int typ) { in getVal() method in ReportAPI.DeltaInfo
69 return added.getVal(typ); in getVal()
257 int lstatus = lhs.getVal(APIInfo.STA); in statusChange()
/external/llvm/lib/Transforms/Utils/
DEvaluator.cpp205 Constant *Ptr = getVal(SI->getOperand(1)); in EvaluateBlock()
217 Constant *Val = getVal(SI->getOperand(0)); in EvaluateBlock()
275 getVal(BO->getOperand(0)), in EvaluateBlock()
276 getVal(BO->getOperand(1))); in EvaluateBlock()
281 getVal(CI->getOperand(0)), in EvaluateBlock()
282 getVal(CI->getOperand(1))); in EvaluateBlock()
287 getVal(CI->getOperand(0)), in EvaluateBlock()
292 InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)), in EvaluateBlock()
293 getVal(SI->getOperand(1)), in EvaluateBlock()
294 getVal(SI->getOperand(2))); in EvaluateBlock()
[all …]
/external/llvm/lib/IR/
DProfileSummary.cpp88 static bool getVal(MDTuple *MD, const char *Key, uint64_t &Val) { in getVal() function
168 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(1)), "TotalCount", in getFromMD()
171 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(2)), "MaxCount", MaxCount)) in getFromMD()
173 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(3)), "MaxInternalCount", in getFromMD()
176 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(4)), "MaxFunctionCount", in getFromMD()
179 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(5)), "NumCounts", NumCounts)) in getFromMD()
181 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(6)), "NumFunctions", in getFromMD()
/external/clang/test/SemaObjC/
Dno-warning-unavail-unimp.m7 @property (getter=getVal) int val __attribute__((unavailable));
8 @property (getter=getVal) int val2 __attribute__((availability(macosx,unavailable)));
/external/clang/test/Analysis/
Dnil-receiver-undefined-larger-than-voidptr-ret-region.m14 id *getVal(void); function
28 x = getVal();
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DGlobalOpt.cpp2055 static Constant *getVal(DenseMap<Value*, Constant*> &ComputedValues, Value *V) { in getVal() function
2338 Constant *Ptr = getVal(Values, SI->getOperand(1)); in EvaluateFunction()
2343 Constant *Val = getVal(Values, SI->getOperand(0)); in EvaluateFunction()
2390 getVal(Values, BO->getOperand(0)), in EvaluateFunction()
2391 getVal(Values, BO->getOperand(1))); in EvaluateFunction()
2394 getVal(Values, CI->getOperand(0)), in EvaluateFunction()
2395 getVal(Values, CI->getOperand(1))); in EvaluateFunction()
2398 getVal(Values, CI->getOperand(0)), in EvaluateFunction()
2401 InstResult = ConstantExpr::getSelect(getVal(Values, SI->getOperand(0)), in EvaluateFunction()
2402 getVal(Values, SI->getOperand(1)), in EvaluateFunction()
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DEvaluator.h64 Constant *getVal(Value *V) { in getVal() function
/external/apache-xml/src/main/java/org/apache/xpath/
DArg.java74 public final XObject getVal() in getVal() method in Arg
/external/flatbuffers/tests/MyGame/Example/
DStat.php59 public function getVal() function in MyGame\\Example\\Stat
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp1397 StringTableSize = Dyn.getVal(); in parseDynamicTable()
1407 DynRelaRegion.Size = Dyn.getVal(); in parseDynamicTable()
1410 DynRelaRegion.EntSize = Dyn.getVal(); in parseDynamicTable()
1413 SONameOffset = Dyn.getVal(); in parseDynamicTable()
1419 DynRelRegion.Size = Dyn.getVal(); in parseDynamicTable()
1422 DynRelRegion.EntSize = Dyn.getVal(); in parseDynamicTable()
1425 if (Dyn.getVal() == DT_REL) in parseDynamicTable()
1427 else if (Dyn.getVal() == DT_RELA) in parseDynamicTable()
1431 Twine((uint64_t)Dyn.getVal())); in parseDynamicTable()
1437 DynPLTRelRegion.Size = Dyn.getVal(); in parseDynamicTable()
[all …]
/external/llvm/include/llvm/Object/
DELFTypes.h370 uintX_t getVal() const { return d_un.d_val; }
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerImpl.java1514 return arg.getVal().object(); in getParameter()
1553 setParameter(s2, s1, arg.getVal().object()); in resetUserParameters()
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp1007 return DAG.getStore(N->getChain(), SDLoc(Op), N->getVal(), in LowerATOMIC_STORE()
1015 return DAG.getTruncStore(N->getChain(), SDLoc(Op), N->getVal(), in LowerATOMIC_STORE()
1021 return DAG.getTruncStore(N->getChain(), SDLoc(Op), N->getVal(), in LowerATOMIC_STORE()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DSelectionDAGNodes.h1042 const SDValue &getVal() const { return getOperand(2); }
/external/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h1162 const SDValue &getVal() const { return getOperand(2); }
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp3197 SDValue Chain = DAG.getTruncStore(Node->getChain(), SDLoc(Op), Node->getVal(), in lowerATOMIC_STORE()
3220 SDValue Src2 = Node->getVal(); in lowerATOMIC_LOAD_OP()
3287 SDValue Src2 = Node->getVal(); in lowerATOMIC_LOAD_SUB()