HomeSort by relevance Sort by last modified time
    Searched full:value (Results 1926 - 1950 of 15709) sorted by null

<<71727374757677787980>>

  /external/neven/Embedded/common/src/b_BasicEm/
Math.h 45 /** computes the absolute value */
51 * Computes square root from 32 bit value.
52 * The return value 'r' is the largest possible integer that
60 * Computes square root from 16 bit value.
61 * The return value 'r' is the largest possible integer that
86 * Returns (2^x) - 1 for a value range of [0,1[
88 * Format of return value: 0.32
93 * Returns (2^x) for a value range of [-16,16[
95 * Format of return value: 16.16
101 * Returns (e^x) for a value range of [-11.0903,11.0903
    [all...]
  /external/proguard/examples/annotations/lib/
annotations.jar 
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.h 214 #define DEFINE_VAR(type, name, value, doc) \
215 type FLAGS_ ## name = value; \
220 value))
222 #define DEFINE_bool(name, value, doc) DEFINE_VAR(bool, name, value, doc)
223 #define DEFINE_string(name, value, doc) DEFINE_VAR(string, name, value, doc)
224 #define DEFINE_int32(name, value, doc) DEFINE_VAR(int32, name, value, doc)
225 #define DEFINE_int64(name, value, doc) DEFINE_VAR(int64, name, value, doc
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.29-1.js 27 value getUTCSeconds ( ).
29 If ms is not specified, this behaves as if ms were specified with the value
32 1. Let t be this time value.
40 7. Set the [[Value]] property of the this value to TimeClip(Result(6)).
41 8. Return the value of the [[Value]] property of the this value.
63 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
140 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() )
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 74 v8::Handle<v8::Value> WindowSetTimeoutImpl(const v8::Arguments& args, bool singleShot)
89 v8::Handle<v8::Value> function = args[0];
95 v8::Handle<v8::Value> v8String = function->ToString();
120 v8::Local<v8::Value>* params = 0;
122 params = new v8::Local<v8::Value>[paramCount];
150 static v8::Handle<v8::Value> convertBase64(const String& str, bool encode)
172 v8::Handle<v8::Value> V8DOMWindow::eventAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
187 v8::Handle<v8::Value> jsEvent = context->Global()->GetHiddenValue(eventSymbol);
193 void V8DOMWindow::eventAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info
    [all...]
  /external/webkit/WebCore/dom/
InputElement.cpp 48 // FIXME: According to HTML4, the length attribute's value can be arbitrarily
120 void InputElement::setValueFromRenderer(InputElementData& data, InputElement* inputElement, Element* element, const String& value)
123 ASSERT_UNUSED(inputElement, value == inputElement->sanitizeValue(value) || inputElement->sanitizeValue(value).isEmpty());
126 // The assert macro above may also be simplified to: value == constrainValue(value)
128 if (value == "\n")
131 data.setValue(value);
170 // We use RenderTextControlSingleLine::text() instead of InputElement::value()
    [all...]
  /external/webkit/WebCore/svg/
SVGRadialGradientElement.cpp 51 // Spec: If the cx/cy/r attribute is not specified, the effect is as if a value of "50%" were specified.
61 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
63 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
65 setRBaseValue(SVGLength(LengthModeOther, attr->value()));
66 if (rBaseValue().value(this) < 0.0)
67 document()->accessSVGExtensions()->reportError("A negative value for radial gradient radius <r> is not allowed");
69 setFxBaseValue(SVGLength(LengthModeWidth, attr->value()));
71 setFyBaseValue(SVGLength(LengthModeHeight, attr->value()));
128 focalPoint = FloatPoint(attributes.fx().value(this), attributes.fy().value(this))
    [all...]
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 38 * &lt;Col column = "name" value = "foo feebe "/>
39 * &lt;Col column = "addr" value = "Tx"/>
51 * &lt;col column = "name" value = "foo feebe"/>
52 * &lt;col column = "addr" value = "Tx"/>
54 * &lt;col column="number" value="512-514-6535"/>
57 * &lt;col column="cell" value="512-514-6535"/>
65 * &lt;col column= "name" value = "foo feebe"/>
66 * &lt;col column= "addr" value = "Tx"/>
166 String value = atts.getValue(1); local
167 if (key != null && key.length() > 0 && value != null && value.length() > 0)
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 51 * any other thread. The returned object's 'have value' flag is cleared and its expected
171 CharSequence value = null; local
178 value = callback.mTextAfterCursor;
185 return value;
189 CharSequence value = null; local
196 value = callback.mTextBeforeCursor;
203 return value;
207 int value = 0; local
214 value = callback.mCursorCapsMode;
221 return value;
225 ExtractedText value = null; local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/
BodyDescriptor.java 69 * @param value the field value.
71 public void addField(String name, String value) {
78 value = value.trim().toLowerCase();
79 if (value.length() > 0) {
80 transferEncoding = value;
86 value = value.trim();
89 * Unfold Content-Type value
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
IAndroidTarget.java 78 * Return value for {@link #getUsbVendorId()} meaning no USB vendor IDs are defined by the
180 * Return the value of a given property for this target.
181 * @return the property value or <code>null</code> if it was not found.
186 * Returns the value of a given property for this target as an Integer value.
187 * <p/> If the value is missing or is not an integer, the method will return the given default
188 * value.
190 * @param defaultValue the default value to return.
197 * Returns the value of a given property for this target as a Boolean value
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 143 expectedCursor + "; actual value: " + cursor);
148 public void writeByte(int value) {
159 data[writeAt] = (byte) value;
164 public void writeShort(int value) {
175 data[writeAt] = (byte) value;
176 data[writeAt + 1] = (byte) (value >> 8);
181 public void writeInt(int value) {
192 data[writeAt] = (byte) value;
193 data[writeAt + 1] = (byte) (value >> 8);
194 data[writeAt + 2] = (byte) (value >> 16)
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/zip/
ZipEntry.java 194 * @param value
197 public void setCompressedSize(long value) {
198 compressedSize = value;
204 * @param value
207 * if {@code value} is < 0 or > 0xFFFFFFFFL.
209 public void setCrc(long value) {
210 if (value >= 0 && value <= 0xFFFFFFFFL) {
211 crc = value;
236 * @param value
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
AbstractMap.java 80 * Returns whether this map contains the specified value.
82 * @param value
83 * the value to search for.
84 * @return {@code true} if this map contains the specified value,
87 public boolean containsValue(Object value) {
89 if (value != null) {
91 if (value.equals(it.next().getValue())) {
160 * Returns the value of the mapping with the specified key.
164 * @return the value of the mapping with the specified key, or {@code null}
189 * return the same value for this method
369 Object value = entry.getValue(); local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/
XMLReader.java 71 * Look up the value of a feature flag.
75 * temporarily be unable to return its value.
118 * @return The current value of the feature (true or false).
120 * value can't be assigned or retrieved.
123 * cannot determine its value at this time.
131 * Set the value of a feature flag.
134 * possible for an XMLReader to expose a feature value but
135 * to be unable to change the current value.
145 * @param value The requested value of the feature (true or false)
    [all...]
  /external/bluetooth/hcidump/parser/
csr.c 74 uint16_t value; local
76 value = CSR_U16(frm);
79 printf("%s: value %s (%d)\n", str, value ? "TRUE" : "FALSE", value);
84 int16_t value; local
86 value = CSR_S16(frm);
89 printf("%s: value %d (0x%2.2x)\n", str, value, value);
94 int16_t value; local
104 uint16_t value; local
114 uint32_t value; local
    [all...]
  /external/kernel-headers/original/linux/
jiffies.h 15 * OSF/1 kernel. The SHIFT_HZ define expresses the same value as the
53 /* HZ is the requested value. ACTHZ is actual HZ ("<< 8" is for accuracy) */
67 /* a value TUSEC for TICK_USEC (can be set bij adjtimex) */
77 * The 64-bit value is not volatile - you MUST NOT read it
119 * Have the 32 bit jiffies value wrap 5 minutes after boot
140 * values the update wall clock code uses as the jiffies size. This value
226 * for more details. It is the scaled resolution rounding value. Note
227 * that it is a 64-bit value. Since, when it is applied, we are already
233 * The maximum jiffie value is (MAX_INT >> 1). Here we translate that
301 * The TICK_NSEC - 1 rounds up the value to the next resolution. Not
    [all...]
  /external/ppp/pppd/plugins/radius/
avpair.c 26 * Purpose: add an attribute-value pair to the given list.
53 * Purpose: assign the given value to an attribute-value pair.
104 * Purpose: make a new attribute-value pair with given parameters.
146 * Purpose: takes attribute/value pairs from buffer and builds a
168 * Extract attribute-value pairs
216 pair->attribute = attr->value;
314 pair->attribute = attr->value;
345 * Purpose: Find the first attribute value-pair (which matches the given
346 * attribute) from the specified value-pair list
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_wingl.c 411 int WIN_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
417 *value = this->gl_data->wglGetSwapIntervalEXT();
474 this->gl_data->wglGetPixelFormatAttribivARB(GL_hdc, pixel_format, 0, 1, &wgl_attrib, value);
475 if ( *value == WGL_NO_ACCELERATION_ARB ) {
476 *value = SDL_FALSE;
478 *value = SDL_TRUE;
484 this->gl_data->wglGetPixelFormatAttribivARB(GL_hdc, pixel_format, 0, 1, &wgl_attrib, value);
492 *value = GL_pfd.cRedBits;
495 *value = GL_pfd.cGreenBits;
498 *value = GL_pfd.cBlueBits
    [all...]
  /external/v8/src/
scanner.h 93 // returns a value < 0 when the buffer end is reached
153 Token::Value token() { return token_; }
192 Token::Value token;
206 Token::Value token_;
212 Token::Value keyword_token_;
219 Token::Value token_if_match) {
242 Token::Value keyword_token) {
273 Token::Value Next();
276 Token::Value peek() const { return next_.token; }
375 Token::Value token
    [all...]
  /external/webkit/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 54 static PassRefPtr<CanvasStyle> toHTMLCanvasStyle(ExecState* exec, JSValue value)
56 if (value.isString())
57 return CanvasStyle::create(asString(value)->value(exec));
58 if (!value.isObject())
60 JSObject* object = asObject(value);
74 void JSCanvasRenderingContext2D::setStrokeStyle(ExecState* exec, JSValue value)
77 context->setStrokeStyle(toHTMLCanvasStyle(exec, value));
86 void JSCanvasRenderingContext2D::setFillStyle(ExecState* exec, JSValue value)
89 context->setFillStyle(toHTMLCanvasStyle(exec, value));
191 JSValue value = args.at(0); local
273 JSValue value = args.at(0); local
339 JSValue value = args.at(0); local
    [all...]
  /frameworks/base/media/java/android/media/
ExifInterface.java 106 * Returns the value of the specified tag or {@code null} if there
116 * Returns the integer value of the specified tag. If there is no such tag
117 * in the JPEG file or the value cannot be parsed as integer, return
121 * @param defaultValue the value to return if the tag is not available.
124 String value = mAttributes.get(tag); local
125 if (value == null) return defaultValue;
127 return Integer.valueOf(value);
134 * Returns the double value of the specified rational tag. If there is no
135 * such tag in the JPEG file or the value cannot be parsed as double, return
139 * @param defaultValue the value to return if the tag is not available
142 String value = mAttributes.get(tag); local
    [all...]
  /dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
BigDecimalArithmeticTest.java 57 assertEquals("incorrect value", c, result.toString());
81 assertEquals("incorrect value", c, result.toString());
104 assertEquals("incorrect value", c, result.toString());
128 assertEquals("incorrect value ", c, result.toString());
151 assertEquals("incorrect value", c, result.toString());
175 assertEquals("incorrect value", c, result.toString());
198 assertEquals("incorrect value", c, result.toString());
221 assertEquals("incorrect value", c, result.toString());
241 assertEquals("incorrect value", "123456789012345.67",
243 assertEquals("incorrect value", "100000000000000.00"
    [all...]
  /external/bluetooth/glib/gobject/
gparamspecs.h 580 * @minimum: minimum value for the property specified
581 * @maximum: maximum value for the property specified
582 * @default_value: default value for the property specified
597 * @minimum: minimum value for the property specified
598 * @maximum: maximum value for the property specified
599 * @default_value: default value for the property specified
614 * @default_value: default value for the property specified
627 * @minimum: minimum value for the property specified
628 * @maximum: maximum value for the property specified
629 * @default_value: default value for the property specifie
    [all...]
  /external/clearsilver/util/
snprintf.c 53 * fixed return value to comply with C99
105 char *value, int flags, int min, int max);
107 long value, int base, int min, int max, int flags);
147 long value; local
274 value = va_arg (args, short int);
276 value = va_arg (args, long int);
278 value = va_arg (args, int);
279 total += fmtint (buffer, &currlen, maxlen, value, 10, min, max, flags);
284 value = va_arg (args, unsigned short int);
286 value = va_arg (args, unsigned long int)
    [all...]

Completed in 1309 milliseconds

<<71727374757677787980>>