Searched refs:value (Results 201 - 225 of 13868) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dlookup-member.cpp12 union value { union
/external/emma/core/java12/com/vladium/jcd/lib/
H A DUDataInputStream.java38 final short value = readShort ();
40 return ((int) value) & 0xFFFF; // widening cast sign-extends
46 final int value = readInt ();
48 return ((long) value) & 0xFFFFFFFFL; // widening cast sign-extends
/external/emma/core/java12/com/vladium/util/
H A DIntegerFactory.java22 public static Integer getInteger (final int value) argument
26 final Object _result = s_values.get (value);
30 final Integer result = new Integer (value);
31 s_values.put (value, result);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/modulator/
H A DModulator.java34 public float value(float... in); method in interface:Modulator
/external/lzma/CPP/7zip/Common/
H A DMethodId.cpp8 static inline wchar_t GetHex(Byte value) argument
10 return (wchar_t)((value < 10) ? ('0' + value) : ('A' + (value - 10)));
/external/oprofile/libutil++/
H A Dcached_value.h3 * Hold a cached value.
17 * Hold a single value, returning a cached value if there is one.
27 /// return the cached value
30 throw op_fatal_error("cached value not set");
31 return value;
34 /// return true if a value is cached
37 /// set the contained value
39 value = val;
41 return value;
46 value_type value; member in class:cached_value
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DCategory1Value.java21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
H A DCategory2Value.java21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java59 float value = 0;
62 value = flip.parentWidth - maxX;
64 value = getMinX();
66 return value;
70 float value = 0;
73 value = flip.parentWidth - minX;
75 value = getMaxX();
77 return value;
81 float value = 0;
84 value
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDatabaseUtils.java13 Object value) {
14 if (value == null) {
16 } else if (value instanceof Double || value instanceof Float) {
17 prog.bindDouble(index, ((Number) value).doubleValue());
18 } else if (value instanceof Number) {
19 prog.bindLong(index, ((Number) value).longValue());
20 } else if (value instanceof Boolean) {
21 Boolean bool = (Boolean) value;
27 } else if (value instanceo
12 bindObjectToProgram(SQLiteProgram prog, int index, Object value) argument
[all...]
/external/skia/src/opts/
H A DSkUtils_opts_SSE2.h12 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
13 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-72736.js30 // This tests that Object.defineProperty actually allows to change the value of
34 Object.defineProperty(obj, 'foo', { value: 10, configurable: true });
36 Object.defineProperty(obj, 'foo', { value: 20, configurable: true });
/external/valgrind/main/drd/tests/
H A Dtc08_hbl2.stdout.exp1 child: new value 6
2 child: new value 10
/external/valgrind/main/helgrind/tests/
H A Dtc08_hbl2.stdout.exp1 child: new value 6
2 child: new value 10
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptValue.h63 ScriptValue(v8::Handle<v8::Value> value) argument
64 : m_value(value.IsEmpty() ? 0 : SharedPersistent<v8::Value>::create(value))
68 ScriptValue(const ScriptValue& value) argument
69 : m_value(value.m_value)
76 ScriptValue& operator=(const ScriptValue& value) argument
78 if (this != &value)
79 m_value = value.m_value;
83 bool operator==(const ScriptValue& value) const
86 return value
102 v8::Handle<v8::Value> value = v8Value(); local
116 v8::Handle<v8::Value> value = v8Value(); local
125 v8::Handle<v8::Value> value = v8Value(); local
134 v8::Handle<v8::Value> value = v8Value(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DAnimatedStyleBuilder.cpp45 Length animatableValueToLength(const AnimatableValue* value, const StyleResolverState& state) argument
48 return toAnimatableNumber(value)->toLength(style, state.rootElementStyle(), style->effectiveZoom());
57 void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverState& state, const AnimatableValue* value) argument
59 if (value->isUnknown()) {
60 StyleBuilder::applyProperty(property, state, toAnimatableUnknown(value)->toCSSValue().get());
66 style->setBottom(animatableValueToLength(value, state));
69 style->setHeight(animatableValueToLength(value, state));
72 style->setLeft(animatableValueToLength(value, state));
75 style->setMarginBottom(animatableValueToLength(value, state));
78 style->setMarginLeft(animatableValueToLength(value, stat
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkParse.h19 static const char* FindColor(const char str[], SkColor* value);
20 static const char* FindHex(const char str[], uint32_t* value);
21 static const char* FindMSec(const char str[], SkMSec* value);
23 static const char* FindS32(const char str[], int32_t* value);
24 static const char* FindScalar(const char str[], SkScalar* value);
25 static const char* FindScalars(const char str[], SkScalar value[], int count);
27 static bool FindBool(const char str[], bool* value);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp4-cxx0x.cpp5 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/temp/temp.decls/temp.variadic/
H A Ddeduction.cpp30 static const unsigned value = 0; member in struct:DeductionWithConversion::char_values
35 static const unsigned value = 1; member in struct:DeductionWithConversion::char_values
38 int check0[char_values<1, 12, 3>::value == 1? 1 : -1];
41 static const unsigned value = 0; member in struct:DeductionWithConversion::int_values
46 static const unsigned value = 1; member in struct:DeductionWithConversion::int_values
49 int check1[int_values<256, 12, 3>::value == 0? 1 : -1];
50 int check2[int_values<3, 12, 3>::value == 1? 1 : -1];
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstLong.java34 * Makes an instance for the given value. This may (but does not
37 * @param value the {@code long} value
39 public static CstLong make(long value) { argument
44 return new CstLong(value);
50 * @param value the {@code long} value
52 private CstLong(long value) { argument
53 super(value);
59 long value
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DSystemProperty.java18 private String value; field in class:SystemProperty
25 System.setProperty(key, value);
26 if (System.getProperty(key).equals(value))
42 return value;
45 public void setValue(String value) { argument
46 this.value = value;
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DVariantValue.java36 protected abstract String value(); method in class:VariantValue
40 return TypeConverter.asBoolean(value());
45 String value = value();
46 return value == null ? EMPTY : value;
52 return TypeConverter.asNumber(value());
/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) {
33 CAMLprim value llvm_write_bitcode_to_fd(value U, value M, value FD) {
/external/skia/include/utils/
H A DSkParse.h19 static const char* FindColor(const char str[], SkColor* value);
20 static const char* FindHex(const char str[], uint32_t* value);
21 static const char* FindMSec(const char str[], SkMSec* value);
23 static const char* FindS32(const char str[], int32_t* value);
24 static const char* FindScalar(const char str[], SkScalar* value);
25 static const char* FindScalars(const char str[], SkScalar value[], int count);
27 static bool FindBool(const char str[], bool* value);
/external/smack/src/org/jivesoftware/smackx/workgroup/settings/
H A DChatSetting.java24 private String value; field in class:ChatSetting
27 public ChatSetting(String key, String value, int type){ argument
29 setValue(value);
42 return value;
45 public void setValue(String value) { argument
46 this.value = value;

Completed in 955 milliseconds

1234567891011>>