/dalvik/tools/ |
gclog.py | 39 """Unpack a float12 value""" 41 raise DataParseError, "bad float12 value %s" % f12 45 def parseGlobalInfo(value): 47 value = int(value) 55 id = (value >> 24) & 0xffffffffff 56 gctime = unfloat12((value >> 12) & 0xfff) 57 bytes_freed = unfloat12(value & 0xfff) 69 def parseAggHeapStats(value): 71 value = int(value [all...] |
/external/libpng/projects/cbuilder5/ |
libpng.bpr | 5 <VERSION value="BCB.05.03"/>
6 <PROJECT value="libpng.dll"/>
7 <OBJFILES value="libpng.obj ..\..\pngwutil.obj ..\..\pngerror.obj ..\..\pngget.obj
11 <RESFILES value=""/>
12 <DEFFILE value=""/>
13 <RESDEPEN value="$(RESFILES)"/>
14 <LIBFILES value="..\..\..\zlib\zlib.lib"/>
15 <LIBRARIES value="bcbsmp50.lib dclocx50.lib NMFast50.lib Tee50.lib Vclx50.lib Vcl50.lib"/>
16 <SPARELIBS value="Vcl50.lib Vclx50.lib Tee50.lib NMFast50.lib dclocx50.lib bcbsmp50.lib"/>
17 <PACKAGES value="Vcl50.bpi Vclx50.bpi bcbsmp50.bpi Qrpt50.bpi Vcldb50.bpi Vclbde50.bpi [all...] |
/frameworks/base/awt/javax/imageio/metadata/ |
IIOStandardMetadataFormat.java | 84 addAttribute("NumChannels", "value", DATATYPE_INTEGER, true, 0, Integer.MAX_VALUE); // list 90 addAttribute("Gamma", "value", DATATYPE_FLOAT, true, null); 93 addBooleanAttribute("BlackIsZero", "value", true, true); 104 addAttribute("BackgroundIndex", "value", DATATYPE_INTEGER, true, null); 115 addAttribute("CompressionTypeName", "value", DATATYPE_STRING, true, null); 118 addBooleanAttribute("Lossless", "value", true, true); 121 addAttribute("NumProgressiveScans", "value", DATATYPE_INTEGER, true, null); 124 addAttribute("BitRate", "value", DATATYPE_FLOAT, true, null); 135 addAttribute("PlanarConfiguration", "value", DATATYPE_STRING, true, null, values); 143 addAttribute("SampleFormat", "value", DATATYPE_STRING, true, null, values) [all...] |
/frameworks/base/core/java/android/database/ |
MatrixCursor.java | 62 * Gets value at the given column for the current row. 184 * value at a time. Follows the same ordering as the column names specified 198 * Sets the next column value in this row. 229 Object value = get(column); local 230 if (value == null) return null; 231 return value.toString(); 236 Object value = get(column); local 237 if (value == null) return 0; 238 if (value instanceof Number) return ((Number) value).shortValue() 244 Object value = get(column); local 252 Object value = get(column); local 260 Object value = get(column); local 268 Object value = get(column); local [all...] |
/system/core/libpixelflinger/tinyutils/ |
TypeHelpers.h | 24 template <typename T> struct trait_trivial_ctor { enum { value = false }; }; enumerator in enum:android::trait_trivial_ctor::__anon13084 25 template <typename T> struct trait_trivial_dtor { enum { value = false }; }; enumerator in enum:android::trait_trivial_dtor::__anon13085 26 template <typename T> struct trait_trivial_copy { enum { value = false }; }; enumerator in enum:android::trait_trivial_copy::__anon13086 27 template <typename T> struct trait_trivial_assign{ enum { value = false }; }; enumerator in enum:android::trait_trivial_assign::__anon13087 29 template <typename T> struct trait_pointer { enum { value = false }; }; enumerator in enum:android::trait_pointer::__anon13088 30 template <typename T> struct trait_pointer<T*> { enum { value = true }; }; enumerator in enum:android::trait_pointer::__anon13089 33 template<> struct trait_trivial_ctor< T > { enum { value = true }; }; \ 34 template<> struct trait_trivial_dtor< T > { enum { value = true }; }; \ 35 template<> struct trait_trivial_copy< T > { enum { value = true }; }; \ 36 template<> struct trait_trivial_assign< T >{ enum { value = true }; }; 212 VALUE value; member in struct:android::key_value_pair_t 225 { enum { value = aggregate_traits<K,V>::has_trivial_ctor }; }; enumerator in enum:android::trait_trivial_ctor::__anon13092 229 { enum { value = aggregate_traits<K,V>::has_trivial_dtor }; }; enumerator in enum:android::trait_trivial_dtor::__anon13093 233 { enum { value = aggregate_traits<K,V>::has_trivial_copy }; }; enumerator in enum:android::trait_trivial_copy::__anon13094 237 { enum { value = aggregate_traits<K,V>::has_trivial_assign};}; enumerator in enum:android::trait_trivial_assign::__anon13095 [all...] |
/external/webkit/WebCore/bindings/objc/ |
DOMCSS.mm | 137 [self setProperty:@"azimuth" value:azimuth priority:@""]; 147 [self setProperty:@"background" value:background priority:@""]; 157 [self setProperty:@"background-attachment" value:backgroundAttachment priority:@""]; 167 [self setProperty:@"background-color" value:backgroundColor priority:@""]; 177 [self setProperty:@"background-image" value:backgroundImage priority:@""]; 187 [self setProperty:@"background-position" value:backgroundPosition priority:@""]; 197 [self setProperty:@"background-repeat" value:backgroundRepeat priority:@""]; 207 [self setProperty:@"border" value:border priority:@""]; 217 [self setProperty:@"border-collapse" value:borderCollapse priority:@""]; 227 [self setProperty:@"border-color" value:borderColor priority:@""] [all...] |
/external/srec/shared/src/ |
SessionTypeImpl.c | 102 data->value = NULL; 105 CHK(rc, HashMapCreate(&data->value)); 121 const LCHAR* name, void** value, 128 CHK(rc, HashMapGet(data->value, name, (void **)&pair)); 135 *value = pair->value; 142 const LCHAR* name, int* value) 149 CHK(rc, HashMapGet(data->value, name, (void **)&pair)); 155 *value = *((int*) pair->value); 581 char* value = NULL; local 695 LCHAR* value; local 721 LCHAR* value; local 747 LCHAR* value; local 773 LCHAR* value; local 799 LCHAR* value; local 848 LCHAR* value; local 1017 int value; local [all...] |
LStringImpl.c | 40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG); 41 if (impl->value == NULL) 46 LSTRCPY(impl->value, L("")); 47 if (impl->value == NULL) 53 ESR_ReturnCode LString_Append(LString* self, const LCHAR* value) 58 needed = LSTRLEN(impl->value) + LSTRLEN(value) + 1; 62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2))); 66 impl->value = temp; 68 LSTRCAT(impl->value, value) [all...] |
/dalvik/libcore/sql/src/main/java/java/sql/ |
DataTruncation.java | 24 * value either when reading (resulting in warning), or when writing data 51 * SQLException} default value, and the other fields are set to the values 55 * the Index value of the column value or parameter that was 58 * {@code true} if it was a parameter value that was truncated, 82 * value is set to {@code -1} if the size is unknown. 98 * Gets whether the value truncated was a parameter value or a column value. 100 * @return {@code true} if the value truncated was a parameter value [all...] |
/external/kernel-headers/original/asm-generic/ |
mutex-xchg.h | 17 * from 1 to a 0 value 19 * @fail_fn: function to call if the original value was not 1 21 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it 22 * wasn't 1 originally. This function MUST leave the value lower than 1 36 * from 1 to a 0 value 38 * @fail_fn: function to call if the original value was not 1 40 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it 58 * @fail_fn: function to call if the original value was not 0 61 * In the failure case, this function is allowed to either set the value to 62 * 1, or to set it to a value lower than one [all...] |
/external/skia/include/core/ |
SkTDict.h | 36 bool set(const char name[], const T& value) 38 return set(name, strlen(name), value); 41 bool set(const char name[], size_t len, const T& value) 49 fArray[index].fValue = value; 59 pair->fValue = value; 74 bool find(const char name[], T* value) const 76 return find(name, strlen(name), value); 79 bool find(const char name[], size_t len, T* value) const 85 if (value) 86 *value = fArray[index].fValue [all...] |
/external/webkit/WebCore/html/canvas/ |
WebGLGetInfo.h | 72 WebGLGetInfo(bool value); 73 WebGLGetInfo(float value); 74 WebGLGetInfo(long value); 75 // Represents the NULL value and type 77 WebGLGetInfo(const String& value); 78 WebGLGetInfo(unsigned long value); 79 WebGLGetInfo(PassRefPtr<WebGLBuffer> value); 80 WebGLGetInfo(PassRefPtr<WebGLFloatArray> value); 81 WebGLGetInfo(PassRefPtr<WebGLFramebuffer> value); 82 WebGLGetInfo(PassRefPtr<WebGLIntArray> value); [all...] |
/frameworks/base/awt/java/awt/ |
RenderingHints.java | 33 * key-value pairs. 47 * rendering hint value. 54 * rendering hint value. 61 * rendering hint value. 72 * The Constant VALUE_ANTIALIAS_DEFAULT - antialiasing rendering hint value. 77 * The Constant VALUE_ANTIALIAS_ON - antialiasing rendering hint value. 82 * The Constant VALUE_ANTIALIAS_OFF - antialiasing rendering hint value. 92 * The Constant VALUE_COLOR_RENDER_DEFAULT - color rendering hint value. 97 * The Constant VALUE_COLOR_RENDER_SPEED - color rendering hint value. 102 * The Constant VALUE_COLOR_RENDER_QUALITY - color rendering hint value [all...] |
/frameworks/base/media/libdrm/mobile2/include/rights/ |
Constraint.h | 78 * Set the start time value of constraint. 79 * @param time the specific time value. 85 * @return value of start time. 91 * @param time the value of end time. 97 * @param return the value of end time. 109 * @return the value of accumulated 115 * @param count the value of count. 121 * @return value of count. 126 * Set the value of timer. 127 * @param timer the value of the timer [all...] |
/system/core/nexus/ |
Property.h | 40 virtual int set(int idx, const char *value) = 0; 41 virtual int set(int idx, int value) = 0; 42 virtual int set(int idx, struct in_addr *value) = 0; 59 virtual int set(int idx, const char *value) = 0; 60 int set(int idx, int value); 61 int set(int idx, struct in_addr *value); 74 int set(int idx, const char *value); 83 int set(int idx, const char *value); 84 virtual int set(int idx, int value) = 0; 85 int set(int idx, struct in_addr *value); [all...] |
/external/skia/src/animator/ |
SkAnimatorScript.cpp | 111 boxedValue->value = !! scriptValue->fOperand.fS32; 116 boxedValue->value = scriptValue->fOperand.fS32; 121 boxedValue->value = scriptValue->fOperand.fScalar; 142 void* eng, SkScriptValue* value) { 153 success = engine.evaluateScript(&script, value); 155 *value = *scriptValue; 159 bool SkAnimatorScript::EvalEnum(const char* token, size_t len, void* callBack, SkScriptValue* value) { 161 value->fType = SkType_Int; 162 if (MapEnums(tokens, token, len, (int*)&value->fOperand.fS32)) 167 bool SkAnimatorScript::EvalID(const char* token, size_t len, void* user, SkScriptValue* value) { 321 SkScriptValue value; local 330 SkScriptValue value; local 339 SkScriptValue value; local 348 SkScriptValue value; local 358 SkScriptValue value; local 574 SkScriptValue value; local [all...] |
SkDrawColor.cpp | 37 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue); local 39 return value/255; 40 SkScalar delta = value - min; 41 SkScalar saturation = value == 0 ? 0 : SkScalarDiv(delta, value); 49 if (red == value) { 54 else if (green == value) 56 else // blue == value 71 SkScalar value = choice == kGetValue ? hsv : RGB_to_HSV(color, kGetValue); local 72 value *= 255 [all...] |
/frameworks/base/core/java/android/net/ |
UrlQuerySanitizer.java | 56 * <li>Subclass UrlQuerySanitizer.ValueSanitizer to define your own value 64 * A simple tuple that holds parameter-value pairs. 69 * Construct a parameter-value tuple. 71 * @param value an unencoded value 74 String value) { 76 mValue = value; 83 * The unencoded value 100 * A functor used to sanitize a single query value. 105 * Sanitize an unencoded value [all...] |
/cts/tools/dex-tools/dex/ |
classes0.out.dex | 19 @dalvik.annotation.Throws (value =Ljava/lang/CloneNotSupportedException; ) 24 @dalvik.annotation.Throws (value =Ljava/lang/Throwable; ) 26 @dalvik.annotation.Signature (value =()Ljava/lang/Class<+Ljava/lang/Object;>; ) 36 @dalvik.annotation.Throws (value =Ljava/lang/InterruptedException; ) 38 @dalvik.annotation.Throws (value =Ljava/lang/InterruptedException; ) 41 @dalvik.annotation.Throws (value =Ljava/lang/InterruptedException; ) 86 @dalvik.annotation.Throws (value =Ljava/io/IOException; ) 92 @dalvik.annotation.Throws (value =Ljava/io/IOException; ) 106 @dalvik.annotation.Throws (value =Ljava/io/IOException; ) 120 @dalvik.annotation.Throws (value =Ljava/io/IOException; [all...] |
/cts/tests/res/values/ |
attrs.xml | 21 <enum name="type" value="28" /> 22 <enum name="data" value="0xff00ff00" /> 23 <enum name="asset_cookie" value="0" /> 24 <enum name="resource_id" value="0" /> 25 <enum name="changing_config" value="0" /> 28 <enum name="type" value="28" /> 29 <enum name="data" value="0xff0000ff" /> 30 <enum name="asset_cookie" value="0" /> 31 <enum name="resource_id" value="0" /> 32 <enum name="changing_config" value="0" / [all...] |
/dalvik/libcore/json/src/main/java/org/json/ |
JSONObject.java | 27 * A modifiable set of name/value mappings. Names are unique, non-null strings. 52 * coerced, the sentinel value {@link JSONObject#NULL} is coerced to the 58 * <li>Use <code>get<i>Type</i>()</code> to retrieve a mandatory value. This 59 * fails with a {@code JSONException} if the requested name has no value 60 * or if the value cannot be coerced to the requested type. 61 * <li>Use <code>opt<i>Type</i>()</code> to retrieve an optional value. This 63 * value or if the value cannot be coerced to the requested type. 67 * ways: the standard Java {@code null} reference, and the sentinel value {@link 70 * entry whose value is {@code JSONObject.NULL} 182 Object value = copyFrom.opt(name); local 203 nameValuePairs.put(checkName(name), value); local 227 nameValuePairs.put(checkName(name), value); local 238 nameValuePairs.put(checkName(name), value); local 262 nameValuePairs.put(checkName(name), value); local 334 Object value = nameValuePairs.get(name); local [all...] |
/development/ide/intellij/ |
IndecentExposure.xml | 3 <option name="myName" value="IndecentExposure" /> 4 <option name="myLocal" value="true" /> 15 <option name="m_includeComments" value="true" /> 16 <option name="m_ignoreTestCases" value="true" /> 17 <option name="m_ignoreIgnoreParameter" value="true" /> 30 <option name="REPORT_MISSING_TRANSLATIONS" value="true" /> 31 <option name="REPORT_INCONSISTENT_PROPERTIES" value="true" /> 32 <option name="REPORT_DUPLICATED_PROPERTIES" value="true" /> 43 <option name="CHECK_PLUGIN_XML" value="true" /> 44 <option name="CHECK_JAVA_CODE" value="true" / [all...] |
/external/bluetooth/bluez/common/ |
sdp-xml.c | 45 static void convert_raw_data_to_xml(sdp_data_t *value, int indent_level, 53 if (!value) 70 switch (value->dtd) { 78 appender(data, "<boolean value=\""); 79 appender(data, value->val.uint8 ? "true" : "false"); 85 appender(data, "<uint8 value=\""); 86 snprintf(buf, STRBUFSIZE - 1, "0x%02x", value->val.uint8); 93 appender(data, "<uint16 value=\""); 94 snprintf(buf, STRBUFSIZE - 1, "0x%04x", value->val.uint16); 101 appender(data, "<uint32 value=\"") 380 sdp_data_t *value = (sdp_data_t *) val; local [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/ |
AtomicIntegerArray.java | 82 * Gets the current value at position {@code i}. 85 * @return the current value 92 * Sets the element at position {@code i} to the given value. 95 * @param newValue the new value 103 * value and returns the old value. 106 * @param newValue the new value 107 * @return the previous value 119 * updated value if the current value {@code ==} the expected value [all...] |
/external/bluetooth/glib/gobject/ |
gvaluearray.c | 38 * @title: Value arrays 57 * @value_array: #GValueArray to get a value from 58 * @index_: index of the value of interest 60 * Return a pointer to the value at @index_ containd in @value_array. 62 * Returns: pointer to a value at @index_ in @value_array 113 * regardless of the value of @n_prealloced. 146 GValue *value = value_array->values + i; local 148 if (G_VALUE_TYPE (value) != 0) /* we allow unset values in the array */ 149 g_value_unset (value); 180 GValue *value = new_array->values + i local [all...] |