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

<<11121314151617181920>>

  /art/test/543-env-long-ref/
env_long_ref.cc 43 uint32_t value = 0; local
44 CHECK(GetVReg(m, 1, kReferenceVReg, &value));
45 CHECK_EQ(reinterpret_cast<mirror::Object*>(value),
58 extern "C" JNIEXPORT void JNICALL Java_Main_lookForMyRegisters(JNIEnv*, jclass, jobject value) {
61 TestVisitor visitor(soa, context.get(), value);
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
FieldValue.java 20 * A description and value of a field from a heap dump.
34 * The value of the field.
36 public final Value value; field in class:FieldValue
43 * @param value value of the field
45 public FieldValue(String name, Type type, Value value) {
48 this.value = value;
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedArray.java 49 for (EncodedValue value : values) {
50 value.incrementIndex(kind, insertedIdx);
  /bionic/libc/kernel/uapi/linux/
reiserfs_xattr.h 29 void * value; member in struct:reiserfs_security_handle
  /bionic/linker/
linker_sleb128.h 46 size_t value = 0; local
47 static const size_t size = CHAR_BIT * sizeof(value);
57 value |= (static_cast<size_t>(byte & 127) << shift);
62 value |= -(static_cast<size_t>(1) << shift);
65 return value;
  /cts/tests/tests/net/src/android/net/cts/
IpSecSysctlTest.java 42 int value = getIntValue(SPI_TIMEOUT_SYSCTL); local
43 assertAtLeast(SPI_TIMEOUT_SYSCTL, value, MIN_ACQ_EXPIRES);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput/d/
T_sput_13.java 20 static int value = 5 / 0; field in class:StubInitError
26 StubInitError.value = 12;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_boolean/d/
T_sput_boolean_13.java 20 static boolean value = 5 / 0 > 0 ? true : false; field in class:StubInitError
26 StubInitError.value = true;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_byte/d/
T_sput_byte_13.java 20 static byte value = (byte)(5 / 0); field in class:StubInitError
26 StubInitError.value = 11;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_char/d/
T_sput_char_13.java 20 static char value = (char)(5 / 0); field in class:StubInitError
26 StubInitError.value = 11;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_object/d/
T_sput_object_13.java 21 static Object value; field in class:StubInitError
27 StubInitError.value = this;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_short/d/
T_sput_short_13.java 20 static short value = (short)(5 / 0); field in class:StubInitError
26 StubInitError.value = 11;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sput_wide/d/
T_sput_wide_13.java 20 static long value = (long)(5 / 0); field in class:StubInitError
26 StubInitError.value = 11;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 28 /** {@code non-null;} the annotation default value */
29 private final Constant value; field in class:AttAnnotationDefault
38 * @param value {@code non-null;} the annotation default value
42 public AttAnnotationDefault(Constant value, int byteLength) {
45 if (value == null) {
46 throw new NullPointerException("value == null");
49 this.value = value;
61 * Gets the annotation default value
    [all...]
  /dalvik/dx/tests/083-ssa-phi-placement/
Blort.java 55 int value = 0; local
60 return new Integer(value);
63 return Boolean.valueOf(value != 0);
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
InjectView.java 35 public int value(); method in interface:InjectView
  /device/google/contexthub/firmware/os/inc/
leds_gpio.h 30 uint32_t value; member in struct:LedsCfg
  /device/google/cuttlefish_common/common/vsoc/lib/
input_events_region_view.h 30 uint32_t value; member in struct:vsoc::input_events::InputEvent
48 // Returns the number of events read or a negative value in case of an error
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/hvm/
hvm_op.h 32 UINT64 value; /* IN/OUT */ member in struct:xen_hvm_param
  /external/ImageMagick/MagickCore/
configure.h 32 *value; member in struct:_ConfigureInfo
string-private.h 34 value; local
36 value=InterpretSiPrefixValue(string,&q);
38 value*=interval/100.0;
39 return(value);
55 value; local
57 value=InterpretLocaleValue(string,&q);
59 value*=interval/100.0;
60 return(value);
63 static inline int StringToInteger(const char *magick_restrict value)
65 return((int) strtol(value,(char **) NULL,10))
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
Segment.java 25 private Number value; field in class:Segment
27 public Segment(String title, Number value) {
29 this.setValue(value);
42 return value;
45 public void setValue(Number value) {
46 this.value = value;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
ParametricRealFunction.java 31 * Compute the value of the function.
32 * @param x the point for which the function value should be computed
34 * @return the value
37 double value(double x, double[] parameters) method in interface:ParametricRealFunction
42 * @param x the point for which the function value should be computed
44 * @return the value
  /external/autotest/frontend/client/src/autotest/moblab/rpc/
JsonRpcEntity.java 16 JSONValue value = object.get(field); local
17 if (value != null && value.isString() != null) {
18 return value.isString().stringValue();
25 JSONValue value = object.get(field); local
26 if (value != null && value.isBoolean() != null) {
27 return value.isBoolean().booleanValue();
  /external/boringssl/src/tool/
args.cc 66 fprintf(stderr, "Missing value for required argument: %s\n", templ->name);
90 const std::string &value = it->second; local
91 if (value.empty()) {
96 unsigned long int num = strtoul(value.c_str(), &endptr, 10);

Completed in 1115 milliseconds

<<11121314151617181920>>