Searched defs:Value (Results 26 - 50 of 799) sorted by relevance

1234567891011>>

/external/clang/lib/Basic/
H A DSanitizers.cpp20 SanitizerMask clang::parseSanitizerValue(StringRef Value, bool AllowGroups) { argument
21 SanitizerMask ParsedKind = llvm::StringSwitch<SanitizerMask>(Value)
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp21 VariantValue Value = kUnsigned; local
23 EXPECT_TRUE(Value.isUnsigned());
24 EXPECT_EQ(kUnsigned, Value.getUnsigned());
26 EXPECT_TRUE(Value.hasValue());
27 EXPECT_FALSE(Value.isString());
28 EXPECT_FALSE(Value.isMatcher());
33 VariantValue Value = kString; local
35 EXPECT_TRUE(Value.isString());
36 EXPECT_EQ(kString, Value.getString());
37 EXPECT_EQ("String", Value
45 VariantValue Value = VariantMatcher::SingleMatcher(stmt()); local
74 VariantValue Value = StringRef("A"); local
107 VariantValue Value; local
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeMeta.hpp47 Value = !Cond enumerator in enum:de::meta::Not::__anon4188
56 Value = false enumerator in enum:de::meta::TypesSame::__anon4189
65 Value = true enumerator in enum:de::meta::TypesSame::__anon4190
/external/libunwind/doc/
H A Dunw_init_local.tex46 \section{Return Value}
H A Dunw_init_remote.tex41 \section{Return Value}
H A Dunw_resume.tex61 \section{Return Value}
H A Dunw_strerror.tex22 \section{Return Value}
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecordBuilder.h31 void writeUInt8(uint8_t Value);
32 void writeInt16(int16_t Value);
33 void writeUInt16(uint16_t Value);
34 void writeInt32(int32_t Value);
35 void writeUInt32(uint32_t Value);
36 void writeInt64(int64_t Value);
37 void writeUInt64(uint64_t Value);
40 void writeEncodedInteger(int64_t Value);
41 void writeEncodedSignedInteger(int64_t Value);
42 void writeEncodedUnsignedInteger(uint64_t Value);
45 void writeBytes(StringRef Value) { Stream << Value; } local
[all...]
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolCompiland.cpp40 std::string Value = Env->getValue(); local
41 return Value;
/external/llvm/lib/Support/
H A DLEB128.cpp20 unsigned getULEB128Size(uint64_t Value) { argument
23 Value >>= 7;
25 } while (Value);
30 unsigned getSLEB128Size(int64_t Value) { argument
32 int Sign = Value >> (8 * sizeof(Value) - 1);
36 unsigned Byte = Value & 0x7f;
37 Value >>= 7;
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCAsmInfo.cpp76 void ARMELFMCAsmInfo::setUseIntegratedAssembler(bool Value) { argument
77 UseIntegratedAssembler = Value;
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIFlagsSection.cpp34 StringRef MipsABIFlagsSection::getFpABIString(FpABIKind Value) { argument
35 switch (Value) {
H A DMipsOptionRecord.cpp70 unsigned Value = 0; local
77 Value |= 1 << EncVal;
81 ri_gprmask |= Value;
83 ri_cprmask[0] |= Value;
89 ri_cprmask[1] |= Value;
91 ri_cprmask[2] |= Value;
93 ri_cprmask[3] |= Value;
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParserCommon.h17 inline bool isImmSExti16i8Value(uint64_t Value) { argument
18 return isInt<8>(Value) ||
19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
22 inline bool isImmSExti32i8Value(uint64_t Value) { argument
23 return isInt<8>(Value) ||
24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
27 inline bool isImmSExti64i8Value(uint64_t Value) { argument
28 return isInt<8>(Value);
31 isImmSExti64i32Value(uint64_t Value) argument
35 isImmUnsignedi8Value(uint64_t Value) argument
[all...]
/external/llvm/unittests/ADT/
H A DilistTest.cpp21 int Value; member in struct:__anon13727::Node
24 Node(int Value) : Value(Value) {} argument
26 ~Node() { Value = -1; }
32 EXPECT_EQ(1, List.back().Value);
37 EXPECT_EQ(2, List.back().Value);
38 EXPECT_EQ(2, List.getNextNode(List.front())->Value);
39 EXPECT_EQ(1, List.getPrevNode(List.back())->Value);
42 EXPECT_EQ(2, ConstList.back().Value);
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DComboDialog.h21 UString Value; member in class:CComboDialog
/external/nanopb-c/generator/google/protobuf/internal/
H A Denum_type_wrapper.py58 def Value(self, name): member in class:EnumTypeWrapper
/external/protobuf/python/google/protobuf/internal/
H A Denum_type_wrapper.py58 def Value(self, name): member in class:EnumTypeWrapper
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_array_in_pointer.py13 class Value(Structure): class in inherits:Structure
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
/external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
H A DMCAsmParser.h66 void setShowParsedOperands(bool Value) { ShowParsedOperands = Value; } argument
/external/caliper/caliper/src/main/java/com/google/caliper/model/
H A DValue.java30 public class Value implements Serializable { class in inherits:Serializable
33 static final Value DEFAULT = new Value();
35 public static Value create(double value, String unit) {
36 return new Value(value, checkNotNull(unit));
44 private Value() { method in class:Value
49 private Value(double value, String unit) { method in class:Value
65 } else if (obj instanceof Value) {
66 Value that = (Value) ob
[all...]
/external/caliper/examples/src/main/java/examples/
H A DDoubleToStringBenchmark2.java28 enum Value { enum in class:DoubleToStringBenchmark2
36 Value(double d) { method in class:DoubleToStringBenchmark2.Value
41 @Param Value value;
/external/clang/include/clang/Basic/
H A DMacroBuilder.h29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") {
31 Out << "#define " << Name << ' ' << Value << '\n'; local
H A DSanitizers.h59 void set(SanitizerMask K, bool Value) { argument
61 Mask = Value ? (Mask | K) : (Mask & ~K);
75 /// Returns a non-zero SanitizerMask, or \c 0 if \p Value is not known.
76 SanitizerMask parseSanitizerValue(StringRef Value, bool AllowGroups);
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp4 struct Value { struct
5 constexpr Value(int n) : n(n) {} function in struct:Value
16 void test(Value v) {
20 case Value(2):
27 case Value(2):
36 case Value(2):

Completed in 625 milliseconds

1234567891011>>