Searched defs:Value (Results 101 - 125 of 527) sorted by relevance

1234567891011>>

/external/llvm/lib/Object/
H A DELFYAML.cpp25 ELFYAML::ELF_ET &Value) {
26 #define ECase(X) IO.enumCase(Value, #X, ELF::X);
37 ELFYAML::ELF_EM &Value) {
38 #define ECase(X) IO.enumCase(Value, #X, ELF::X);
198 IO &IO, ELFYAML::ELF_ELFCLASS &Value) {
199 #define ECase(X) IO.enumCase(Value, #X, ELF::X);
208 IO &IO, ELFYAML::ELF_ELFDATA &Value) {
209 #define ECase(X) IO.enumCase(Value, #X, ELF::X);
218 IO &IO, ELFYAML::ELF_ELFOSABI &Value) {
219 #define ECase(X) IO.enumCase(Value, #
24 enumeration(IO &IO, ELFYAML::ELF_ET &Value) argument
36 enumeration(IO &IO, ELFYAML::ELF_EM &Value) argument
197 enumeration( IO &IO, ELFYAML::ELF_ELFCLASS &Value) argument
207 enumeration( IO &IO, ELFYAML::ELF_ELFDATA &Value) argument
217 enumeration( IO &IO, ELFYAML::ELF_ELFOSABI &Value) argument
244 bitset(IO &IO, ELFYAML::ELF_EF &Value) argument
299 enumeration( IO &IO, ELFYAML::ELF_SHT &Value) argument
340 bitset(IO &IO, ELFYAML::ELF_SHF &Value) argument
357 enumeration( IO &IO, ELFYAML::ELF_STT &Value) argument
371 enumeration( IO &IO, ELFYAML::ELF_STV &Value) argument
381 enumeration( IO &IO, ELFYAML::ELF_REL &Value) argument
[all...]
H A DRecordStreamer.cpp80 void RecordStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) { argument
82 MCStreamer::EmitAssignment(Symbol, Value);
/external/llvm/lib/Option/
H A DOption.cpp134 const char *Value = Args.getArgString(Index) + ArgSize; local
135 return new Arg(UnaliasedOption, Spelling, Index++, Value);
149 char *Value = new char[Str - Prev + 1]; local
150 memcpy(Value, Prev, Str - Prev);
151 Value[Str - Prev] = '\0';
152 A->getValues().push_back(Value);
197 const char *Value = Args.getArgString(Index) + ArgSize; local
198 return new Arg(*this, Spelling, Index++, Value);
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp45 /// operand in place of the immediate Value in the MCInst. The immediate
46 /// Value has not had any PC adjustment made by the caller. If the instruction
47 /// is a branch that adds the PC to the immediate Value then isBranch is
53 /// Address + Value is done and if a symbol is found an MCExpr is created with
54 /// that, else an MCExpr with Address + Value is created. If GetOpInfo()
61 MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address,
70 SymbolicOp.Value = Value;
77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType,
82 SymbolicOp.Value
60 tryAddingSymbolicOperand( MCInst &MI, raw_ostream &CommentStream, int64_t Value, uint64_t Address, bool IsBranch, uint64_t Offset, uint64_t InstSize) argument
[all...]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp96 void EmitValueImpl(const MCExpr *Value, unsigned Size,
99 MCELFStreamer::EmitValueImpl(Value, Size);
136 const MCExpr *Value = MCSymbolRefExpr::Create(Start, getContext()); local
137 Symbol->setVariableValue(Value);
/external/llvm/lib/Target/Mips/
H A DMipsTargetStreamer.h60 virtual void emitDirectiveModuleFP(MipsABIFlagsSection::FpABIKind Value, argument
62 ABIFlagsSection.setFpABI(Value, Is32BitABI);
73 virtual void emitDirectiveSetFp(MipsABIFlagsSection::FpABIKind Value){}; argument
135 void emitDirectiveModuleFP(MipsABIFlagsSection::FpABIKind Value,
138 void emitDirectiveSetFp(MipsABIFlagsSection::FpABIKind Value) override;
154 void emitAssignment(MCSymbol *Symbol, const MCExpr *Value) override;
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp25 static uint64_t adjustFixupValue(unsigned Kind, uint64_t Value) { argument
34 return Value;
37 return Value & 0xfffc;
40 return Value & 0x3fffffc;
42 return Value & 0xffff;
44 return Value & 0xfffc;
115 uint64_t Value, bool IsPCRel) const override {
116 Value = adjustFixupValue(Fixup.getKind(), Value);
117 if (!Value) retur
[all...]
/external/llvm/lib/Target/SystemZ/InstPrinter/
H A DSystemZInstPrinter.cpp56 int64_t Value = MI->getOperand(OpNum).getImm(); local
57 assert(isUInt<4>(Value) && "Invalid u4imm argument");
58 O << Value; local
63 int64_t Value = MI->getOperand(OpNum).getImm(); local
64 assert(isUInt<6>(Value) && "Invalid u6imm argument");
65 O << Value; local
70 int64_t Value = MI->getOperand(OpNum).getImm(); local
71 assert(isInt<8>(Value) && "Invalid s8imm argument");
72 O << Value; local
77 int64_t Value local
79 O << Value; local
84 int64_t Value = MI->getOperand(OpNum).getImm(); local
86 O << Value; local
91 int64_t Value = MI->getOperand(OpNum).getImm(); local
93 O << Value; local
98 int64_t Value = MI->getOperand(OpNum).getImm(); local
100 O << Value; local
105 int64_t Value = MI->getOperand(OpNum).getImm(); local
107 O << Value; local
112 uint64_t Value = MI->getOperand(OpNum).getImm(); local
[all...]
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp20 // Value is a fully-resolved relocation value: Symbol + Addend [- Pivot].
23 static uint64_t extractBitsForFixup(MCFixupKind Kind, uint64_t Value) { argument
25 return Value;
32 return (int64_t)Value / 2;
51 uint64_t Value, bool IsPCRel) const override;
55 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
88 unsigned DataSize, uint64_t Value,
97 Value = extractBitsForFixup(Kind, Value);
100 Data[Offset + I] |= uint8_t(Value >> ShiftValu
87 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
[all...]
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp137 StringRef Value = Str.substr(0, Next); local
141 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
143 SM.PrintMessage(SMLoc::getFromPointer(Value.data()), SourceMgr::DK_Error,
150 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
/external/llvm/unittests/Analysis/
H A DMixedTBAATest.cpp41 auto *Value = ConstantInt::get(IntType, 42); local
44 auto *Store1 = new StoreInst(Value, Addr, BB);
45 auto *Store2 = new StoreInst(Value, Addr, BB);
/external/chromium_org/net/cookies/
H A Dcanonical_cookie.h75 const std::string& Value() const { return value_; } function in class:net::CanonicalCookie
H A Dparsed_cookie.h24 // The maximum number of Token/Value pairs. Shouldn't have more than 8.
39 const std::string& Value() const { return pairs_[0].second; } function in class:net::ParsedCookie
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueMap.h59 static v8::PersistentContainerValue Value(Iterator& iter) function in class:blink::V8PersistentValueMapTraits
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dtote.h29 int Value(int i) const {return value_[i];} function in class:Tote
67 int Value(int i) const {return value_[i];} function in class:ToteWithReliability
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp49 uint64_t Value) const { assert(!"Not implemented"); }
50 virtual bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, argument
/external/chromium_org/tools/telemetry/telemetry/value/
H A D__init__.py5 The Value hierarchy provides a way of representing the values measurements
9 The core Value concept provides the basic functionality:
20 together, then compute summary statistics across runs. Value provides the
34 # When converting a Value to its buildbot equivalent, the context in which the
42 class Value(object): class in inherits:object
46 """A generic Value object.
79 It must return a single Value. If merging does not make sense, the
206 Value dicts are produced by serialization to JSON, and must be accompanied
214 return Value.ListOfValuesFromListOfDicts([value_dict], page_dict)[0]
231 Value, index_by_class_nam
[all...]
/external/chromium_org/v8/src/compiler/
H A Dopcodes.h245 enum Value { enum in class:v8::internal::compiler::IrOpcode
256 static const char* Mnemonic(Value val) {
268 static bool IsJsOpcode(Value val) {
280 static bool IsControlOpcode(Value val) {
292 static bool IsCommonOpcode(Value val) {
/external/chromium_org/v8/src/
H A Dsplay-tree.h18 // typedef Value: the value type
20 // static Value kNoValue(): the dummy value used to initialize nodes
34 typedef typename Config::Value Value; typedef in class:v8::internal::SplayTree
102 Node(const Key& key, const Value& value)
121 Value value() { return value_; }
129 Value value_;
141 Value& value() { return node_->value_; }
142 void set_value(const Value& value) { node_->value_ = value; }
/external/clang/include/clang/AST/
H A DASTConsumer.h105 llvm::StringRef Value) {}
104 HandleDetectMismatch(llvm::StringRef Name, llvm::StringRef Value) argument
H A DGlobalDecl.h29 llvm::PointerIntPair<const Decl*, 2> Value; member in class:clang::GlobalDecl
35 Value.setPointer(D);
48 : Value(D, Type) {}
50 : Value(D, Type) {}
54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
55 CanonGD.Value.setInt(Value.getInt());
60 const Decl *getDecl() const { return Value.getPointer(); }
64 return static_cast<CXXCtorType>(Value
[all...]
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h95 bool isNull() const { return !Value; }
115 if (Value) Value->makeTypedMatcher(Ops);
126 Value->makeTypedMatcher(Ops);
138 explicit VariantMatcher(Payload *Value) : Value(Value) {} argument
184 IntrusiveRefCntPtr<const Payload> Value; member in class:clang::ast_matchers::dynamic::VariantMatcher
253 AllValues Value; member in class:clang::ast_matchers::dynamic::VariantValue
/external/clang/include/clang/Frontend/
H A DFrontendAction.h119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } argument
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp121 int Value; member in struct:__anon18098
176 << CategoryState.Value << LoopHintAttr::getOptionName(Option)
180 CategoryState.Value = ValueInt;
192 << CategoryState.Value;
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DValue.java30 public abstract class Value { class
32 private static final Map<EscapeMode, Value> EMPTY_PART_ESCAPED;
33 private static final Map<EscapeMode, Value> EMPTY_UNESCAPED;
34 private static final Map<EscapeMode, Value> ZERO_PART_ESCAPED;
35 private static final Map<EscapeMode, Value> ZERO_UNESCAPED;
36 private static final Map<EscapeMode, Value> ONE_PART_ESCAPED;
37 private static final Map<EscapeMode, Value> ONE_UNESCAPED;
40 // Currently a Value's EscapeMode is either ESCAPE_NONE (no escaping) or
44 EMPTY_PART_ESCAPED = new HashMap<EscapeMode, Value>(2);
50 EMPTY_UNESCAPED = new HashMap<EscapeMode, Value>(
83 public Value(EscapeMode escapeMode, boolean partiallyEscaped) { method in class:Value
[all...]

Completed in 7860 milliseconds

1234567891011>>