Searched defs:value (Results 51 - 75 of 7203) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/evaluation/value/
H A DConvertedLongValue.java21 package proguard.evaluation.value;
24 * This LongValue represents a long value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedLongValue
35 * Creates a new converted long value of the given value.
37 public ConvertedLongValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedShortValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a short value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedShortValue
35 * Creates a new converted short value of the given integer value.
37 public ConvertedShortValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dactions.rb202 def value method
212 { $ds = $digs.map { |t| t.value } };
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DMutableInteger.java35 public int value; field in class:MutableInteger
39 public MutableInteger(int value) { argument
40 this.value = value;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Boolean.java6 public ASN1Boolean(boolean value) argument
8 super(value);
11 ASN1Boolean(byte[] value) argument
13 super(value);
/external/chromium/net/socket/
H A Dtcp_client_socket.cc11 void set_tcp_fastopen_enabled(bool value) { argument
12 g_tcp_fastopen_enabled = value;
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DJNINamespace.java19 public String value(); method in interface:JNINamespace
H A DNativeClassQualifiedName.java24 public String value(); method in interface:NativeClassQualifiedName
/external/chromium_org/base/
H A Dbind_helpers_unittest.cc13 void Increment(int* value) { argument
14 (*value)++;
/external/chromium_org/base/memory/
H A Dsingleton.cc15 // We know value != NULL. It could be kBeingCreatedMarker, or a valid ptr.
19 subtle::AtomicWord value; local
21 value = subtle::NoBarrier_Load(instance);
22 if (value != kBeingCreatedMarker)
26 return value;
/external/chromium_org/chrome/browser/value_store/
H A Dvalue_store_change_unittest.cc22 ValueStoreChange change("key", NULL, Value::CreateStringValue("value"));
27 scoped_ptr<Value> expected(Value::CreateStringValue("value"));
33 ValueStoreChange change("key", Value::CreateStringValue("value"), NULL);
37 scoped_ptr<Value> expected(Value::CreateStringValue("value"));
61 scoped_ptr<DictionaryValue> value = DictionaryBuilder() local
62 .Set("key", "value")
63 .Set("key.with.dots", "value.with.dots")
71 ValueStoreChange("key", value->DeepCopy(), value->DeepCopy()));
73 ValueStoreChange("key.with.dots", value
[all...]
/external/chromium_org/chrome/test/automation/
H A Dvalue_conversion_traits.cc17 bool ValueConversionTraits<int>::SetFromValue(const Value* value, int* t) { argument
18 return value->GetAsInteger(t);
21 bool ValueConversionTraits<int>::CanConvert(const Value* value) { argument
23 return SetFromValue(value, &t);
30 bool ValueConversionTraits<bool>::SetFromValue(const Value* value, bool* t) { argument
31 return value->GetAsBoolean(t);
34 bool ValueConversionTraits<bool>::CanConvert(const Value* value) { argument
36 return SetFromValue(value, &t);
45 const Value* value, std::string* t) {
46 return value
44 SetFromValue( const Value* value, std::string* t) argument
49 CanConvert(const Value* value) argument
58 SetFromValue( const Value* value, Value** t) argument
64 CanConvert(const Value* value) argument
72 SetFromValue(const Value* value, ListValue** t) argument
80 CanConvert(const Value* value) argument
89 SetFromValue( const Value* value, DictionaryValue** t) argument
97 CanConvert(const Value* value) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dcommon.h13 inline PP_Bool BoolToPPBool(bool value) { argument
14 return value ? PP_TRUE : PP_FALSE;
17 inline bool PPBoolToBool(PP_Bool value) { argument
18 return (PP_TRUE == value);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_open.c54 sem_open (const char *name, int oflag, mode_t mode, unsigned int value) argument
/external/chromium_org/remoting/protocol/
H A Dname_value_map.h16 const T value; member in struct:remoting::protocol::NameMapElement
21 const char* ValueToName(const NameMapElement<T> (&map)[N], T value) {
23 if (map[i].value == value)
36 *result = map[i].value;
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DLayoutTestSupport.cpp43 void setIsRunningLayoutTest(bool value) argument
45 s_isRunningLayoutTest = value;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatKeyframe.h31 WebFloatKeyframe(double time, float value) argument
33 , value(value)
38 float value; member in struct:WebKit::WebFloatKeyframe
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmultisample.c37 _mesa_SampleCoverageARB(GLclampf value, GLboolean invert) argument
43 ctx->Multisample.SampleCoverageValue = (GLfloat) CLAMP(value, 0.0, 1.0);
/external/chromium_org/v8/src/
H A Dhydrogen-canonicalize.cc35 // Before removing no-op instructions, save their semantic value.
37 // cannot identify two instructions when their flag value differs.
60 HValue* value = instr->Canonicalize(); local
61 if (value != instr) instr->DeleteAndReplaceWith(value);
/external/clang/test/CodeGen/
H A D2006-07-31-PR854.c5 unsigned long value; member in struct:kernel_symbol
/external/clang/test/FixIt/
H A Dno-macro-fixit.c10 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/
H A Dchain-staticvar-instantiation.cpp16 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;
H A Dcxx-traits.h15 static const bool value = __is_trivially_constructible(T, Args...); member in struct:is_trivially_constructible
/external/jsr305/ri/src/main/java/javax/annotation/concurrent/
H A DGuardedBy.java37 String value(); method in interface:GuardedBy
/external/jsr305/sampleUses/src/main/java/
H A DLuhnVerification.java3 static boolean checkNumber(String value) { argument
6 for (int i = value.length() - 1; i >= 0; i--) {
7 int v = value.charAt(i) - '0';

Completed in 2261 milliseconds

1234567891011>>