HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 276 - 300 of 11796) sorted by null

<<11121314151617181920>>

  /external/libxml2/doc/examples/
reader2.c 28 const xmlChar *name, *value; local
34 value = xmlTextReaderConstValue(reader);
42 if (value == NULL)
45 if (xmlStrlen(value) > 40)
46 printf(" %.40s...\n", value);
48 printf(" %s\n", value);
  /external/ltp/testcases/kernel/fs/acls/
acl_link_test.c 13 char value[1024]; local
32 s = getxattr(argv[1], tok, (void *)value, 1024);
38 s = lsetxattr(argv[1], tok, (void *)value, s, 0);
  /external/ltp/testcases/kernel/syscalls/getitimer/
getitimer03.c 36 * check the errno value
76 struct itimerval *value; local
90 if ((value = malloc((size_t)sizeof(struct itimerval))) ==
92 tst_brkm(TBROK, cleanup, "value malloc failed");
100 /* make the first value negative to get a failure */
101 TEST(getitimer(-ITIMER_PROF, value));
125 free(value);
126 value = NULL;
  /external/ltp/testcases/kernel/syscalls/setitimer/
setitimer02.c 32 * check the errno value
71 struct itimerval *value; local
84 if ((value = malloc((size_t)sizeof(struct itimerval))) ==
86 tst_brkm(TBROK, cleanup, "value malloc failed");
91 value->it_value.tv_sec = 30;
92 value->it_value.tv_usec = 0;
93 value->it_interval.tv_sec = 0;
94 value->it_interval.tv_usec = 0;
101 TEST(setitimer(ITIMER_REAL, value, (struct itimerval *)-1));
124 free(value);
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/
3-1.c 19 pthread_mutex_t mutex; /* Protects access to value */
20 int value; /* Access protected by mutex */ member in struct:my_data
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
3-1.c 20 int value; member in struct:unique
61 if (result == tst->value) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_close/
3-2.c 23 * -> open a semaphore with a value of 2.
24 * -> wait the semaphore (now value = 1)
26 * -> open the semaphore again (with dummy value = 3)
27 * -> check the value is 1.
31 * The test fails if the semaphore value is not 1 after semaphore is reopened.
92 int ret, value; local
111 /* Use the semaphore to change its value. */
135 ret = sem_getvalue(sem, &value);
138 UNRESOLVED(errno, "Failed to get semaphore value");
141 if (value != 1)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigqueue/
12-1.c 61 union sigval value; local
62 value.sival_int = 0; /* 0 is just an arbitrary value */
74 if (-1 == sigqueue(1, 0, value)) {
  /external/mesa3d/src/mesa/main/tests/
enum_strings.cpp 43 int value; member in struct:enum_info
54 _mesa_lookup_enum_by_nr(everything[i].value));
61 EXPECT_EQ(everything[i].value,
72 EXPECT_EQ(alternate_names[i].value,
82 /* Please type the name and the value. This makes it easier to detect
83 * enums with the same value but different names. The current list is
84 * sorted by enum value. Please keep it that way.
507 /* This should be included, but it's value collides with GL_HINT_BIT. The
    [all...]
  /external/messageformat/java/com/ibm/icu/util/
Output.java 16 * The value field
19 public T value; field in class:Output
26 return value == null ? "null" : value.toString();
38 * Constructs an <code>Output</code> withe the given value.
39 * @param value the initial value
42 public Output(T value) {
43 this.value = value;
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/annotations/
Instantiator.java 37 Typology value(); method in interface:Instantiator
  /external/pdfium/xfa/fde/css/
cfde_csscustomproperty.h 15 const CFX_WideString& value);
20 CFX_WideString value() const { return value_; } function in class:CFDE_CSSCustomProperty
  /external/proguard/src/proguard/evaluation/value/
Category1Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
28 public abstract class Category1Value extends Value
30 // Implementations for Value.
Category2Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
28 public abstract class Category2Value extends Value
30 // Implementations for Value.
InitialValueFactory.java 21 package proguard.evaluation.value;
26 * This value factory creates initial values for fields and array elements,
27 * with the help of a given value factory. Note that this class itself doesn't
39 * @param valueFactory the value factory that will actually create the
49 * Creates an initial value (0, 0L, 0.0f, 0.0, null) of the given type.
51 public Value createValue(String type)
  /external/proguard/src/proguard/gui/splash/
ConstantColor.java 32 private final Color value; field in class:ConstantColor
37 * @param value the constant value.
39 public ConstantColor(Color value)
41 this.value = value;
49 return value;
ConstantDouble.java 30 private final double value; field in class:ConstantDouble
35 * @param value the constant value.
37 public ConstantDouble(double value)
39 this.value = value;
47 return value;
ConstantFont.java 32 private final Font value; field in class:ConstantFont
34 public ConstantFont(Font value)
36 this.value = value;
44 return value;
ConstantInt.java 30 private final int value; field in class:ConstantInt
35 * @param value the constant value.
37 public ConstantInt(int value)
39 this.value = value;
47 return value;
ConstantString.java 30 private final String value; field in class:ConstantString
35 * @param value the constant value.
37 public ConstantString(String value)
39 this.value = value;
47 return value;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
Implements.java 16 Class value(); method in interface:Implements
  /external/selinux/libsepol/include/sepol/policydb/
symtab.h 27 * The values start at 1 - 0 is never a valid value.
30 uint32_t value; member in struct:symtab_datum
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
RpcDeprecated.java 33 public String value(); method in interface:RpcDeprecated
RpcMinSdk.java 31 public int value(); method in interface:RpcMinSdk
RpcStartEvent.java 34 public String value(); method in interface:RpcStartEvent

Completed in 423 milliseconds

<<11121314151617181920>>