HomeSort by relevance Sort by last modified time
    Searched full:qvalue (Results 1 - 21 of 21) sorted by null

  /external/nist-sip/java/javax/sip/header/
AcceptEncodingHeader.java 9 void setQValue(float qValue) throws InvalidArgumentException;
AcceptHeader.java 12 void setQValue(float qValue) throws InvalidArgumentException;
AcceptLanguageHeader.java 14 void setQValue(float qValue) throws InvalidArgumentException;
ContactHeader.java 12 void setQValue(float qValue) throws InvalidArgumentException;
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptEncoding.java 55 * 1#( codings [ ";" "q" "=" qvalue ] )
108 * get QValue field
126 * Set the qvalue member
133 throw new InvalidArgumentException("qvalue out of range!");
Contact.java 210 * @param qValue float to set
212 public void setQValue(float qValue) throws InvalidArgumentException {
213 if (qValue != -1 && (qValue < 0 || qValue > 1))
216 + "the qValue is not between 0 and 1");
217 this.parameters.set(Q, Float.valueOf(qValue));
Accept.java 176 * @param qValue float to set
177 * @throws IllegalArgumentException if qValue is <0.0 or >1.0
179 public void setQValue(float qValue) throws InvalidArgumentException {
180 if (qValue == -1)
182 super.setParameter(ParameterNames.Q, qValue);
AcceptLanguage.java 46 * 1#( language-range [ ";" "q" "=" qvalue ] )
92 /** get the QValue field. Return -1 if the parameter has not been
135 * using the qvalue scale from 0 to 1. If no q-value is present, the
142 * the qValue.
151 throw new InvalidArgumentException("qvalue out of range!");
  /external/libvpx/vp8/encoder/
rdopt.h 14 void vp8_initialize_rd_consts(VP8_COMP *cpi, int Qvalue);
rdopt.c 210 void vp8_initialize_rd_consts(VP8_COMP *cpi, int Qvalue)
214 double capped_q = (Qvalue < 160) ? (double)Qvalue : 160.0;
254 q = (int)pow(Qvalue, 1.25);
    [all...]
  /external/chromium/net/http/
http_util.h 136 // the list with a qvalue appended to each language.
137 // The way qvalues are assigned is rather simple. The qvalue
140 // assigned the same qvalue of 0.2. Also, note that the 1st language
141 // will not have a qvalue added because the absence of a qvalue implicitly
146 // codes *without* qvalue is sent, web servers regard all
152 // Given a charset, return the list with a qvalue. If charset is utf-8,
http_util.cc 573 // We use integers for qvalue and qvalue decrement that are 10 times
  /external/bluetooth/bluez/attrib/
client.c 847 struct query_data *qdesc, *qvalue; local
860 qvalue = g_new0(struct query_data, 1);
861 qvalue->prim = prim;
862 qvalue->chr = chr;
865 gatt_read_char(gatt->attrib, chr->handle, 0, update_char_value, qvalue);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptEncodingParser.java 50 * encoding = ( codings *[ ";" "q" "=" qvalue ] )
AcceptLanguageParser.java 46 * 1#( language-range [ ";" "q" "=" qvalue ] )
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/inc/
OMX_JpegEnc_Utils.h 228 OMX_U32 qValue; /* Q value compression factor for encoder */
  /external/v8/benchmarks/
crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js     [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Utils.c     [all...]

Completed in 418 milliseconds