/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
Consumer.java | 27 * Consumes a value. 29 * @param value The value to consume. 30 * @return {@code true} if the value was accepted, {@code false} otherwise. 32 boolean consume(A value);
|
/external/opencore/baselibs/media_data_structures/src/ |
media_clock_converter.cpp | 34 // Timescale value cannot be zero 47 uint64 value = (uint64(src.get_wrap_count())) << 32; local 49 value += src.get_current_timestamp(); 52 value = (uint64(value) * timescale + uint64(src.get_timescale() - 1)) / src.get_timescale(); 54 wrap_count = ((uint32)(value >> 32)) % timescale; 56 current_ts = (uint32)(value & 0xFFFFFFFF); 62 // Timescale value cannot be zero 75 uint64 value = ((uint64)wrap_count) << 32; local 76 value += current_ts 208 uint64 value = ((uint64)wrap_count) << 32; local [all...] |
/external/webkit/WebCore/bindings/js/ |
ScriptObject.cpp | 63 bool ScriptObject::set(const String& name, const String& value) 67 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsString(m_scriptState, value), slot); 71 bool ScriptObject::set(const char* name, const ScriptObject& value) 73 if (value.scriptState() != m_scriptState) { 79 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), value.jsObject(), slot); 83 bool ScriptObject::set(const char* name, const String& value) 87 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsString(m_scriptState, value), slot); 91 bool ScriptObject::set(const char* name, double value) 95 jsObject()->put(m_scriptState, Identifier(m_scriptState, name), jsNumber(m_scriptState, value), slot); 99 bool ScriptObject::set(const char* name, long value) [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
Double.java | 31 * The value which the receiver represents. 33 private final double value; field in class:Double 36 * Constant for the maximum {@code double} value, (2 - 2<sup>-52</sup>) * 42 * Constant for the minimum {@code double} value, 2<sup>-1074</sup>. 49 * Constant for the Not-a-Number (NaN) value of the {@code double} type. 54 * Constant for the Positive Infinity value of the {@code double} type. 59 * Constant for the Negative Infinity value of the {@code double} type. 86 * value. 88 * @param value 89 * the primitive double value to store in the new instance [all...] |
/external/webkit/JavaScriptCore/qt/api/ |
qscriptvalue_p.h | 47 Current value is kept in m_string, 49 value is kept in m_number 50 CBool -> QSVP is created from bool and no JSC engine has been associated yet. Current value is kept 52 CSpecial -> QSVP is Undefined or Null, but a JSC engine hasn't been associated yet, current value 73 inline QScriptValuePrivate(bool value); 77 inline QScriptValuePrivate(QScriptValue::SpecialValue value); 79 inline QScriptValuePrivate(const QScriptEngine* engine, bool value); 80 inline QScriptValuePrivate(const QScriptEngine* engine, int value); 81 inline QScriptValuePrivate(const QScriptEngine* engine, uint value); 82 inline QScriptValuePrivate(const QScriptEngine* engine, qsreal value); 601 JSValueRef value; local 646 QScriptValuePrivate* value = QScriptValuePrivate::get(*i); local 681 JSValueRef QScriptValuePrivate::value() const function in class:QScriptValuePrivate 698 JSValueProtect(context(), value); local [all...] |
/external/webkit/LayoutTests/fast/js/resources/ |
json2-es5-compat.js | 14 JSON.stringify(value, replacer, space) 15 value any JavaScript value, usually an object or array. 28 This method produces a JSON text from a JavaScript value. 30 When an object value is found, if the object contains a toJSON 33 value represented by the name/value pair that should be serialized, 35 will be passed the key associated with the value, and this will be 55 key and value of each member, with this bound to the containing 56 object. The value that is returned from your method will b [all...] |
/cts/tests/tests/jni/src/android/jni/cts/ |
JniStaticTest.java | 35 * Test a simple value-returning (but otherwise no-op) method call. 42 * Test a simple value-returning (but otherwise no-op) method call. 49 * Test a simple value-returning (but otherwise no-op) method call. 56 * Test a simple value-returning (but otherwise no-op) method call. 63 * Test a simple value-returning (but otherwise no-op) method call. 70 * Test a simple value-returning (but otherwise no-op) method call. 77 * Test a simple value-returning (but otherwise no-op) method call. 84 * Test a simple value-returning (but otherwise no-op) method call. 91 * Test a simple value-returning (but otherwise no-op) method call. 98 * Test a simple value-returning (but otherwise no-op) method call [all...] |
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
UserDataNotification.java | 45 * Get value of operation parameter 47 * @return value of operation parameter 54 * Gets value of key parameter 56 * @return value of key parameter 63 * Gets value of data parameter 65 * @return value of data parameter 72 * Gets value of src parameter 74 * @return value of src parameter 81 * Gets value of dst parameter 83 * @return value of dst paramete [all...] |
DocumentBuilderSettingStrategy.java | 39 boolean value) throws DOMTestIncompatibleException; 45 public void applySetting(DocumentBuilderFactory factory, boolean value) 47 factory.setCoalescing(value); 59 public void applySetting(DocumentBuilderFactory factory, boolean value) 61 factory.setExpandEntityReferences(value); 72 public void applySetting(DocumentBuilderFactory factory, boolean value) 74 factory.setIgnoringElementContentWhitespace(value); 84 public void applySetting(DocumentBuilderFactory factory, boolean value) 86 if (value) { 100 public void applySetting(DocumentBuilderFactory factory, boolean value) throw [all...] |
/development/host/windows/usb/api/ |
AdbWinApi.rc | 76 VALUE "CompanyName", "Google, inc"
77 VALUE "FileDescription", "Android ADB API"
78 VALUE "FileVersion", "2.0.0.0"
79 VALUE "LegalCopyright", "Copyright (C) 2006 The Android Open Source Project"
80 VALUE "InternalName", "AdbWinApi.dll"
81 VALUE "OriginalFilename", "AdbWinApi.dll"
82 VALUE "ProductName", "Android SDK"
83 VALUE "ProductVersion", "2.0.0.0"
84 VALUE "OLESelfRegister", ""
89 VALUE "Translation", 0x0409, 1252 [all...] |
/development/host/windows/usb/winusb/ |
AdbWinUsbApi.rc | 76 VALUE "CompanyName", "Google, inc"
77 VALUE "FileDescription", "Android ADB API (WinUsb)"
78 VALUE "FileVersion", "2.0.0.0"
79 VALUE "LegalCopyright", "Copyright (C) 2006 The Android Open Source Project"
80 VALUE "InternalName", "AdbWinUsbApi.dll"
81 VALUE "OriginalFilename", "AdbWinUsbApi.dll"
82 VALUE "ProductName", "Android SDK"
83 VALUE "ProductVersion", "2.0.0.0"
84 VALUE "OLESelfRegister", ""
89 VALUE "Translation", 0x0409, 1252 [all...] |
/external/e2fsprogs/e2fsck/ |
prof_err.c | 10 "Bad magic value in profile_node", 14 "A profile section header has a non-zero value", 18 "Bad magic value in profile iterator", 19 "Can't set value on section node", 27 "Bad magic value in profile_t", 28 "Bad magic value in profile_section_t", 34 "Bad magic value in profile_file_t", 37 "Invalid boolean value", 38 "Invalid integer value", 39 "Bad magic value in profile_file_data_t" [all...] |
prof_err.et | 8 error_code PROF_MAGIC_NODE, "Bad magic value in profile_node" 14 "A profile section header has a non-zero value" 19 error_code PROF_MAGIC_ITERATOR, "Bad magic value in profile iterator" 20 error_code PROF_SET_SECTION_VALUE, "Can't set value on section node" 37 error_code PROF_MAGIC_PROFILE, "Bad magic value in profile_t" 38 error_code PROF_MAGIC_SECTION, "Bad magic value in profile_section_t" 49 error_code PROF_MAGIC_FILE, "Bad magic value in profile_file_t" 60 error_code PROF_BAD_BOOLEAN, "Invalid boolean value" 61 error_code PROF_BAD_INTEGER, "Invalid integer value" 63 error_code PROF_MAGIC_FILE_DATA, "Bad magic value in profile_file_data_t [all...] |
/external/icu4c/layout/ |
LESwaps.h | 26 #define SWAPW(value) LESwaps::swapWord((const le_uint16 &) (value)) 34 #define SWAPL(value) LESwaps::swapLong((const le_uint32 &) (value)) 52 * @param value - the word to be byte swapped 58 static le_uint16 swapWord(const le_uint16 &value) 60 const le_uint8 *p = (const le_uint8 *) &value; 69 * @param value - the long to be byte swapped 75 static le_uint32 swapLong(const le_uint32 &value) 77 const le_uint8 *p = (const le_uint8 *) &value; [all...] |
/external/proguard/src/proguard/evaluation/ |
BasicInvocationUnit.java | 30 import proguard.evaluation.value.*; 55 * Creates a new BasicInvocationUnit with the given value factory. 89 // Get the reference value. 90 Value value = getMethodParameterValue(clazz, local 96 // Store the value in variable 0. 97 variables.store(variableIndex++, value); 113 // Get the parameter value. 114 Value value = getMethodParameterValue(clazz local [all...] |
/external/proguard/src/proguard/optimize/ |
ConstantMemberFilter.java | 26 import proguard.evaluation.value.Value; 59 Value value = StoringInvocationUnit.getFieldValue(programField); local 60 if (value != null && 61 value.isParticular()) 70 Value value = StoringInvocationUnit.getMethodReturnValue(programMethod); local 71 if (value != null && 72 value.isParticular() [all...] |
/external/webkit/WebCore/manual-tests/ |
select-onchange-after-js.html | 8 after changing the value via JavaScript.</p> 13 <option value="1">Please change this to another value</option> 14 <option value="2">(to this one)</option> 19 <option value="1">(to this one)</option> 20 <option value="2" selected>Please change this to another value</option> 29 sel.options[0].text='Please change this to another value once again'; 30 sel.value = '1'; 39 sel.options[1].text='Please change this to another value once again' [all...] |
/external/webkit/WebCore/bindings/v8/ |
V8Binding.cpp | 130 String v8ValueToWebCoreString(v8::Handle<v8::Value> value) 132 if (value->IsString()) 133 return v8StringToWebCoreString(v8::Handle<v8::String>::Cast(value)); 134 return v8NonStringValueToWebCoreString(value); 137 AtomicString v8ValueToAtomicWebCoreString(v8::Handle<v8::Value> value) 139 if (value->IsString()) 140 return v8StringToAtomicWebCoreString(v8::Handle<v8::String>::Cast(value)); 141 return v8NonStringValueToAtomicWebCoreString(value); 331 int value = object->Int32Value(); local 484 v8::Handle<v8::Value> value = args.Callee()->Get(getToStringName()); local [all...] |
/external/bluetooth/glib/gobject/ |
gvalue.h | 35 * @type: A #GType value. 46 * @value: A #GValue structure. 48 * Checks if @value is a valid and initialized #GValue structure. 52 #define G_IS_VALUE(value) (G_TYPE_CHECK_VALUE (value)) 55 * @value: A #GValue structure. 57 * Get the type identifier of @value. 61 #define G_VALUE_TYPE(value) (((GValue*) (value))->g_type) 64 * @value: A #GValue structure [all...] |
/external/kernel-headers/original/linux/ |
swab.h | 96 * __swab16 - return a byteswapped 16-bit value 97 * @x: value to byteswap 105 * __swab32 - return a byteswapped 32-bit value 106 * @x: value to byteswap 114 * __swab64 - return a byteswapped 64-bit value 115 * @x: value to byteswap 123 * __swahw32 - return a word-swapped 32-bit value 124 * @x: value to wordswap 134 * __swahb32 - return a high and low byte-swapped 32-bit value 135 * @x: value to byteswa [all...] |
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_getenv.c | 38 /* Put a variable of the form "name=value" into the environment */ 42 char *value; local 59 value = SDL_envmem + (sep - variable); 60 *value++ = '\0'; 61 if ( !SetEnvironmentVariable(SDL_envmem, *value ? value : NULL) ) { 92 /* Put a variable of the form "name=value" into the environment */ 95 const char *name, *value; local 106 for ( value=variable; *value && (*value != '='); ++value ) 159 char *value; local 183 char *value; local [all...] |
/external/webkit/WebCore/html/ |
HTMLTableCellElement.cpp | 95 rSpan = !attr->isNull() ? attr->value().toInt() : 1; 100 cSpan = !attr->isNull() ? attr->value().toInt() : 1; 111 if (!attr->value().isEmpty()) { 112 int widthInt = attr->value().toInt(); 114 addCSSLength(attr, CSSPropertyWidth, attr->value()); 117 if (!attr->value().isEmpty()) { 118 int heightInt = attr->value().toInt(); 120 addCSSLength(attr, CSSPropertyHeight, attr->value()); 147 void HTMLTableCellElement::setAbbr(const String &value) 149 setAttribute(abbrAttr, value); [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/ |
EventValueDescription.java | 23 * Describes an {@link EventContainer} value. 25 * This is a stand-alone object, not linked to a particular Event. It describes the value, by 26 * name, type ({@link EventValueType}), and (if needed) value unit ({@link ValueType}). 28 * The index of the value is not contained within this class, and is instead dependent on the 36 * Represents the type of a numerical value. This is used to display values of vastly different 64 * Returns a {@link ValueType} from an integer value, or <code>null</code> if no match 66 * @param value the integer value. 68 public static ValueType getValueType(int value) { 70 if (type.mValue == value) { [all...] |
/external/srec/portable/src/ |
PANSIFileSystemImpl.c | 76 LCHAR* value; local 84 CHKLOG(rc, PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)&value)); 90 FREE(value); 106 LCHAR* value = NULL; local 132 value = MALLOC(sizeof(LCHAR) * (LSTRLEN(realPath) + 1), MTAG); 133 if (value == NULL) 139 LSTRCPY(value, realPath); 142 lstrtrim(value); 143 if (LSTRLEN(value) == 0) 145 FREE(value); 184 LCHAR* value; local 215 LCHAR* value; local 289 LCHAR* value = NULL; local 317 LCHAR* value; local 337 LCHAR* value; local 346 PFileSystem* value; local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
StringIdItem.java | 31 /** {@code non-null;} the string value */ 32 private final CstUtf8 value; field in class:StringIdItem 40 * @param value {@code non-null;} the string value 42 public StringIdItem(CstUtf8 value) { 43 if (value == null) { 44 throw new NullPointerException("value == null"); 47 this.value = value; 59 return value.equals(otherString.value) [all...] |