/external/llvm/include/llvm/Option/ |
Arg.h | 84 void setOwnsValues(bool Value) const { OwnsValues = Value; } 99 bool containsValue(StringRef Value) const { 101 if (Values[i] == Value)
|
/external/llvm/include/llvm/Support/ |
UnicodeCharRanges.h | 32 inline bool operator<(uint32_t Value, UnicodeCharRange Range) { 33 return Value < Range.Lower; 35 inline bool operator<(UnicodeCharRange Range, uint32_t Value) { 36 return Range.Upper < Value;
|
/external/llvm/lib/Analysis/ |
MemDerefPrinter.cpp | 25 SmallVector<Value *, 4> Deref; 26 SmallPtrSet<Value *, 4> DerefAndAligned; 58 Value *PO = LI->getPointerOperand(); 70 for (Value *V: Deref) {
|
/external/llvm/lib/CodeGen/ |
CoreCLRGC.cpp | 25 #include "llvm/IR/Value.h" 41 Optional<bool> isGCManagedPointer(const Value *V) const override {
|
StatepointExampleGC.cpp | 21 #include "llvm/IR/Value.h" 37 Optional<bool> isGCManagedPointer(const Value *V) const override {
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.h | 70 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation 96 GenericValue ExitValue; // The return value of the called function 207 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I, 221 GenericValue getOperandValue(Value *V, ExecutionContext &SF); 222 GenericValue executeTruncInst(Value *SrcVal, Type *DstTy, 224 GenericValue executeSExtInst(Value *SrcVal, Type *DstTy, 226 GenericValue executeZExtInst(Value *SrcVal, Type *DstTy, 228 GenericValue executeFPTruncInst(Value *SrcVal, Type *DstTy, 230 GenericValue executeFPExtInst(Value *SrcVal, Type *DstTy, 232 GenericValue executeFPToUIInst(Value *SrcVal, Type *DstTy [all...] |
/external/llvm/lib/IR/ |
Statepoint.cpp | 31 bool llvm::isStatepoint(const Value *inst) { 38 bool llvm::isStatepoint(const Value &inst) { 50 bool llvm::isGCRelocate(const Value *inst) { 67 bool llvm::isGCResult(const Value *inst) {
|
/external/llvm/lib/MC/ |
MCSymbol.cpp | 19 // Sentinel value for the absolute pseudo fragment. 41 void MCSymbol::setVariableValue(const MCExpr *Value) { 43 assert(Value && "Invalid variable value!"); 46 "Cannot give common/offset symbol a variable value"); 47 this->Value = Value;
|
/external/llvm/lib/Target/PowerPC/ |
PPCBoolRetToInt.cpp | 61 static SmallPtrSet<Value *, 8> findAllDefs(Value *V) { 62 SmallPtrSet<Value *, 8> Defs; 63 SmallVector<Value *, 8> WorkList; 67 Value *Curr = WorkList.back(); 77 // Translate a i1 value to an equivalent i32 value: 78 static Value *translate(Value *V) { 85 Value *Zero = Constant::getNullValue(Int32Ty) [all...] |
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCExpand.cpp | 32 #include "llvm/IR/Value.h" 114 Value *Value = cast<CallInst>(Inst)->getArgOperand(0); 116 " New = " << *Value << "\n"); 117 Inst->replaceAllUsesWith(Value);
|
/external/llvm/test/MC/ARM/ |
directive-object_arch-2.s | 13 @ CHECK: Value: 7 17 @ CHEKC: Value: 1
|
directive-object_arch.s | 13 @ CHECK: Value: 7 17 @ CHEKC: Value: 1
|
/external/llvm/tools/llvm-diff/ |
DiffLog.h | 22 class Value; 38 SmallVector<Value*, 4> Arguments; 48 LogBuilder &operator<<(Value *V) { 57 Value *getArgument(unsigned I) const;
|
/external/llvm/unittests/ADT/ |
PointerIntPairTest.cpp | 48 uintptr_t Value; 53 return reinterpret_cast<void *>(Num.Value << NumLowBitsAvailable); 56 // In real code this would assert that the value is in range. 63 EXPECT_EQ((uintptr_t)0, pair.getPointer().Value); 67 EXPECT_EQ((uintptr_t)0x7FFFFFFF, pair.getPointer().Value);
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
AnalyzerException.java | 51 final Value encountered)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/ |
ValueToken.java | 28 return ID.Value;
|
/external/v8/src/extensions/ |
free-buffer-extension.h | 19 static void FreeBuffer(const v8::FunctionCallbackInfo<v8::Value>& args);
|
statistics-extension.h | 18 static void GetCounters(const v8::FunctionCallbackInfo<v8::Value>& args);
|
/external/v8/test/cctest/ |
print-extension.h | 41 static void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
|
test-api-accessors.cc | 13 static void CppAccessor42(const v8::FunctionCallbackInfo<v8::Value>& info) { 18 static void CppAccessor41(const v8::FunctionCallbackInfo<v8::Value>& info) { 51 v8::Local<v8::Value>(), signature)); 58 v8::Local<v8::Value>(), signature));
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
StatsReport.java | 33 /** Java version of webrtc::StatsReport::Value. */ 34 public static class Value { 36 public final String value; field in class:StatsReport.Value 38 public Value(String name, String value) { 40 this.value = value; 45 builder.append("[").append(name).append(": ").append(value).append("]"); 54 public final Value[] values; 56 public StatsReport(String id, String type, double timestamp, Value[] values) [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_InvTransformDequant_ChromaDC.c | 57 * Return Value: 74 OMX_S32 QPer, V00, Value; 100 Value = (m[j][i] * V00) >> 1; 104 Value = (m[j][i] * V00) << (QPer - 1); 107 pDst[j * 2 + i] = (OMX_S16) Value;
|
omxVCM4P10_TransformQuant_ChromaDC.c | 58 * Return Value: 76 OMX_S32 Value; 101 Value = (armAbs(m[j][i]) * MF00 + Two_f) >> QbitsPlusOne; 102 pSrcDst[j * 2 + i] = (OMX_S16)((m[j][i] < 0) ? -Value : Value);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/ |
simpledom.cpp | 18 Value& s = d["stars"];
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ws2def.h | 36 ULONG Value;
|