/dalvik/libcore/json/src/test/java/org/json/ |
JSONStringerTest.java | 34 stringer.value(JSONObject.NULL); 56 stringer.value(false); 57 stringer.value(5.0); 58 stringer.value(5L); 59 stringer.value("five"); 60 stringer.value(null); 68 stringer.value(Boolean.FALSE); 69 stringer.value(Double.valueOf(5.0)); 70 stringer.value(Long.valueOf(5L)); 78 stringer.key("a").value(false) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
ResourceHelper.java | 53 * Returns the color value represented by the given string value 54 * @param value the color value 58 static int getColor(String value) { 59 if (value != null) { 60 if (value.startsWith("#") == false) { 64 value = value.substring(1); 67 if (value.length() > 8) [all...] |
BridgeResources.java | 124 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 126 if (value != null) { 127 return ResourceHelper.getDrawable(value, mContext, value.isFramework()); 139 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 141 if (value != null) { 143 return ResourceHelper.getColor(value.getValue()); 158 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 160 if (value != null) { 162 int color = ResourceHelper.getColor(value.getValue()) 178 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 193 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 236 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 265 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 287 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 309 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 364 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 380 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 409 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local 473 IResourceValue value = getResourceValue(id, mPlatformResourceFlag); local [all...] |
/external/srec/doc/logs/srec/ |
out_SHIP_change_sample_rate2.txt | 24 CONFIDENCE VALUE : '453' 29 CONFIDENCE VALUE : '195' 34 CONFIDENCE VALUE : '68' 39 CONFIDENCE VALUE : '28' 44 CONFIDENCE VALUE : '10' 49 CONFIDENCE VALUE : '4' 54 CONFIDENCE VALUE : '1' 59 CONFIDENCE VALUE : '0' 64 CONFIDENCE VALUE : '0' 69 CONFIDENCE VALUE : '0 [all...] |
/external/clearsilver/util/ |
neo_hdf.c | 57 const char *value, int dup, int wf, HDF *top) 81 if (value != NULL) 86 (*hdf)->value = strdup(value); 87 if ((*hdf)->value == NULL) 99 /* We're overriding the const of value here for the set_buf case 102 (*hdf)->value = (char *)value; 116 if ((*attr)->value) free((*attr)->value); 1564 char *name, *value; local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/ |
DOMConfigurationImpl.java | 53 * Setting these parameters to another value shall revert the canonical 66 public void set(DOMConfigurationImpl config, Object value) { 67 config.cdataSections = (Boolean) value; 83 public void set(DOMConfigurationImpl config, Object value) { 84 config.comments = (Boolean) value; 96 public void set(DOMConfigurationImpl config, Object value) { 97 if ((Boolean) value) { 119 public void set(DOMConfigurationImpl config, Object value) { 120 config.entities = (Boolean) value; 131 public void set(DOMConfigurationImpl config, Object value) { [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
PlatformAddress.java | 30 * This final field defines the sentinel for an unknown address value. 40 * NULL is the canonical address with address value zero. 45 * INVALID is the canonical address with an invalid value 124 public final void setByte(int offset, byte value) { 126 osMemory.setByte(osaddr + offset, value); 161 public final void setShort(int offset, short value, Endianness order) { 163 osMemory.setShort(osaddr + offset, value, order); 166 public final void setShort(int offset, short value) { 168 osMemory.setShort(osaddr + offset, value); 181 public final void setInt(int offset, int value, Endianness order) [all...] |
/dalvik/libcore/sql/src/main/java/SQLite/ |
Stmt.java | 46 * Object o = s.value(...); 56 * Object o = s.value(...); 91 * Bind positional integer value to compiled SQLite3 statement. 93 * @param value value of parameter 96 public native void bind(int pos, int value) throws SQLite.Exception; 99 * Bind positional long value to compiled SQLite3 statement. 101 * @param value value of parameter 104 public native void bind(int pos, long value) throws SQLite.Exception [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/ |
AtomicIntegerFieldUpdater.java | 58 * to the given updated value if the current value {@code ==} the 59 * expected value. This method is guaranteed to be atomic with respect to 64 * @param expect the expected value 65 * @param update the new value 74 * to the given updated value if the current value {@code ==} the 75 * expected value. This method is guaranteed to be atomic with respect to 84 * @param expect the expected value 85 * @param update the new value [all...] |
/external/guava/src/com/google/common/collect/ |
Multimap.java | 41 * key-value pairs. In other words, the multimap contents after adding the same 42 * key and value twice varies between implementations. In multimaps allowing 44 * return a collection that includes the value twice. In multimaps not 46 * key to the value, and {@code get} will return a collection that includes the 47 * value once. 62 /** Returns the number of key-value pairs in the multimap. */ 65 /** Returns {@code true} if the multimap contains no key-value pairs. */ 77 * Returns {@code true} if the multimap contains the specified value for any 80 * @param value value to search for in multima [all...] |
/external/srec/shared/include/ |
HashMap.h | 33 * Hashed [key, value] mapping. 39 * Hashed [key, value] mapping. 44 * Sets new mapping, storing a reference to the value. 49 * @param value Mapping value 52 ESR_ReturnCode(*put)(struct HashMap_t* self, const LCHAR* key, void* value); 64 * Removes the mapping for this key from this map if present and frees the value. 117 * Returns the value to which the specified key is mapped in this identity hash map, 121 * @param key the key whose associated value is to be returned. 122 * @param value the value to which this map maps the specified key, or null if th [all...] |
/dalvik/libcore/nio/src/main/java/java/nio/ |
HeapByteBuffer.java | 224 protected final void store(int index, int value) { 228 backingArray[baseOffset + i] = (byte) (value & 0xFF); 229 value = value >> 8; 233 backingArray[baseOffset + i] = (byte) (value & 0xFF); 234 value = value >> 8; 239 protected final void store(int index, long value) { 243 backingArray[baseOffset + i] = (byte) (value & 0xFF); 244 value = value >> 8 [all...] |
ReadOnlyDirectByteBuffer.java | 77 public ByteBuffer put(byte value) { 82 public ByteBuffer put(int index, byte value) { 92 public ByteBuffer putDouble(double value) { 97 public ByteBuffer putDouble(int index, double value) { 102 public ByteBuffer putFloat(float value) { 107 public ByteBuffer putFloat(int index, float value) { 112 public ByteBuffer putInt(int value) { 117 public ByteBuffer putInt(int index, int value) { 122 public ByteBuffer putLong(int index, long value) { 127 public ByteBuffer putLong(long value) { [all...] |
/external/apache-http/src/org/apache/http/params/ |
CoreConnectionPNames.java | 46 * timeout for waiting for data. A timeout value of zero is interpreted as an infinite 47 * timeout. This value is used when no socket timeout is set in the 50 * This parameter expects a value of type {@link Integer}. 63 * This parameter expects a value of type {@link Boolean}. 73 * This parameter expects a value of type {@link Integer}. 80 * value is platform specific. Value <tt>0</tt> implies that the option is disabled. 81 * Value <tt>-1</tt> implies that the JRE default is used. The setting only affects 84 * This parameter expects a value of type {@link Integer}. 91 * Determines the timeout until a connection is etablished. A value of zero [all...] |
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
EGLImpl.java | 33 public native boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value); 34 public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); 36 public native boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value); 95 int value = _eglGetDisplay(native_display); local 96 if (value == 0) { 99 if (mDisplay.mEGLDisplay != value) 100 mDisplay = new EGLDisplayImpl(value); 105 int value = _eglGetCurrentContext(); local 106 if (value == 0) { 109 if (mContext.mEGLContext != value) 115 int value = _eglGetCurrentDisplay(); local 125 int value = _eglGetCurrentSurface(readdraw); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/ |
test.xml | 5 <!--The following properties should be passed into this script, set to some default value for now --> 6 <property name="eclipse.home" value="/opt/eclipse" /> 7 <property name="sdk_home" value="/tmp/sdk" /> 8 <property name="eclipse_test" value="${eclipse.home}/plugins/org.eclipse.test_3.2.0" /> 12 <property name="eclipse-home" value="${eclipse.home}" /> 13 <property name="test-folder" value="${eclipse.home}/test_folder" /> 16 <property name="plugin-name" value="com.android.ide.eclipse.tests" /> 17 <property name="library-file" value="${eclipse_test}/library.xml" /> 20 <property name="prefs_path" value="${test-folder}/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs" /> 23 <property name="prefs_template" value="prefs.template" / [all...] |
/external/bluetooth/glib/gobject/ |
gparamspecs.c | 36 * @short_description: Standard Parameter and Value Types 41 * copied, transformed and compared while holding a value of any 44 * specifications for most value types can be created as #GParamSpec 71 GValue *value) 73 value->data[0].v_int = G_PARAM_SPEC_CHAR (pspec)->default_value; 78 GValue *value) 81 gint oval = value->data[0].v_int; 83 value->data[0].v_int = CLAMP (value->data[0].v_int, cspec->minimum, cspec->maximum); 85 return value->data[0].v_int != oval [all...] |
/external/v8/include/ |
v8.h | 108 class Value; 146 * \param parameter the value passed in when making the weak global object 148 typedef void (*WeakReferenceCallback)(Persistent<Value> object, 167 * whenever an object moves. Handles should always be passed by value 180 * an Handle<Object>); the value will still be governed by a handle 193 * Creates a new handle for the specified value. 199 * constructor allows you to pass handles as arguments by value and 204 * Handle<String> to a variable declared as Handle<Value>, is legal 205 * because String is a subclass of Value. 313 * the v8 engine which holds an object value and which is updated b 3096 Set(v8::String::New(name), value); local 3118 O* value = I::ReadField<O*>(obj, offset); local 3154 O* value = I::ReadField<O*>(obj, offset); local 3176 void* value = I::ReadField<void*>(obj, I::kStringResourceOffset); local [all...] |
/bionic/libc/stdlib/ |
setenv.c | 40 * Set the value of the environmental variable "name" to be 41 * "value". If rewrite is set, replace any current value. 44 setenv(const char *name, const char *value, int rewrite) 46 static char **lastenv; /* last value of environ */ 50 if (*value == '=') /* no `=' in value */ 51 ++value; 52 l_value = strlen(value); 57 while ((*C++ = *value++) [all...] |
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_attrinsertbefore1.java | 31 * Appends a text node to an attribute and checks if the value of 64 String value; local 78 value = titleAttr.getValue(); 79 assertEquals("attrValue", "Yesterday", value); 80 value = titleAttr.getNodeValue(); 81 assertEquals("attrNodeValue", "Yesterday", value); 82 value = retval.getNodeValue(); 83 assertEquals("retvalValue", "terday", value); 85 value = firstChild.getNodeValue(); 86 assertEquals("firstChildValue", "Yes", value); [all...] |
hc_attrinsertbefore2.java | 31 * Prepends a text node to an attribute and checks if the value of 64 String value; local 78 value = titleAttr.getValue(); 79 assertEquals("attrValue", "terdayYes", value); 80 value = titleAttr.getNodeValue(); 81 assertEquals("attrNodeValue", "terdayYes", value); 82 value = retval.getNodeValue(); 83 assertEquals("retvalValue", "terday", value); 85 value = firstChild.getNodeValue(); 86 assertEquals("firstChildValue", "terday", value); [all...] |
hc_attrinsertbefore3.java | 31 * Appends a document fragment to an attribute and checks if the value of 64 String value; local 84 value = titleAttr.getValue(); 85 assertEquals("attrValue", "Yesterday", value); 86 value = titleAttr.getNodeValue(); 87 assertEquals("attrNodeValue", "Yesterday", value); 88 value = retval.getNodeValue(); 89 assertNull("retvalValue", value); 91 value = firstChild.getNodeValue(); 92 assertEquals("firstChildValue", "Yes", value); [all...] |
hc_attrinsertbefore4.java | 31 * Prepends a document fragment to an attribute and checks if the value of 64 String value; local 84 value = titleAttr.getValue(); 85 assertEquals("attrValue", "terdayYes", value); 86 value = titleAttr.getNodeValue(); 87 assertEquals("attrNodeValue", "terdayYes", value); 88 value = retval.getNodeValue(); 89 assertNull("retvalValue", value); 91 value = firstChild.getNodeValue(); 92 assertEquals("firstChildValue", "ter", value); [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
AssertionError.java | 54 * {@link String#valueOf(boolean)} with the specified boolean value. 57 * the value to be converted into the message. 65 * {@link String#valueOf(char)} with the specified character value. 68 * the value to be converted into the message. 76 * {@link String#valueOf(int)} with the specified integer value. 79 * the value to be converted into the message. 87 * {@link String#valueOf(long)} with the specified long value. 90 * the value to be converted into the message. 98 * {@link String#valueOf(float)} with the specified float value. 101 * the value to be converted into the message [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
ChoiceFormat.java | 26 * Returns a fixed string based on a numeric value. The class can be used in 66 * <li><number>"#"</number> specifies an inclusive limit value;</li> 67 * <li><number>"<"</number> specifies an exclusive limit value.</li> 82 * value {@code d}, then the element {@code i} in {@code formats} is 146 Number value = format.parse(template, position); local 164 next = value.doubleValue(); 167 next = nextDouble(value.doubleValue()); 226 * double value fits to the specified string buffer. 228 * @param value 231 * the target string buffer to append the formatted value to [all...] |