Searched defs:value (Results 251 - 275 of 7904) sorted by relevance

<<11121314151617181920>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/value/
H A DEncodedValue.java32 package org.jf.dexlib2.iface.value;
35 * This class represents a generic encoded value.
37 * It acts as the base interface for each specific type of encoded value.
41 * Returns the type of this encoded value.
45 * @return The type of this encoded value
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.iface.value.EncodedValue;
H A DImmutableNullEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseNullEncodedValue;
H A DImmutableBooleanEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseBooleanEncodedValue;
35 import org.jf.dexlib2.iface.value.BooleanEncodedValue;
41 protected final boolean value; field in class:ImmutableBooleanEncodedValue
43 private ImmutableBooleanEncodedValue(boolean value) { argument
44 this.value = value;
47 public static ImmutableBooleanEncodedValue forBoolean(boolean value) { argument
48 return value?TRUE_VALUE:FALSE_VALUE;
55 @Override public boolean getValue() { return value; }
[all...]
/external/srec/shared/include/
H A DLStringImpl.h39 * Underlying string value.
41 LCHAR* value; member in struct:LStringImpl_t
53 ESR_SHARED_API ESR_ReturnCode LString_Append(LString* self, const LCHAR* value);
/external/srec/shared/src/
H A DCommandLine.c23 LCHAR* key, LCHAR* value, size_t* len)
31 /* got value */
47 LSTRCPY(value, *argv);
58 LSTRCPY(value, L(""));
65 /* Handle case where last argument is a key with no value */
69 LSTRCPY(value, L(""));
22 ESR_CommandLineGetValue(int argc, const LCHAR * argv[], LCHAR* key, LCHAR* value, size_t* len) argument
/external/srec/srec/Nametag/include/
H A DSR_NametagImpl.h42 * Nametag phoneme value.
44 LCHAR* value; member in struct:SR_NametagImpl_t
H A DSR_NametagsImpl.h44 HashMap* value; member in struct:SR_NametagsImpl_t
/external/valgrind/main/none/tests/s390x/
H A Dtm.c26 void check_cc(int value, int cc) argument
28 if (cc != value) {
30 if (value == 0) printf("expected 0 ");
31 if (value == 1) printf("expected 1 ");
32 if (value == 2) printf("expected 2 ");
33 if (value == 3) printf("expected 3 ");
48 /* test #1: value is zero */
H A Dtmll.c26 void check_cc(int value, int cc) argument
28 if (cc != value) {
30 if (value == 0) printf("expected 0 ");
31 if (value == 1) printf("expected 1 ");
32 if (value == 2) printf("expected 2 ");
33 if (value == 3) printf("expected 3 ");
48 /* test #1: value is zero, all bits selected */
53 /* test #2: value is all-ones, mask is zero */
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicCommentHandler.java48 public void parse(final SetCookie cookie, final String value) argument
53 cookie.setComment(value);
H A DBasicExpiresHandler.java55 public void parse(final SetCookie cookie, final String value) argument
60 if (value == null) {
61 throw new MalformedCookieException("Missing value for expires attribute");
64 cookie.setExpiryDate(DateUtils.parseDate(value, this.datepatterns));
67 + value);
H A DBasicMaxAgeHandler.java50 public void parse(final SetCookie cookie, final String value) argument
55 if (value == null) {
56 throw new MalformedCookieException("Missing value for max-age attribute");
60 age = Integer.parseInt(value);
63 + value);
67 + value);
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_shift.c28 uint8_t value = 0; local
34 value |= digitalRead(dataPin) << i;
36 value |= digitalRead(dataPin) << (7 - i);
39 return value;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509DefaultEntryConverter.java14 * string value to ASN.1 strings.
20 * Apply default coversion for the given value depending on the oid
21 * and the character range of the value.
24 * @param value the value associated with it
25 * @return the ASN.1 equivalent for the string value.
29 String value)
31 if (value.length() != 0 && value.charAt(0) == '#')
35 return convertHexEncoded(value,
27 getConvertedValue( ASN1ObjectIdentifier oid, String value) argument
[all...]
/external/chromium_org/ash/
H A Ddebug.cc18 scoped_ptr<bool> value; local
23 if (!value.get())
24 value.reset(new bool(!state.show_debug_borders));
25 state.show_debug_borders = *value.get();
33 scoped_ptr<bool> value; local
38 if (!value.get())
39 value.reset(new bool(!state.show_fps_counter));
40 state.show_fps_counter = *value.get();
48 scoped_ptr<bool> value; local
53 if (!value
[all...]
/external/chromium_org/base/
H A Dbits.h21 uint32 value = n; local
24 uint32 x = value >> shift;
26 value = x;
30 DCHECK_EQ(value, 1u);
H A Dcallback_helpers_unittest.cc13 void Increment(int* value) { argument
14 (*value)++;
H A Dsys_info_internal.h22 T value() { return value_; } function in class:base::internal::LazySysInfoValue
/external/chromium_org/base/prefs/
H A Dmock_pref_change_callback.cc21 const base::Value* value) {
23 .With(PrefValueMatches(prefs_, pref_name, value));
20 Expect(const std::string& pref_name, const base::Value* value) argument
/external/chromium_org/base/test/
H A Dperf_log.cc34 void LogPerfResult(const char* test_name, double value, const char* units) { argument
40 fprintf(perf_log_file, "%s\t%g\t%s\n", test_name, value, units);
41 printf("%s\t%g\t%s\n", test_name, value, units);
/external/chromium_org/base/threading/
H A Dthread_local_android.cc29 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
30 slot.Set(value);
H A Dthread_local_posix.cc34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
35 int error = pthread_setspecific(slot, value);
H A Dthread_local_storage_posix.cc27 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) { argument
28 int ret = pthread_setspecific(key, value);
H A Dthread_local_win.cc33 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
34 if (!TlsSetValue(slot, value)) {

Completed in 4048 milliseconds

<<11121314151617181920>>