HomeSort by relevance Sort by last modified time
    Searched defs:Value (Results 26 - 50 of 2048) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fxcrt/css/
cfx_cssstringvalue.h 14 explicit CFX_CSSStringValue(const WideString& value);
17 const WideString Value() const { return value_; }
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ilistTest.cpp 20 int Value;
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);
  /frameworks/base/media/mca/filterfw/native/core/
value.h 29 void* value; member in struct:__anon45868
32 } Value;
34 // TODO: Probably should make these const Value*?
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /prebuilts/go/darwin-x86/test/
devirt.go 8 value int
11 func (r *real) Value() int { return r.value }
14 Value() int
21 func (i indirectiface) Value() int {
27 rptr := &real{value: 3}
30 if r.Value() != 3 { // ERROR "de-virtualizing call$"
36 if r.Value() != 12 {
  /prebuilts/go/linux-x86/test/
devirt.go 8 value int
11 func (r *real) Value() int { return r.value }
14 Value() int
21 func (i indirectiface) Value() int {
27 rptr := &real{value: 3}
30 if r.Value() != 3 { // ERROR "de-virtualizing call$"
36 if r.Value() != 12 {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSecLibCTA9x4/
CTA9x4Sec.c 125 UINT32 Value;
170 Value = MmioRead32 (ARM_VE_SYS_CFGRW1_REG); //Scc - CFGRW1
172 MmioWrite32 (ARM_VE_SYS_CFGRW1_REG, (Value & 0x0FFFFFFF) | ARM_VE_CFGRW1_REMAP_DRAM);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibMsc.c 57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
65 @return The value read.
74 UINT8 Value;
77 Value = (UINT8)_inp ((UINT16)Port);
79 return Value;
85 Writes the 8-bit I/O port specified by Port with the value specified by Value
86 and returns Value. This function must guarantee that all I/O read and write
92 @param Value The value to write to the I/O port.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/I2CLibPei/
I2CIoLibPei.c 22 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
30 @return The value read.
39 UINT8 Value;
41 Value = *(volatile UINT8*)Address;
42 return Value;
48 Reads the 16-bit MMIO register specified by Address. The 16-bit read value is
57 @return The value read.
66 UINT16 Value;
69 Value = *(volatile UINT16*)Address;
70 return Value;
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
Value.java 33 * An immutable symbolic value for semantic interpretation of bytecode.
37 public interface Value {
40 * Returns the size of this value in words.
  /external/clang/test/CodeGenCXX/
debug-info-union-template.cpp 6 template <typename T> union Value { int a; };
7 void g(float value) {
8 Value<float> tempValue;
10 Value<float> f;
13 // CHECK: !DICompositeType(tag: DW_TAG_union_type, name: "Value<float>",
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
23 SIntMax Value::getSIntValue() const {
44 UIntMax Value::getUIntValue() const {
60 UIntMax Value::getPositiveIntValue() const {
68 /// Get the floating-point value of this object, extended to a long double.
71 FloatMax Value::getFloatValue() const {
79 __fp16 Value;
80 internal_memcpy(&Value, &Val, 4);
81 return Value;
85 float Value;
    [all...]
  /external/flatbuffers/net/FlatBuffers/
Offset.cs 24 public int Value;
25 public Offset(int value)
27 Value = value;
33 public int Value;
34 public StringOffset(int value)
36 Value = value;
42 public int Value;
43 public VectorOffset(int value)
    [all...]
  /external/libunwind/doc/
unw_backtrace.tex 35 \section{Return Value}
38 \Var{buffer}. The return value may be zero to indicate that no addresses were
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolCompiland.cpp 40 std::string Value = Env->getValue();
41 return Value;
  /external/python/cpython2/Lib/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /external/python/cpython3/Lib/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /external/testng/src/main/java/org/testng/mustache/
Value.java 3 public class Value {
6 public Value(Object object) {

Completed in 540 milliseconds

12 3 4 5 6 7 8 91011>>