/dalvik/dx/src/com/android/dx/rop/cst/ |
CstLong.java | 34 * 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) { 44 return new CstLong(value); 50 * @param value the {@code long} value 52 private CstLong(long value) { 53 super(value); 59 long value = getLongBits() local [all...] |
CstBoolean.java | 33 * Makes an instance for the given value. This will return an 36 * @param value the {@code boolean} value 39 public static CstBoolean make(boolean value) { 40 return value ? VALUE_TRUE : VALUE_FALSE; 44 * Makes an instance for the given {@code int} value. This 47 * @param value must be either {@code 0} or {@code 1} 50 public static CstBoolean make(int value) { 51 if (value == 0) { 53 } else if (value == 1) [all...] |
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
DocumentBuilderSettingStrategy.java | 20 boolean value); 26 boolean value) { 27 factory.setCoalescing(value); 37 public void applySetting(DocumentBuilderFactory factory, boolean value) { 38 factory.setExpandEntityReferences(value); 47 public void applySetting(DocumentBuilderFactory factory, boolean value) { 48 factory.setIgnoringElementContentWhitespace(value); 57 public void applySetting(DocumentBuilderFactory factory, boolean value) { 58 if (value) { 69 public void applySetting(DocumentBuilderFactory factory, boolean value) [all...] |
/external/clearsilver/ruby/ext/hdf/ |
neo_cs.c | 16 static VALUE cCs; 17 extern VALUE mNeotonic; 18 extern VALUE eHdfError; 20 VALUE r_neo_error(NEOERR *err); 30 static VALUE c_init (VALUE self) { 34 VALUE c_new (VALUE class, VALUE oHdf) { 38 VALUE r_cs [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 6 # composed of Attribute/Value Pairs. The value of each attribute 11 # integer - 32 bit value in big endian order (high byte first) 12 # date - 32 bit value in big endian order - seconds since 16 # VALUE translations for easy administration. 20 # ATTRIBUTE VALUE 135 VALUE Service-Type Login-User 1 136 VALUE Service-Type Framed-User 2 137 VALUE Service-Type Callback-Login-User 3 138 VALUE Service-Type Callback-Framed-User [all...] |
/external/libpng/projects/cbuilder5/ |
libpngstat.bpr | 5 <VERSION value="BCB.05.03"/>
6 <PROJECT value="libpngstat.lib"/>
7 <OBJFILES value="..\..\pngerror.obj ..\..\png.obj ..\..\pngwutil.obj ..\..\pngmem.obj
11 <RESFILES value=""/>
12 <DEFFILE value=""/>
13 <RESDEPEN value="$(RESFILES)"/>
14 <LIBFILES value="..\..\..\zlib\zlib.lib"/>
15 <LIBRARIES value=""/>
16 <PACKAGES value=""/>
17 <PATHCPP value=".;..\.."/> [all...] |
/external/webkit/LayoutTests/fast/js/resources/ |
select-options-remove.js | 4 var value; variable 7 value = document.createElement("DIV"); 8 shouldBe("select1.options.remove(value)", "undefined"); 14 value = "o"; 15 shouldBe("select1.options.remove(value)", "undefined"); 21 value = 3.14; 22 shouldBe("select1.options.remove(value)", "undefined"); 28 value = true; 29 shouldBe("select1.options.remove(value)", "undefined"); 35 value = undefined [all...] |
/packages/apps/Email/src/org/apache/commons/io/ |
EndianUtils.java | 52 * Converts a "short" value between endian systems.
53 * @param value value to convert
54 * @return the converted value
56 public static short swapShort(short value) {
57 return (short) ( ( ( ( value >> 0 ) & 0xff ) << 8 ) +
58 ( ( ( value >> 8 ) & 0xff ) << 0 ) );
62 * Converts a "int" value between endian systems.
63 * @param value value to convert 481 int value = input.read(); local [all...] |
/external/skia/include/core/ |
SkMath.h | 43 /** Return the integer square root of value, with a bias of bitBias 45 int32_t SkSqrtBits(int32_t value, int bitBias); 51 /** Return the integer cube root of value, with a bias of bitBias 53 int32_t SkCubeRootBits(int32_t value, int bitBias); 72 /** Returns (value < 0 ? 0 : value) efficiently (i.e. no compares or branches) 74 static inline int SkClampPos(int value) { 75 return value & ~(value >> 31); 78 /** Given an integer and a positive (max) integer, return the value [all...] |
SkWriter32.h | 38 bool writeBool(bool value) { 39 this->writeInt(value); 40 return value; 43 void writeInt(int32_t value) { 44 *(int32_t*)this->reserve(sizeof(value)) = value; 47 void write8(int32_t value) { 48 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF; 51 void write16(int32_t value) { [all...] |
/external/proguard/lib/ |
proguard.jar | |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/ |
12.6.3-4.js | 41 for the property name and W for the value. 44 GetPropertyName(V) for the property name and W for the value. 47 9. If Result(8) is a value completion, change C to be "normal completion 48 after value V" where V is the value carried by Result(8). 85 for ( value in o ) { 86 result += o[value]; 90 "for ( value in o ) { result += o[value]", 94 var value = "value" variable 105 var value = 0; variable [all...] |
/external/webkit/WebCore/html/canvas/ |
WebGLGetInfo.cpp | 43 WebGLGetInfo::WebGLGetInfo(bool value) 45 , m_bool(value) 49 WebGLGetInfo::WebGLGetInfo(float value) 51 , m_float(value) 55 WebGLGetInfo::WebGLGetInfo(long value) 57 , m_long(value) 66 WebGLGetInfo::WebGLGetInfo(const String& value) 68 , m_string(value) 72 WebGLGetInfo::WebGLGetInfo(unsigned long value) 74 , m_unsignedLong(value) [all...] |
/external/webkit/WebCore/xml/ |
XPathPredicate.h | 43 virtual Value evaluate() const; 44 virtual Value::Type resultType() const { return Value::NumberValue; } 46 Value m_value; 53 virtual Value evaluate() const; 54 virtual Value::Type resultType() const { return Value::StringValue; } 56 Value m_value; 61 virtual Value evaluate() const; 62 virtual Value::Type resultType() const { return Value::NumberValue; [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/ |
AttributeTable.java | 48 Object value = attributes.get(oid); local 50 if (value == null) 58 if (value instanceof Attribute) 62 v.addElement(value); 67 v = (Vector)value; 85 Object value = attributes.get(oid); local 87 if (value instanceof Vector) 89 return (Attribute)((Vector)value).elementAt(0); 92 return (Attribute)value; 107 Object value = attributes.get(oid) local 138 Object value = e.nextElement(); local [all...] |
/external/proguard/src/proguard/evaluation/value/ |
SpecificValueFactory.java | 21 package proguard.evaluation.value; 31 // Shared copies of Value objects, to avoid creating a lot of objects. 50 public IntegerValue createIntegerValue(int value) 52 switch (value) 61 default: return new ParticularIntegerValue(value); 66 public LongValue createLongValue(long value) 68 return value == 0 ? LONG_VALUE_0 : 69 value == 1 ? LONG_VALUE_1 : 70 new ParticularLongValue(value); 74 public FloatValue createFloatValue(float value) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Expressions/ |
instanceof-001.js | 31 function Gen3(value) { 32 this.value = value; 39 function Gen2(value) { 40 this.value = value; 46 function Gen1(value) { 47 this.value = value; 53 function Gen0(value) { [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
cmpxchg_32.h | 24 #define set_64bit(ptr,value) (__builtin_constant_p(value) ? __set_64bit_constant(ptr, value) : __set_64bit_var(ptr, value) ) 25 #define _set_64bit(ptr,value) (__builtin_constant_p(value) ? __set_64bit(ptr, (unsigned int)(value), (unsigned int)((value)>>32ULL) ) : __set_64bit(ptr, ll_low(value), ll_high(value)) ) [all...] |
/cts/tools/dex-tools/src/dex/structure/ |
DexEncodedValueType.java | 28 * signed one-byte integer value 36 * signed two-byte integer value, sign-extended 44 * unsigned two-byte integer value, zero-extended 52 * signed four-byte integer value, sign-extended 60 * signed eight-byte integer value, sign-extended 69 * IEEE754 32-bit floating point value 78 * IEEE754 64-bit floating point value 86 * unsigned (zero-extended) four-byte integer value, interpreted as an index 87 * into the string_ids section and representing a string value 95 * unsigned (zero-extended) four-byte integer value, interpreted as an inde 163 private byte value; field in class:DexEncodedValueType [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/ |
ResponderID.java | 17 private DEREncodable value; field in class:ResponderID 20 ASN1OctetString value) 22 this.value = value; 26 X509Name value) 28 this.value = value; 76 if (value instanceof ASN1OctetString) 78 return new DERTaggedObject(true, 2, value); 81 return new DERTaggedObject(true, 1, value); [all...] |
/external/easymock/src/org/easymock/internal/ |
ArgumentToString.java | 27 public static void appendArgument(Object value, StringBuffer buffer) {
28 if (value == null) {
30 } else if (value instanceof String) {
32 buffer.append(value);
34 } else if (value instanceof Character) {
36 buffer.append(value);
38 } else if (value.getClass().isArray()) {
40 for (int i = 0; i < Array.getLength(value); i++) {
44 appendArgument(Array.get(value, i), buffer);
48 buffer.append(value);
[all...] |
/external/srec/shared/src/ |
ESR_Session.c | 57 ESR_ReturnCode ESR_SessionGetProperty(const LCHAR* name, void** value, VariableTypes type) 60 return ESR_Session->getProperty(ESR_Session, name, value, type); 63 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetInt(const LCHAR* name, int* value) 66 return ESR_Session->getInt(ESR_Session, name, value); 69 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetUint16_t(const LCHAR* name, asr_uint16_t* value) 72 return ESR_Session->getUint16_t(ESR_Session, name, value); 76 size_t* value) 79 return ESR_Session->getSize_t(ESR_Session, name, value); 82 ESR_SHARED_API ESR_ReturnCode ESR_SessionGetFloat(const LCHAR* name, float* value) 85 return ESR_Session->getFloat(ESR_Session, name, value); [all...] |
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/ |
cmpxchg_32.h | 24 #define set_64bit(ptr,value) (__builtin_constant_p(value) ? __set_64bit_constant(ptr, value) : __set_64bit_var(ptr, value) ) 25 #define _set_64bit(ptr,value) (__builtin_constant_p(value) ? __set_64bit(ptr, (unsigned int)(value), (unsigned int)((value)>>32ULL) ) : __set_64bit(ptr, ll_low(value), ll_high(value)) ) [all...] |
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/ |
cmpxchg_32.h | 24 #define set_64bit(ptr,value) (__builtin_constant_p(value) ? __set_64bit_constant(ptr, value) : __set_64bit_var(ptr, value) ) 25 #define _set_64bit(ptr,value) (__builtin_constant_p(value) ? __set_64bit(ptr, (unsigned int)(value), (unsigned int)((value)>>32ULL) ) : __set_64bit(ptr, ll_low(value), ll_high(value)) ) [all...] |
/sdk/traceview/src/com/android/traceview/ |
Selection.java | 25 public Selection(Action action, String name, Object value) { 28 mValue = value; 31 public static Selection highlight(String name, Object value) { 32 return new Selection(Action.Highlight, name, value); 35 public static Selection include(String name, Object value) { 36 return new Selection(Action.Include, name, value); 39 public static Selection exclude(String name, Object value) { 40 return new Selection(Action.Exclude, name, value); 51 public void setValue(Object value) { 52 mValue = value; [all...] |