Searched defs:Value (Results 1 - 25 of 296) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dtypedef.c3 typedef struct { int i; } Value; typedef in typeref:struct:__anon4268
4 typedef Value *PValue;
/external/llvm/unittests/ADT/
H A DTwineTest.cpp18 std::string repr(const Twine &Value) { argument
21 Value.printRepr(OS);
H A DilistTest.cpp20 int Value; member in struct:__anon9843::Node
23 Node(int _Value) : Value(_Value) {}
29 EXPECT_EQ(1, List.back().Value);
34 EXPECT_EQ(2, List.back().Value);
35 EXPECT_EQ(2, List.front().getNextNode()->Value);
36 EXPECT_EQ(1, List.back().getPrevNode()->Value);
39 EXPECT_EQ(2, ConstList.back().Value);
40 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
41 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
H A DSparseSetTest.cpp162 unsigned Value; member in struct:__anon9835::Alt
163 explicit Alt(unsigned x) : Value(x) {}
164 unsigned getSparseSetIndex() const { return Value - 1000; }
175 EXPECT_EQ(1005u, I->Value);
181 EXPECT_EQ(1006u, I->Value);
/external/llvm/unittests/Support/
H A Draw_ostream_test.cpp19 template<typename T> std::string printToString(const T &Value) { argument
21 llvm::raw_string_ostream(res) << Value;
28 template<typename T> std::string printToString(const T &Value, argument
38 OS << Value;
42 template<typename T> std::string printToStringUnbuffered(const T &Value) {
46 OS << Value;
/external/clang/include/clang/Frontend/
H A DTextDiagnosticPrinter.h47 void setPrefix(std::string Value) { Prefix = Value; } argument
/external/clang/include/clang/Basic/
H A DMacroBuilder.h28 /// Append a \#define line for macro of the form "\#define Name Value\n".
29 void defineMacro(const Twine &Name, const Twine &Value = "1") {
30 Out << "#define " << Name << ' ' << Value << '\n'; local
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp3 struct Value { struct
4 constexpr Value(int n) : n(n) {} function in struct:Value
15 void test(Value v) {
19 case Value(2):
26 case Value(2):
35 case Value(2):
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h71 void setShowParsedOperands(bool Value) { ShowParsedOperands = Value; } argument
/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h37 uint64_t Value; // K-V integer value member in struct:llvm::SubtargetFeatureKV
53 const void *Value; // K-V pointer value member in struct:llvm::SubtargetInfoKV
H A DMCAsmBackend.h97 MCValue &Target, uint64_t &Value,
102 /// applyFixup - Apply the \arg Value for given \arg Fixup into the provided
106 uint64_t Value) const = 0;
122 uint64_t Value,
94 processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, MCValue &Target, uint64_t &Value, bool &IsResolved) argument
H A DMCInstPrinter.h61 void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; } argument
/external/llvm/include/llvm/Support/
H A DLEB128.h23 static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { argument
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
38 static inline void encodeULEB128(uint64_t Value, raw_ostream &OS, argument
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7;
43 if (Value != 0 || Padding != 0)
46 } while (Value !
58 encodeULEB128(uint64_t Value, uint8_t *p, unsigned Padding = 0) argument
82 uint64_t Value = 0; local
[all...]
/external/llvm/lib/MC/
H A DMCSymbol.cpp45 const MCExpr *Value = S->getVariableValue(); local
46 if (Value->getKind() != MCExpr::SymbolRef)
48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
54 void MCSymbol::setVariableValue(const MCExpr *Value) { argument
56 assert(Value && "Invalid variable value!");
57 this->Value = Value;
60 const MCSection *Section = Value->FindAssociatedSection();
H A DMCAsmInfo.cpp97 unsigned MCAsmInfo::getULEB128Size(unsigned Value) { argument
100 Value >>= 7;
102 } while (Value);
106 unsigned MCAsmInfo::getSLEB128Size(int Value) { argument
108 int Sign = Value >> (8 * sizeof(Value) - 1);
112 unsigned Byte = Value & 0x7f;
113 Value >>= 7;
114 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCExpr.cpp45 static void AddValueSymbols_(const MCExpr *Value, MCAssembler *Asm) { argument
46 switch (Value->getKind()) {
54 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
61 Asm->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
65 AddValueSymbols_(cast<MCUnaryExpr>(Value)->getSubExpr(), Asm);
/external/v8/src/
H A Dtoken.h188 enum Value { enum in class:v8::internal::Token
196 static const char* Name(Value tok) {
202 static bool IsKeyword(Value tok) {
206 static bool IsAssignmentOp(Value tok) {
210 static bool IsBinaryOp(Value op) {
214 static bool IsCompareOp(Value op) {
218 static bool IsOrderedRelationalCompareOp(Value op) {
222 static bool IsEqualityOp(Value op) {
226 static Value NegateCompareOp(Value o
[all...]
/external/webkit/Source/WebCore/platform/
H A DHashTools.h47 struct Value { struct in namespace:WebCore
55 const Value* findValue(register const char* str, register unsigned int len);
/external/webrtc/src/system_wrappers/source/
H A Datomic32.cc46 // TODO (hellner) operator= and Atomic32Wrapper::Value() can be fully
80 WebRtc_Word32 Atomic32Wrapper::Value() const function in class:webrtc::Atomic32Wrapper
82 return _impl.Value();
/external/clang/lib/Driver/
H A DOption.cpp91 const char *Value = Args.getArgString(Index) + getName().size(); local
92 return new Arg(getUnaliasedOption(), Index++, Value);
106 char *Value = new char[Str - Prev + 1]; local
107 memcpy(Value, Prev, Str - Prev);
108 Value[Str - Prev] = '\0';
109 A->getValues().push_back(Value);
154 const char *Value = Args.getArgString(Index) + getName().size(); local
155 return new Arg(this, Index++, Value);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
H A Dp1-cxx11.cpp5 struct Value { struct
10 Value v;
16 Value v;
23 Value v;
H A Dp1.cpp25 struct Value { struct
27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}}
30 Value v;
36 Value v;
39 v.set<double>(3.2); // expected-warning{{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}}
43 Value v;
/external/llvm/include/llvm/ADT/
H A DInMemoryStruct.h43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} argument
44 InMemoryStruct(pointer Value) : Target(Value) {} argument
45 InMemoryStruct(const InMemoryStruct<T> &Value) { *this = Value; } argument
47 void operator=(const InMemoryStruct<T> &Value) { argument
48 if (Value.Target != &Value.Contents) {
49 Target = Value
[all...]
H A DPointerIntPair.h42 intptr_t Value; member in class:llvm::PointerIntPair
59 PointerIntPair() : Value(0) {}
60 PointerIntPair(PointerTy Ptr, IntType Int) : Value(0) {
69 reinterpret_cast<void*>(Value & PointerBitMask));
73 return (IntType)((Value >> IntShift) & IntMask);
82 Value = PtrVal | (Value & ~PointerBitMask);
90 Value &= ~ShiftedIntMask; // Remove integer field.
91 Value |= IntVal << IntShift; // Set new integer.
99 assert(Value
[all...]
H A DStringSwitch.h55 StringSwitch& Case(const char (&S)[N], const T& Value) { argument
58 Result = &Value;
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { argument
68 Result = &Value;
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { argument
78 Result = &Value;
86 const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
92 const char (&S2)[N2], const T& Value) {
85 Cases(const char (&S0)[N0], const char (&S1)[N1], const T& Value) argument
91 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T& Value) argument
97 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
[all...]

Completed in 487 milliseconds

1234567891011>>