/external/webkit/WebKit/win/Interfaces/ |
IWebScriptObject.idl | 41 - (void)setValue:(id)value forKey:(NSString *)key 53 - (void)setWebScriptValueAtIndex:(unsigned int)index value:(id)value; 114 @discussion Gets the value of the property at the specified index. 115 @result The value of the property. 121 @method setPropertyAtIndex:value: 123 @param value The value of the property to set. 124 @discussion Sets the property value at the specified index. 125 - (void)setWebScriptValueAtIndex:(unsigned int)index value:(id)value [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
driver_ps3.c | 98 int ret, value; local 111 value = IW_AUTH_WPA_VERSION_DISABLED; 113 value = IW_AUTH_WPA_VERSION_WPA2; 115 value = IW_AUTH_WPA_VERSION_WPA; 117 IW_AUTH_WPA_VERSION, value) < 0) 119 value = wpa_driver_wext_cipher2wext(params->pairwise_suite); 121 IW_AUTH_CIPHER_PAIRWISE, value) < 0) 123 value = wpa_driver_wext_cipher2wext(params->group_suite); 125 IW_AUTH_CIPHER_GROUP, value) < 0) 127 value = wpa_driver_wext_keymgmt2wext(params->key_mgmt_suite) [all...] |
/frameworks/base/common/java/com/android/common/speech/ |
LoggingEvents.java | 36 // The extra key used for the event value. The possible event values depend 44 // The extra key used (with a boolean value of 'true') as a way to trigger a 65 public static final String EXTRA_N_BEST_CHOOSE_INDEX = "index"; // value should be int 68 public static final String EXTRA_QUERY_UPDATED_VALUE = "value"; // value should be String 108 public static final String EXTRA_ERROR_CODE = "code"; // value should be int 111 public static final String EXTRA_START_LOCALE = "locale"; // value should be String 112 public static final String EXTRA_START_SWIPE = "swipe"; // value should be boolean 117 public static final String EXTRA_N_BEST_CHOOSE_INDEX = "index"; // value should be int 120 public static final String EXTRA_TEXT_MODIFIED_LENGTH = "length"; // value should be in [all...] |
/frameworks/base/core/java/android/webkit/ |
JWebCoreJavaBridge.java | 160 * @param value The cookie string to be stored. 162 private void setCookies(String url, String value) { 163 if (value.contains("\r") || value.contains("\n")) { 165 int size = value.length(); 169 int ir = value.indexOf('\r', i); 170 int in = value.indexOf('\n', i); 174 buffer.append(value.subSequence(i, newi)); 176 buffer.append(value.subSequence(i, size)); 181 value = buffer.toString() [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsProvider.java | 55 private static final String[] COLUMN_VALUE = new String[] { "value" }; 68 private static final Bundle NULL_SETTING = Bundle.forPair("value", null); 209 new String[] { Settings.NameValueTable.VALUE }, 213 final String value = c.moveToNext() ? c.getString(0) : null; local 214 if (value == null) { 228 values.put(Settings.NameValueTable.VALUE, newAndroidIdValue); 256 // Looks up value 'key' in 'table' and returns either a single-pair Bundle, 257 // possibly with a null value, or null on failure. 356 * Used to parse changes to the value of Settings.Secure.LOCATION_PROVIDERS_ALLOWED. 365 String value = initialValues.getAsString(Settings.Secure.VALUE) local 440 String value = initialValues.getAsString(Settings.NameValueTable.VALUE); local 653 String value = contentValues.getAsString(Settings.NameValueTable.VALUE); local [all...] |
/packages/apps/Email/src/com/android/email/mail/internet/ |
MimeBodyPart.java | 63 public void addHeader(String name, String value) throws MessagingException { 64 mHeader.addHeader(name, value); 67 public void setHeader(String name, String value) throws MessagingException { 68 mHeader.setHeader(name, value); 149 * @param value header value - flattened by removing CR-NL if any 150 * remove header if value is null 153 public void setExtendedHeader(String name, String value) throws MessagingException { 154 if (value == null) { 163 mExtendedHeader.setHeader(name, END_OF_LINE.matcher(value).replaceAll("")) [all...] |
/packages/apps/Email/src/com/android/exchange/utility/ |
SimpleIcsWriter.java | 62 * Write a tag with a value. 64 public void writeTag(String name, String value) { 65 // Belt and suspenders here; don't crash on null value; just return 66 if (TextUtils.isEmpty(value)) { 70 // The following properties take a TEXT value, which need to be escaped. 97 value = escapeTextValue(value); 99 writeLine(name + ":" + value); 122 * Quote a param-value string, according to RFC 5545, section 3.1 129 // The spec doesn't allow putting double-quotes in a param value, so let's use single quote [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnEngine.java | 59 * @return Plus value if there are candidates; 0 if there is no candidate; minus value if a error occurs. 74 * @return Plus value if there are candidates; 0 if there is no candidate; minus value if a error occurs. 82 * @return Plus value if there are candidates; 0 if there is no candidate; minus value if a error occurs. 90 * @return Plus value if there are candidates; 0 if there is no candidate; minus value if a error occurs. 131 * @return Number of registered words in the user's dictionary after the operation; minus value if a error occurs. 186 * @return Plus value if there are candidates; 0 if there is no candidate; minus value if a error occurs [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
tree-ssa-sccvn.h | 1 /* Tree SCC value numbering 28 opcode, and a type. Result is the value number of the operation, 34 /* Unique identify that all expressions with the same value have. */ 46 arguments, and the basic block the phi is in. Result is the value 53 /* Unique identifier that all expressions with the same value have. */ 87 the resulting value number, and the hashcode. The vuses are 92 /* Unique identifier that all expressions with the same value have. */ 133 /* Value number. This may be an SSA name or a constant. */ 138 /* Unique identifier that all expressions with the same value have. */ 149 /* Whether the SSA_NAME has been value numbered already. This i [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
XmlParserUtils.java | 46 * Retrieves the value of that XML element as a string.
65 * Retrieves the value of that XML element as a string.
84 * Retrieves the value of that XML element as an integer.
85 * Returns the default value when the element is missing or is not an integer.
97 * Retrieves the value of that XML element as a long.
98 * Returns the default value when the element is missing or is not an integer.
110 * Retrieve an attribute which value must match one of the given enums using a
113 * Returns defaultValue if the attribute does not exist or its value does not match
125 for (Object value : values) {
126 if (value.toString().equalsIgnoreCase(found)) { [all...] |
/bionic/libc/include/sys/ |
_system_properties.h | 66 char value[PROP_VALUE_MAX]; member in struct:prop_info 73 char value[PROP_VALUE_MAX]; member in struct:prop_msg 82 ** - prop_area.count will never decrease in value 85 ** - reading a value requires the following steps 88 ** 3. memcpy(local, pi->value, SERIAL_VALUE_LEN(serial) + 1) 91 ** - writing a value requires the following steps 93 ** 2. memcpy(pi->value, local_value, value_len)
|
/cts/tools/dex-tools/src/dex/reader/ |
DexBuffer.java | 80 int value = 0; local 83 value = (b.get() & 0xFF); 84 endValue |= ((value & 0x7F) << 7 * nr);// cut away left most bit 86 } while ((value & 0x80) != 0); // highest bit set? 154 int value = b.getInt(); local 155 // assert value >= 0; 156 return value;
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/invokeinterface/jm/ |
T_invokeinterface_19.j | 21 .field value I 34 putfield dxc.junit.opcodes.invokeinterface.jm.T_invokeinterface_19.value I 75 getfield dxc.junit.opcodes.invokeinterface.jm.T_invokeinterface_19.value I 78 putfield dxc.junit.opcodes.invokeinterface.jm.T_invokeinterface_19.value I 81 getfield dxc.junit.opcodes.invokeinterface.jm.T_invokeinterface_19.value I 88 getfield dxc.junit.opcodes.invokeinterface.jm.T_invokeinterface_19.value I 163 getfield dxc.junit.opcodes.invokeinterface.jm.T_invokeinterface_19.value I
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/invokestatic/jm/ |
T_invokestatic_12.j | 20 .field static value I 26 putstatic dxc.junit.opcodes.invokestatic.jm.T_invokestatic_12.value I 67 getstatic dxc.junit.opcodes.invokestatic.jm.T_invokestatic_12.value I 70 putstatic dxc.junit.opcodes.invokestatic.jm.T_invokestatic_12.value I 72 getstatic dxc.junit.opcodes.invokestatic.jm.T_invokestatic_12.value I 78 getstatic dxc.junit.opcodes.invokestatic.jm.T_invokestatic_12.value I 128 getstatic dxc.junit.opcodes.invokestatic.jm.T_invokestatic_12.value I
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/invokevirtual/jm/ |
T_invokevirtual_2.j | 20 .field value I 30 putfield dxc.junit.opcodes.invokevirtual.jm.T_invokevirtual_2.value I 70 getfield dxc.junit.opcodes.invokevirtual.jm.T_invokevirtual_2.value I 73 putfield dxc.junit.opcodes.invokevirtual.jm.T_invokevirtual_2.value I 76 getfield dxc.junit.opcodes.invokevirtual.jm.T_invokevirtual_2.value I 83 getfield dxc.junit.opcodes.invokevirtual.jm.T_invokevirtual_2.value I 138 getfield dxc.junit.opcodes.invokevirtual.jm.T_invokevirtual_2.value I
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_attrclonenode1.java | 63 String value; local 77 value = clonedTitle.getValue(); 78 assertEquals("attrValue", "Yesterday", value); 79 value = clonedTitle.getNodeValue(); 80 assertEquals("attrNodeValue", "Yesterday", value); 82 value = lastChild.getNodeValue(); 83 assertEquals("lastChildValue", "terday", value);
|
namednodemapremovenameditemgetvalue.java | 32 * is an Attr node with a default value it is immediately 40 * it has a default value of "Yes", that value should 41 * immediately be the attributes value. 81 String value; local 91 value = streetAttr.getValue(); 92 assertEquals("namednodemapRemoveNamedItemGetValueAssert", "Yes", value);
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/ |
NetUtil.java | 96 static void intToBytes(int value, byte bytes[], int start) { 101 bytes[start] = (byte) ((value >> 24) & 255); 102 bytes[start + 1] = (byte) ((value >> 16) & 255); 103 bytes[start + 2] = (byte) ((value >> 8) & 255); 104 bytes[start + 3] = (byte) (value & 255); 114 int value = ((bytes[start + 3] & 255)) | ((bytes[start + 2] & 255) << 8) local 116 return value;
|
/dalvik/libcore/prefs/src/main/java/java/util/prefs/ |
PreferenceChangeEvent.java | 47 private final String value; field in class:PreferenceChangeEvent 58 * the new value of the changed preference, this value can be 65 value = v; 78 * Gets the new value of the changed preference or {@code null} if the 81 * @return the new value of the changed preference or {@code null} if the 85 return value;
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameEntryConverter.java | 23 * String value) 146 * Convert the passed in String value into the appropriate ASN.1 149 * @param oid the oid associated with the value in the DN. 150 * @param value the value of the particular DN component. 151 * @return the ASN.1 equivalent for the value. 153 public abstract DERObject getConvertedValue(DERObjectIdentifier oid, String value);
|
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/ |
AttrImpl.java | 46 private String value; field in class:AttrImpl 52 value = ""; 117 return value != null; 121 return value; 129 public void setValue(String value) throws DOMException { 130 this.value = value;
|
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
FloatControl.java | 48 private float value; field in class:FloatControl 79 this.value = initialValue; 91 // sound.0F=value does not fall within the allowable range 94 this.value = newValue; 98 return this.value; 138 return getType() + " with current value: "+ value + " " + units //$NON-NLS-1$ //$NON-NLS-2$
|
/external/bison/lib/ |
argmatch.h | 57 void argmatch_invalid (char const *context, char const *value, 62 # define invalid_arg(Context, Value, Problem) \ 63 argmatch_invalid (Context, Value, Problem) 93 /* Convert a value into a corresponding argument. */ 95 char const *argmatch_to_argument (char const *value, 99 # define ARGMATCH_TO_ARGUMENT(Value, Arglist, Vallist) \ 100 argmatch_to_argument (Value, Arglist, \
|
/external/bluetooth/bluez/tools/ |
csr_h4.c | 84 static int do_command(uint16_t command, uint16_t seqnum, uint16_t varid, uint8_t *value, uint16_t length) 111 memcpy(cp + 15, value, length); 147 memcpy(value, rp + 14, length); 152 int csr_read_h4(uint16_t varid, uint8_t *value, uint16_t length) 154 return do_command(0x0000, seqnum++, varid, value, length); 157 int csr_write_h4(uint16_t varid, uint8_t *value, uint16_t length) 159 return do_command(0x0002, seqnum++, varid, value, length);
|
csr_hci.c | 87 static int do_command(uint16_t command, uint16_t seqnum, uint16_t varid, uint8_t *value, uint16_t length) 110 memcpy(cp + 11, value, length); 142 memcpy(value, rp + 11, length); 147 int csr_read_hci(uint16_t varid, uint8_t *value, uint16_t length) 149 return do_command(0x0000, seqnum++, varid, value, length); 152 int csr_write_hci(uint16_t varid, uint8_t *value, uint16_t length) 154 return do_command(0x0002, seqnum++, varid, value, length);
|