HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 126 - 150 of 6865) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/test/078-polymorphic-virtual/src/
Base.java 18 int value; field in class:Base
30 return value;
  /bionic/libc/bionic/
setjmp_cookie.cpp 43 long value; local
44 __libc_safe_arc4random_buf(&value, sizeof(value));
47 globals->setjmp_cookie = value & ~1;
52 async_safe_fatal("unexpected sigflag value: %ld", sigflag);
  /cts/common/device-side/nativetesthelper/src/com/android/gtestrunner/
TargetLibrary.java 29 String value(); method in interface:TargetLibrary
  /external/aac/libAACdec/src/
block.h 157 * The SF_OFFSET = 100 value referenced in chapter 4.6.2.3.3 is already
239 * \brief Calculate 2^(lsb/4) * value^(4/3)
240 * \param pValue pointer to quantized value. The inverse quantized result is
243 * factor to the resulting inverse quantized value.
248 FIXP_DBL value; local
252 value = *pValue;
253 freeBits = fNormz(value);
257 UINT x = (((int)value << freeBits) >> 19);
280 * \brief determine the required shift scale for the given quantized value and
281 * scale (factor % 4) value
    [all...]
  /external/antlr/runtime/Ruby/test/functional/parser/
actions.rb 202 def value method
212 { $ds = $digs.map { |t| t.value } };
  /external/antlr/tool/src/main/java/org/antlr/misc/
MutableInteger.java 35 public int value; field in class:MutableInteger
39 public MutableInteger(int value) {
40 this.value = value;
  /external/boringssl/src/crypto/asn1/
a_utf8.c 68 * to the string and the length of the string. It sets 'value' to the value
78 uint32_t value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
93 value = (*p++ & 0x1f) << 6;
94 value |= *p++ & 0x3f;
95 if (value < 0x80)
104 value = (*p++ & 0xf) << 12;
105 value |= (*p++ & 0x3f) << 6
    [all...]
  /external/catch2/projects/SelfTest/UsageTests/
ToStringVariant.tests.cpp 25 type value {};
26 CHECK( "{ }" == ::Catch::Detail::stringify(value) );
27 CHECK( "{ }" == ::Catch::Detail::stringify(std::get<0>(value)) );
46 type value;
47 REQUIRE_THROWS_AS(value.emplace<MyType2>(MyType2{}), int);
48 REQUIRE(value.valueless_by_exception());
49 CHECK("{valueless variant}" == ::Catch::Detail::stringify(value));
69 type value = inner{0.5f}; variable
70 REQUIRE( std::holds_alternative<inner>(value) );
71 REQUIRE( std::holds_alternative<float>(std::get<inner>(value)) );
    [all...]
  /external/clang/test/CodeGen/
2006-07-31-PR854.c 5 unsigned long value; member in struct:kernel_symbol
  /external/clang/test/CodeGenCXX/
ms_struct.cpp 20 int value; member in struct:Derived
33 Derived::Derived() : value(20) {}
  /external/clang/test/FixIt/
no-macro-fixit.c 10 int value; local
12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
  /external/clang/test/PCH/
chain-staticvar-instantiation.cpp 16 static const _Tp value = __v; member in struct:NS::TS
20 const _Tp TS<_Tp, __v>::value; member in class:NS::TS
33 int g2 = NS::TS<int, 2>::value;
42 int g3 = NS::TS<int, 2>::value;
  /external/clang/test/SemaCXX/
windows-arm-valist.cpp 7 struct is_same { enum { value = 0 }; }; enumerator in enum:is_same::__anon18143
10 struct is_same<type_, type_> { enum { value = 1 }; }; enumerator in enum:is_same::__anon18144
15 static_assert(is_same<decltype(va), decltype(cp)>::value,
  /external/compiler-rt/test/asan/TestCases/
initialization-constexpr.cc 18 int value; member in class:Integer
21 constexpr Integer(int x = 0) : value(x) {}
22 int getValue() {return value;}
  /external/deqp/framework/delibs/decpp/
deStringUtil.hpp 38 inline std::string toString (const T& value)
41 s << value; local
  /external/google-fruit/include/fruit/impl/data_structures/
packed_pointer_and_bool.h 32 std::uintptr_t value; member in class:fruit::impl::PackedPointerAndBool
35 static T* decodePointer(std::uintptr_t value);
36 static bool decodeBool(std::uintptr_t value);
  /external/grpc-grpc/src/objective-c/RxLibrary/
GRXWriteable.h 27 /** Push the next value of the sequence to the receiving object. */
28 - (void)writeValue:(id)value;
38 typedef void (^GRXValueHandler)(id value); variable
40 typedef void (^GRXSingleHandler)(id value, NSError *errorOrNil); variable
41 typedef void (^GRXEventHandler)(BOOL done, id value, NSError *error); variable
  /external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
BoolValue.php 21 * The bool value.
23 * Generated from protobuf field <code>bool value = 1;</code>
25 private $value = false; variable
33 * The bool value.
35 * Generated from protobuf field <code>bool value = 1;</code>
40 return $this->value;
44 * The bool value.
46 * Generated from protobuf field <code>bool value = 1;</code>
53 $this->value = $var; variable
  /external/guice/core/src/com/google/inject/
ImplementedBy.java 35 Class<?> value(); method in interface:ImplementedBy
ProvidedBy.java 35 Class<? extends javax.inject.Provider<?>> value(); method in interface:ProvidedBy
  /external/jcommander/src/main/java/com/beust/jcommander/
ResourceBundle.java 37 String value(); method in interface:ResourceBundle
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
GuardedBy.java 37 String value(); method in interface:GuardedBy
  /external/junit/src/main/java/org/junit/runner/
RunWith.java 35 Class<? extends Runner> value(); method in interface:RunWith
  /external/junit/src/main/java/org/junit/validator/
ValidateWith.java 18 Class<? extends AnnotationValidator> value(); method in interface:ValidateWith
  /external/junit-params/src/main/java/junitparams/
FileParameters.java 27 String value(); method in interface:FileParameters
34 * &#064;Parameters annotation value (when passed as String), being CSV.

Completed in 2608 milliseconds

1 2 3 4 56 7 8 91011>>