HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 251 - 275 of 13125) sorted by null

<<11121314151617181920>>

  /art/runtime/
method_handles-inl.h 38 JValue* value) REQUIRES_SHARED(Locks::mutator_lock_) {
43 // |value| may contain a bare heap pointer which is generally
44 // |unsafe. ConvertJValueCommon() saves |value|, |from_class|, and
47 if (ConvertJValueCommon(callsite_type, callee_type, from_class, to_class, value)) {
52 value->SetJ(0);
60 JValue* value) REQUIRES_SHARED(Locks::mutator_lock_) {
65 value);
70 JValue* value) REQUIRES_SHARED(Locks::mutator_lock_) {
77 // |value| may contain a bare heap pointer which is generally
78 // unsafe. ConvertJValueCommon() saves |value|, |from_class|, an
119 JValue value; local
    [all...]
  /art/tools/amm/AmmTest/src/com/android/amm/test/
SoCodeUse.java 20 private int value; field in class:SoCodeUse
26 value = nGetANumber();
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedArrayItem.java 22 public EncodedArray value; field in class:EncodedArrayItem
27 (value = new EncodedArray()).read(file);
33 value.write(file);
OpcodeInfo.java 29 public final int value; field in class:OpcodeInfo
38 this.value = opcodeValue;
  /development/apps/Development/src/com/android/development/
ColumnData.java 26 value = v;
29 public String value; field in class:ColumnData
  /external/annotation-tools/asmx/test/conform/annotations/
ValueAttrAnnotation.class 
ValueAttrAnnotation1.class 
ValueAttrAnnotation2.class 
  /external/annotation-tools/scene-lib/test/annotations/tests/classfile/foo/
B.java 8 String value(); method in interface:B
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
BivariateRealFunction.java 30 * Compute the value for the function.
32 * @param x Abscissa for which the function value should be computed.
33 * @param y Ordinate for which the function value should be computed.
34 * @return the value.
37 double value(double x, double y) method in interface:BivariateRealFunction
MultivariateMatrixFunction.java 31 * Compute the value for the function at the given point.
33 * @return function value for the given point
37 double[][] value(double[] point) method in interface:MultivariateMatrixFunction
MultivariateRealFunction.java 30 * Compute the value for the function at the given point.
32 * @return function value for the given point
36 double value(double[] point) method in interface:MultivariateRealFunction
MultivariateVectorialFunction.java 30 * Compute the value for the function at the given point.
32 * @return function value for the given point
36 double[] value(double[] point) method in interface:MultivariateVectorialFunction
TrivariateRealFunction.java 30 * Compute the value for the function.
32 * @param x x-coordinate for which the function value should be computed.
33 * @param y y-coordinate for which the function value should be computed.
34 * @param z z-coordinate for which the function value should be computed.
35 * @return the value.
38 double value(double x, double y, double z) method in interface:TrivariateRealFunction
UnivariateMatrixFunction.java 30 * Compute the value for the function.
31 * @param x the point for which the function value should be computed
32 * @return the value
35 double[][] value(double x) throws FunctionEvaluationException; method in interface:UnivariateMatrixFunction
UnivariateRealFunction.java 29 * Compute the value for the function.
30 * @param x the point for which the function value should be computed
31 * @return the value
34 double value(double x) throws FunctionEvaluationException; method in interface:UnivariateRealFunction
UnivariateVectorialFunction.java 30 * Compute the value for the function.
31 * @param x the point for which the function value should be computed
32 * @return the value
35 double[] value(double x) throws FunctionEvaluationException; method in interface:UnivariateVectorialFunction
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/
SupportedPlatform.java 33 Platform.Type[] value(); method in interface:SupportedPlatform
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
reference.py 51 def value(self): member in class:Reference
52 return ''.join(token_snippet.value
56 @value.setter
57 def value(self, value): member in class:Reference
58 value_parts = value.split('.')
68 child.children[-1].value = value_part
  /external/clang/test/Analysis/
comparison-implicit-casts.cpp 9 // constrained, it should cast the value to the result type in a binary
27 // Create a value that requires more bits to store than a comparison result.
28 int value = 1; local
29 value <<= 8 * comparisonSize;
30 value += 1;
32 // Constrain the value of x.
33 if (x != value) return;
52 // Constrain the value of x.
59 // Construct a value that cannot be represented by 'char',
61 signed int value = 1 + (1 << 8) local
82 size_t value = 1UL; local
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p4-cxx0x.cpp 5 static const bool value = false; member in struct:is_same
10 static const bool value = true; member in struct:is_same
18 static_assert(is_same<decltype(foo()), const int&&>::value, "");
19 static_assert(is_same<decltype(i), int>::value, "");
20 static_assert(is_same<decltype(a->x), double>::value, ""); variable
21 static_assert(is_same<decltype((a->x)), const double&>::value, ""); variable
22 static_assert(is_same<decltype(static_cast<int&&>(i)), int&&>::value, "");
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p14.cpp 7 static const bool value = false; member in struct:is_same
11 static const bool value = true; member in struct:is_same
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p9.cpp 7 static const bool value = 0; member in struct:X
12 static const bool value = 1; member in struct:X
15 int check0[X<1, 2>::value == 0? 1 : -1];
16 int check1[X<1, 1>::value == 1? 1 : -1];
19 static const unsigned value = 0; member in struct:int_values
24 static const unsigned value = 1; member in struct:int_values
27 int check2[int_values<256, 12, 3>::value == 0? 1 : -1];
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
p1.cpp 15 static T value; member in struct:A
20 template<class X> X A<X*, 2>::value; member in class:A
22 template<class X> A<X*, 2>::A(X) { value = 0; }
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p4.cpp 12 static T value; // expected-note{{here}} member in struct:X0
17 template int X0<int>::value; // expected-error{{explicit instantiation of undefined static data member}} member in class:X0
28 template<> long X0<long>::value; // expected-note{{previous template specialization is here}} member in class:X0
29 template long X0<long>::value; // expected-warning{{explicit instantiation of 'value' that occurs after an explicit specialization will be ignored}} member in class:X0

Completed in 311 milliseconds

<<11121314151617181920>>