Searched defs:Value (Results 126 - 150 of 431) sorted by relevance

1234567891011>>

/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h46 static bool is(const VariantValue &Value) { return Value.isString(); } argument
47 static const std::string &get(const VariantValue &Value) { argument
48 return Value.getString();
62 static bool is(const VariantValue &Value) { argument
63 return Value.hasTypedMatcher<T>();
65 static ast_matchers::internal::Matcher<T> get(const VariantValue &Value) { argument
66 return Value.getTypedMatcher<T>();
72 static bool is(const VariantValue &Value) { return Value argument
73 get(const VariantValue &Value) argument
255 const VariantValue &Value = Arg.Value; local
[all...]
/external/clang/lib/Driver/
H A DSanitizerArgs.h108 /// if \p Value is not known.
109 static unsigned parse(const char *Value) { argument
110 unsigned ParsedKind = llvm::StringSwitch<SanitizeKind>(Value)
H A DToolChain.cpp296 StringRef Value = A->getValue(); local
297 if (Value == "compiler-rt")
299 if (Value == "libgcc")
310 StringRef Value = A->getValue(); local
311 if (Value == "libc++")
313 if (Value == "libstdc++")
/external/clang/lib/Sema/
H A DSemaAttr.cpp287 llvm::StringRef Value) {
289 Consumer.HandleDetectMismatch(Name, Value);
286 ActOnPragmaDetectMismatch(llvm::StringRef Name, llvm::StringRef Value) argument
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp261 llvm::yaml::Node *Value = (*KVI).getValue(); local
262 if (Value == NULL) {
267 dyn_cast<llvm::yaml::ScalarNode>(Value);
/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp73 VariantValue Value; local
74 Parser::parseExpression(Code, this, &Value, &Error);
75 Values.push_back(Value);
160 EXPECT_EQ(17U, Bar.Args[0].Value.getUnsigned());
166 EXPECT_EQ("B A,Z", Baz.Args[0].Value.getString());
173 Foo.Args[0].Value.getMatchers().matchers()[0]->getID());
175 Foo.Args[1].Value.getMatchers().matchers()[0]->getID());
214 VariantValue Value; local
215 Parser::parseExpression(Code, &Value, &Error);
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h152 class Value { class in namespace:__ubsan
175 Value(const TypeDescriptor &Type, ValueHandle Val) : Type(Type), Val(Val) {} function in class:__ubsan::Value
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeEmitter.h32 class Value;
179 void emitULEB128Bytes(uint64_t Value) { argument
181 uint8_t Byte = Value & 0x7f;
182 Value >>= 7;
183 if (Value) Byte |= 0x80;
185 } while (Value);
190 void emitSLEB128Bytes(uint64_t Value) { argument
191 uint64_t Sign = Value >> (8 * sizeof(Value) - 1);
195 uint8_t Byte = Value
215 emitInt32(int32_t Value) argument
225 emitInt64(uint64_t Value) argument
235 emitInt32At(uintptr_t *Addr, uintptr_t Value) argument
241 emitInt64At(uintptr_t *Addr, uintptr_t Value) argument
[all...]
/external/llvm/include/llvm/IR/
H A DUse.h11 // instruction or some other User instance which refers to a Value. The Use
37 class Value;
58 /// Use is here to make keeping the "use" list of a Value up-to-date really
89 /// Normally Use will just implicitly convert to a Value* that it holds.
90 operator Value*() const { return Val; }
92 /// If implicit conversion to Value* doesn't work, the get() method returns
93 /// the Value*.
94 Value *get() const { return Val; }
100 inline void set(Value *Val);
102 Value *operato
[all...]
/external/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h124 unsigned setRType(unsigned Value, unsigned Type) const { argument
125 return ((Type & R_TYPE_MASK) | ((Value & 0xff) << R_TYPE_SHIFT));
127 unsigned setRType2(unsigned Value, unsigned Type) const { argument
128 return (Type & R_TYPE2_MASK) | ((Value & 0xff) << R_TYPE2_SHIFT);
130 unsigned setRType3(unsigned Value, unsigned Type) const { argument
131 return (Type & R_TYPE3_MASK) | ((Value & 0xff) << R_TYPE3_SHIFT);
133 unsigned setRSsym(unsigned Value, unsigned Type) const { argument
134 return (Type & R_SSYM_MASK) | ((Value & 0xff) << R_SSYM_SHIFT);
H A DMCTargetAsmParser.h103 void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; } argument
106 void setParsingInlineAsm (bool Value) { ParsingInlineAsm = Value; } argument
/external/llvm/include/llvm/Object/
H A DRelocVisitor.h31 int64_t Value; member in struct:llvm::object::RelocToApply
36 RelocToApply(const RelocToApply &In) : Value(In.Value), Width(In.Width) {}
37 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} argument
38 RelocToApply() : Value(0), Width(0) {}
51 uint64_t Value = 0) {
57 return visitELF_X86_64_64(R, Value);
59 return visitELF_X86_64_PC32(R, Value, SecAdd
177 visitELF_386_32(RelocationRef R, uint64_t Value) argument
182 visitELF_386_PC32(RelocationRef R, uint64_t Value, uint64_t SecAddr) argument
194 visitELF_X86_64_64(RelocationRef R, uint64_t Value) argument
198 visitELF_X86_64_PC32(RelocationRef R, uint64_t Value, uint64_t SecAddr) argument
205 visitELF_X86_64_32(RelocationRef R, uint64_t Value) argument
210 visitELF_X86_64_32S(RelocationRef R, uint64_t Value) argument
217 visitELF_PPC64_ADDR32(RelocationRef R, uint64_t Value) argument
222 visitELF_PPC64_ADDR64(RelocationRef R, uint64_t Value) argument
228 visitELF_PPC_ADDR32(RelocationRef R, uint64_t Value) argument
235 visitELF_MIPS_32(RelocationRef R, uint64_t Value) argument
243 visitELF_AARCH64_ABS32(RelocationRef R, uint64_t Value) argument
254 visitELF_AARCH64_ABS64(RelocationRef R, uint64_t Value) argument
260 visitELF_390_32(RelocationRef R, uint64_t Value) argument
271 visitELF_390_64(RelocationRef R, uint64_t Value) argument
[all...]
/external/llvm/include/llvm/Support/
H A DEndian.h77 (const void*)Value.buffer);
82 (void*)Value.buffer, newValue);
87 sizeof(value_type)> Value; member in struct:llvm::support::detail::packed_endian_specific_integral
H A DValueHandle.h1 //===- llvm/Support/ValueHandle.h - Value Smart Pointer classes -*- C++ -*-===//
19 #include "llvm/IR/Value.h"
37 /// ValueHandle's are smart pointers to Value's that have special behavior when
42 friend class Value;
62 PointerIntPair<Value*, 2> VP;
68 ValueHandleBase(HandleBaseKind Kind, Value *V)
83 Value *operator=(Value *RHS) {
91 Value *operator=(const ValueHandleBase &RHS) {
99 Value *operato
[all...]
H A Draw_ostream.h372 void SetUseAtomicWrites(bool Value) { argument
373 UseAtomicWrites = Value;
/external/llvm/include/llvm/Target/
H A DTargetMachine.h159 void setMCRelaxAll(bool Value) { MCRelaxAll = Value; } argument
167 void setMCSaveTempLabels(bool Value) { MCSaveTempLabels = Value; } argument
173 void setMCNoExecStack(bool Value) { MCNoExecStack = Value; } argument
179 void setMCUseLoc(bool Value) { MCUseLoc = Value; } argument
185 void setMCUseCFI(bool Value) { MCUseCFI = Value; } argument
193 setMCUseDwarfDirectory(bool Value) argument
[all...]
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp27 static bool isIntOrIntVectorValue(const std::pair<const Value*, unsigned> &V) { argument
122 unsigned ValueEnumerator::getValueID(const Value *V) const {
125 assert(I != MDValueMap.end() && "Value not in slotcalculator!");
130 assert(I != ValueMap.end() && "Value not in slotcalculator!");
149 const Value *V = I->first;
151 OS << "Value: " << V->getName();
153 OS << "Value: [null]\n";
157 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
176 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
177 const std::pair<const Value*, unsigne
[all...]
/external/llvm/lib/CodeGen/
H A DSpillPlacement.cpp71 /// The node Value is positive when the variable should be in a register. The
81 /// Value - Output value of this node computed from the Bias and links.
84 int Value; member in struct:SpillPlacement::Node
97 // Undecided nodes (Value==0) go on the stack.
98 return Value > 0;
112 BiasN = BiasP = Value = 0;
149 /// update - Recompute Value from Bias and Links. Return true when node
156 if (nodes[I->second].Value == -1)
158 else if (nodes[I->second].Value == 1)
163 // bundle. Ideally, we should simply set Value
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h210 void writeInt16BE(uint8_t *Addr, uint16_t Value) { argument
212 Value = sys::SwapByteOrder(Value);
213 *Addr = (Value >> 8) & 0xFF;
214 *(Addr+1) = Value & 0xFF;
217 void writeInt32BE(uint8_t *Addr, uint32_t Value) { argument
219 Value = sys::SwapByteOrder(Value);
220 *Addr = (Value >> 24) & 0xFF;
221 *(Addr+1) = (Value >> 1
226 writeInt64BE(uint8_t *Addr, uint64_t Value) argument
[all...]
/external/llvm/lib/MC/
H A DMCExpr.cpp152 const MCConstantExpr *MCConstantExpr::Create(int64_t Value, MCContext &Ctx) { argument
153 return new (Ctx) MCConstantExpr(Value);
443 MCValue Value; local
455 EvaluateAsRelocatableImpl(Value, Asm, Layout, Addrs, /*InSet*/ Addrs);
458 Res = Value.getConstant();
460 return IsRelocatable && Value.isAbsolute();
646 MCValue Value; local
648 if (!AUE->getSubExpr()->EvaluateAsRelocatableImpl(Value, Asm, Layout,
654 if (!Value.isAbsolute())
656 Res = MCValue::get(!Value
[all...]
H A DMCMachOStreamer.cpp70 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { argument
H A DMCObjectSymbolizer.cpp36 int64_t Value, uint64_t Address) {
40 if (!RelExpr || RelExpr->EvaluateAsAbsolute(Value) == false)
43 uint64_t Addr = Value;
118 int64_t Value, uint64_t Address, bool IsBranch,
130 // Interpret Value as a branch target.
133 uint64_t UValue = Value;
166 int64_t Value, uint64_t Address) {
35 tryAddingPcLoadReferenceComment(raw_ostream &cStream, int64_t Value, uint64_t Address) argument
117 tryAddingSymbolicOperand(MCInst &MI, raw_ostream &cStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
165 tryAddingPcLoadReferenceComment(raw_ostream &cStream, int64_t Value, uint64_t Address) argument
H A DMCPureStreamer.cpp44 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
50 unsigned char Value = 0);
86 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { argument
159 int64_t Value, unsigned ValueSize,
165 insert(new MCAlignFragment(ByteAlignment, Value, ValueSize, MaxBytesToEmit));
188 unsigned char Value) {
189 insert(new MCOrgFragment(*Offset, Value));
158 EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, unsigned ValueSize, unsigned MaxBytesToEmit) argument
187 EmitValueToOffset(const MCExpr *Offset, unsigned char Value) argument
H A DWinCOFFStreamer.cpp65 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
277 void WinCOFFStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { argument
/external/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp211 long long Value; local
212 if (Result.getAsInteger(Radix, Value)) {
219 Value = (long long)UValue;
230 return AsmToken(AsmToken::Integer, Result, Value);
251 long long Value; local
252 if (Result.substr(2).getAsInteger(2, Value))
259 return AsmToken(AsmToken::Integer, Result, Value);
289 long long Value; local
293 if (Result.getAsInteger(Radix, Value))
305 return AsmToken(AsmToken::Integer, Result, Value);
326 long long Value; local
[all...]

Completed in 335 milliseconds

1234567891011>>