/external/icu4c/i18n/unicode/ |
fmtable.h | 64 Formattable(); // Type kLong, value 0 191 * Selector indicating a UDate value. Use getDate to retrieve 192 * the value. 198 * Selector indicating a double value. Use getDouble to 199 * retrieve the value. 205 * Selector indicating a 32-bit integer value. Use getLong to 206 * retrieve the value. 212 * Selector indicating a UnicodeString value. Use getString 213 * to retrieve the value. 220 * to retrieve the value [all...] |
/external/qemu/docs/ |
ANDROID-CONFIG-FILES.TXT | 33 - Lines must be of the form: "<keyName> = <value>" 39 name and before/after the value 41 - There is no restriction on the value, except that it can't contain 53 tree of key/value pairs. More specifically: 55 - Each key or value is a string 56 - Each key can be associated either to a value, or a sub-tree 57 - A (key,value) pair is written in the config file as: 59 <keyname> <value> 61 which means the key name, some spaces, then the value. 65 some.other.name value [all...] |
/external/quake/quake/src/QW/client/ |
cvar.c | 109 void SV_SendServerInfoChange(char *key, char *value);
117 void Cvar_Set (char *var_name, char *value) 131 Info_SetValueForKey (svs.info, var_name, value, MAX_SERVERINFO_STRING);
132 SV_SendServerInfoChange(var_name, value);
138 Info_SetValueForKey (cls.userinfo, var_name, value, MAX_INFO_STRING); 142 SZ_Print (&cls.netchan.message, va("setinfo \"%s\" \"%s\"\n", var_name, value)); 147 Z_Free (var->string); // free the old value string 149 var->string = Z_Malloc (Q_strlen(value)+1); 150 Q_strcpy (var->string, value); 151 var->value = Q_atof (var->string) 177 char value[512]; local [all...] |
/external/srec/shared/include/ |
ESR_SessionImpl.h | 36 void** value, 43 int* value); 49 size_t* value); 55 float* value); 61 ESR_BOOL* value); 67 LCHAR* value, size_t* len); 79 void* value, 86 int value); 92 size_t value); 98 float value); [all...] |
/external/webkit/WebCore/bindings/js/ |
SerializedScriptValue.cpp | 56 void set(const Identifier& propertyName, const SerializedScriptValueData& value) 60 m_values.append(value); 88 void setIndex(unsigned index, const SerializedScriptValueData& value) 92 m_compactStorage.append(value); 94 m_sparseStorage.set(index, value); 482 bool isArray(JSValue value) 484 if (!value.isObject()) 486 JSObject* object = asObject(value); 490 bool isObject(JSValue value) 492 return value.isObject() 780 object->putDirect(Identifier(m_exec, String(propertyName)), value); local 973 JSValue value = toJS(exec, apiValue); local 989 JSValue value = deserialize(exec, exec->lexicalGlobalObject()); local [all...] |
/external/webkit/WebCore/svg/ |
SVGGlyphElement.cpp | 78 static inline SVGGlyphIdentifier::ArabicForm parseArabicForm(const AtomicString& value) 80 if (value == "medial") 82 else if (value == "terminal") 84 else if (value == "isolated") 86 else if (value == "initial") 92 static inline SVGGlyphIdentifier::Orientation parseOrientation(const AtomicString& value) 94 if (value == "h") 96 else if (value == "v") 102 static inline Path parsePathData(const AtomicString& value) 105 pathFromSVGData(result, value); [all...] |
/packages/apps/Email/src/com/android/email/mail/ |
PackedString.java | 34 * element : [ value ] or [ value TAG-DELIMITER tag ] 54 * Get the value referred to by a given tag. If the tag does not exist, return null. 56 * @return returns value, or null if no string is found 97 String value; local 100 // so synthesize a positional tag for the value, and don't update tagEndIndex 101 value = packed.substring(elementStartIndex, elementEndIndex); 104 value = packed.substring(elementStartIndex, tagEndIndex); 109 map.put(tag, value); 138 * Add a tagged value [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/ |
KeyboardStateQualifier.java | 46 private KeyboardState(String value, String displayValue) { 47 mValue = value; 52 * Returns the enum for matching the provided qualifier value. 53 * @param value The qualifier value. 54 * @return the enum for the qualifier value or null if no matching was found. 56 public static KeyboardState getEnum(String value) { 58 if (orient.mValue.equals(value)) { 74 public static int getIndex(KeyboardState value) { 77 if (value == input) [all...] |
/dalvik/libcore/sql/src/main/java/java/sql/ |
SQLOutput.java | 44 * Write a {@code String} value into the output stream. 54 * Write a {@code boolean} value into the output stream. 57 * the {@code boolean} value to write. 64 * Write a {@code byte} value into the output stream. 67 * the {@code byte} value to write. 74 * Write a {@code short} value into the output stream. 77 * the {@code short} value to write. 84 * Write an {@code int} value into the output stream. 87 * the {@code int} value to write. 94 * Write a {@code long} value into the output stream [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ualgobase.h | 94 /// [first, last); f's return value, if any, is ignored. Applications are 107 /// Fill assigns the value value to every element in the range [first, last). 109 /// it performs the assignment *i = value. 113 inline void fill (ForwardIterator first, ForwardIterator last, const T& value) 116 *first = value; 119 /// Fill_n assigns the value value to every element in the range 121 /// it performs the assignment *i = value. The return value is first + count [all...] |
/packages/apps/Gallery3D/src/com/cooliris/media/ |
LongSparseArray.java | 128 * Adds a mapping from the specified key to the specified value, replacing 131 public void put(long key, E value) { 135 mValues[i] = value; 141 mValues[i] = value; 173 mValues[i] = value; 179 * Returns the number of key-value mappings that this SparseArray currently 192 * from the <code>index</code>th key-value mapping that this SparseArray 204 * Given an index in the range <code>0...size()-1</code>, returns the value 205 * from the <code>index</code>th key-value mapping that this SparseArray 218 * Given an index in the range <code>0...size()-1</code>, sets a new value [all...] |
/external/clearsilver/python/examples/base/ |
hdfhelp.py | 16 # row = tbl.fetchRow( ('primary_key', value) ) 93 for col_name,value in self.items(): 102 if (value is not None): 104 if type(value) in [ type(0), type(0L) ]: 105 hdf_dataset.setValue(prefix + "." + col_name,"%d" % value) 106 elif type(value) == type(1.0): 107 if int(value) == value: 108 hdf_dataset.setValue(prefix + "." + col_name,"%d" % value) 110 hdf_dataset.setValue(prefix + "." + col_name,"%0.2f" % value) [all...] |
/external/webkit/WebCore/platform/graphics/win/ |
WKCACFLayer.h | 66 static RetainPtr<CFTypeRef> cfValue(float value) { return RetainPtr<CFTypeRef>(AdoptCF, CFNumberCreate(0, kCFNumberFloat32Type, &value)); } 67 static RetainPtr<CFTypeRef> cfValue(const TransformationMatrix& value) 70 t.m11 = value.m11(); 71 t.m12 = value.m12(); 72 t.m13 = value.m13(); 73 t.m14 = value.m14(); 74 t.m21 = value.m21(); 75 t.m22 = value.m22(); 76 t.m23 = value.m23() [all...] |
/frameworks/base/core/java/android/util/ |
SparseArray.java | 121 * Adds a mapping from the specified key to the specified value, 125 public void put(int key, E value) { 129 mValues[i] = value; 135 mValues[i] = value; 167 mValues[i] = value; 173 * Returns the number of key-value mappings that this SparseArray 186 * the key from the <code>index</code>th key-value mapping that this 199 * the value from the <code>index</code>th key-value mapping that this 212 * value for the <code>index</code>th key-value mapping that thi [all...] |
/frameworks/base/core/java/com/google/android/mms/pdu/ |
EncodedStringValue.java | 29 * Encoded-string-value = Text-string | Value-length Char-set Text-string 37 * The Char-set value. 42 * The Text-string value. 49 * @param charset the Char-set value 50 * @param data the Text-string value 51 * @throws NullPointerException if Text-string value is null. 67 * @param data the Text-string value 68 * @throws NullPointerException if Text-string value is null. 84 * Get Char-set value [all...] |
/hardware/msm7k/librpc/ |
svc_clnt_common.c | 112 static bool_t xdr_std_send_uint32(xdr_s_type *xdr, const uint32 *value) 115 *(int32 *)(xdr->out_msg + xdr->out_next) = htonl(*value); 120 static bool_t xdr_std_send_int8(xdr_s_type *xdr, const int8 *value) 122 uint32 val = *value; 126 static bool_t xdr_std_send_uint8(xdr_s_type *xdr, const uint8 *value) 128 uint32 val = *value; 132 static bool_t xdr_std_send_int16(xdr_s_type *xdr, const int16 *value) 134 uint32 val = *value; 138 static bool_t xdr_std_send_uint16(xdr_s_type *xdr, const uint16 *value) 140 uint32 val = *value; [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
RawImage.java | 91 * Returns the mask value for the red color. 92 * <p/>This value is compatible with org.eclipse.swt.graphics.PaletteData 99 * Returns the mask value for the green color. 100 * <p/>This value is compatible with org.eclipse.swt.graphics.PaletteData 107 * Returns the mask value for the blue color. 108 * <p/>This value is compatible with org.eclipse.swt.graphics.PaletteData 170 * Returns an ARGB integer value for the pixel at <var>index</var> in {@link #data}. 173 int value; local 175 value = data[index] & 0x00FF; 176 value |= (data[index+1] << 8) & 0x0FF00 [all...] |
/system/core/libcutils/ |
hashmap.c | 30 void* value; member in struct:Entry 166 static Entry* createEntry(void* key, int hash, void* value) { 173 entry->value = value; 189 void* hashmapPut(Hashmap* map, void* key, void* value) { 199 *p = createEntry(key, hash, value); 211 void* oldValue = current->value; 212 current->value = value; 228 return entry->value; 267 void* value = initialValue(key, context); local 293 void* value = current->value; local [all...] |
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/ |
cu_cmd.c | 76 #define GET_NAME_BY_VALUE(arr, value) get_name_by_value(arr, SIZE_ARR(arr), value) 203 if ( rate2Str[ i ].value == rate ) 216 if ( EtEvent2Str[ i ].value == ETCond ) 357 /* Cast the value to be UINT16 16 bits since it is sent this way in the EXCMngr.c */ 588 char *get_name_by_value(named_value_t *arr, int arr_size, UINT32 value) 592 if( arr[i].value == value ) 621 char *end_p, *buf = (char *) parm[0].value; 636 console_printf_terminal("cmd_modify_supported_rates(): invalid value - %s\n", buf ) [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
Integer.java | 41 * The int value represented by this Integer 43 private final int value; field in class:Integer 46 * Constant for the maximum {@code int} value, 2<sup>31</sup>-1. 51 * Constant for the minimum {@code int} value, -2<sup>31</sup>. 116 * The entries whose value is -1 are never referenced. 136 * value. 138 * @param value 139 * the primitive integer value to store in the new instance. 141 public Integer(int value) { 142 this.value = value [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
ConcurrentHashMap.java | 49 * vary. Ideally, you should choose a value to accommodate as many 51 * significantly higher value than you need can waste space and time, 52 * and a significantly lower value can lead to thread contention. But 54 * not usually have much noticeable impact. A value of one is 66 * does <em>not</em> allow <tt>null</tt> to be used as a key or value. 103 * The maximum capacity, used if a higher value is implicitly 127 * Mask value for indexing into segments. The upper bits of a 133 * Shift value for indexing within segments. 181 * Because the value field is volatile, not final, it is legal wrt 183 * instead of initial value when read via a data race. Although 192 volatile V value; field in class:ConcurrentHashMap.HashEntry 1133 ConcurrentHashMap.this.put(getKey(), value); local 1221 V value; field in class:ConcurrentHashMap.SimpleEntry 1318 V value = (V) s.readObject(); local [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
IMemorySystem.java | 96 * Places <code>value</code> into first <code>length</code> bytes of the 106 * @param value 107 * the byte value to set at each location. 111 public void memset(int address, byte value, long length); 259 * Returns the value of a single byte at the given address. 266 * the address at which to get the byte value. 267 * @return the value of the byte. 272 * Sets the given single byte value at the given address. 279 * the address at which to set the byte value. 280 * @param value [all...] |
/external/icu4c/i18n/ |
udat.cpp | 569 * cloned one value array, changed one value, and then made the SimpleDateFormat 578 const UChar *value, int32_t valueLength, UErrorCode &errorCode) 583 } else if(value==NULL) { 586 array[index].setTo(value, valueLength); 593 const UChar *value, int32_t valueLength, UErrorCode &errorCode) 595 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode); 600 const UChar *value, int32_t valueLength, UErrorCode &errorCode) 602 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode); 607 const UChar *value, int32_t valueLength, UErrorCode &errorCode [all...] |
/frameworks/base/api/ |
2.xml | 41 value=""android.permission.ACCESS_CHECKIN_PROPERTIES"" 52 value=""android.permission.ACCESS_COARSE_LOCATION"" 63 value=""android.permission.ACCESS_FINE_LOCATION"" 74 value=""android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"" 85 value=""android.permission.ACCESS_MOCK_LOCATION"" 96 value=""android.permission.ACCESS_NETWORK_STATE"" 107 value=""android.permission.ACCESS_SURFACE_FLINGER"" 118 value=""android.permission.ACCESS_WIFI_STATE"" 129 value=""android.permission.ADD_SYSTEM_SERVICE"" 140 value=""android.permission.BATTERY_STATS" [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8LocationCustom.cpp | 62 void V8Location::hashAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 67 String hash = toWebCoreString(value); 85 void V8Location::hostAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 90 String host = toWebCoreString(value); 105 void V8Location::hostnameAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 110 String hostname = toWebCoreString(value); 122 void V8Location::hrefAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info [all...] |