HomeSort by relevance Sort by last modified time
    Searched refs:unit (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /dalvik/dx/tests/029-unit-Bits/
run 17 dx --junit com.android.dx.util._tests._Bits > unit-out.txt
22 cat unit-out.txt
  /dalvik/dx/tests/033-unit-IntList/
run 17 dx --junit com.android.dx.util._tests._IntList > unit-out.txt
22 cat unit-out.txt
  /external/webkit/WebCore/css/
CSSParserValues.cpp 31 return unit == CSSPrimitiveValue::CSS_PARSER_VARIABLE_FUNCTION_SYNTAX;
38 if (m_values[i].unit == CSSParserValue::Function)
45 if (v.unit == CSSPrimitiveValue::CSS_PARSER_VARIABLE_FUNCTION_SYNTAX) // isVariable() is not inlined. This is hot.
62 else if (unit == CSSPrimitiveValue::CSS_IDENT)
64 else if (unit == CSSPrimitiveValue::CSS_NUMBER && isInt)
66 else if (unit == CSSParserValue::Operator) {
70 } else if (unit == CSSParserValue::Function)
72 else if (unit == CSSPrimitiveValue::CSS_STRING || unit == CSSPrimitiveValue::CSS_URI || unit == CSSPrimitiveValue::CSS_PARSER_HEXCOLOR || isVariable()
    [all...]
MediaQueryExp.cpp 47 else if (value->unit == CSSPrimitiveValue::CSS_STRING)
48 m_value = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit);
49 else if (value->unit >= CSSPrimitiveValue::CSS_NUMBER &&
50 value->unit <= CSSPrimitiveValue::CSS_KHZ)
51 m_value = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit);
63 if (value->unit == CSSParserValue::Operator && value->iValue == '/')
65 else if (value->unit == CSSPrimitiveValue::CSS_NUMBER)
  /external/chromium/third_party/icu/source/i18n/
measure.cpp 24 number(_number), unit(adoptedUnit) {
32 UObject(other), unit(0) {
38 delete unit;
40 unit = (MeasureUnit*) other.unit->clone();
46 delete unit;
53 (unit != NULL && *unit == m->getUnit());
  /external/icu4c/i18n/
measure.cpp 24 number(_number), unit(adoptedUnit) {
32 UObject(other), unit(0) {
38 delete unit;
40 unit = (MeasureUnit*) other.unit->clone();
46 delete unit;
53 (unit != NULL && *unit == m->getUnit());
  /libcore/luni/src/main/java/java/util/concurrent/
Delayed.java 24 * given time unit.
26 * @param unit the time unit
30 long getDelay(TimeUnit unit);
ScheduledExecutorService.java 74 * @param unit the time unit of the delay parameter
83 long delay, TimeUnit unit);
91 * @param unit the time unit of the delay parameter
98 long delay, TimeUnit unit);
116 * @param unit the time unit of the initialDelay and period parameters
128 TimeUnit unit);
143 * @param unit the time unit of the initialDelay and delay parameter
    [all...]
BlockingDeque.java 44 * <td>{@link #offerFirst(E, long, TimeUnit) offerFirst(e, time, unit)}</td>
51 * <td>{@link #pollFirst(long, TimeUnit) pollFirst(time, unit)}</td>
75 * <td>{@link #offerLast(E, long, TimeUnit) offerLast(e, time, unit)}</td>
82 * <td>{@link #pollLast(long, TimeUnit) pollLast(time, unit)}</td>
124 * <td>{@link #offer(E, long, TimeUnit) offer(e, time, unit)}</td>
125 * <td>{@link #offerLast(E, long, TimeUnit) offerLast(e, time, unit)}</td>
143 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
144 * <td>{@link #pollFirst(long, TimeUnit) pollFirst(time, unit)}</td>
279 * <tt>unit</tt>
280 * @param unit a <tt>TimeUnit</tt> determining how to interpret th
    [all...]
BlockingQueue.java 45 * <td>{@link #offer(E, long, TimeUnit) offer(e, time, unit)}</td>
52 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
212 * <tt>unit</tt>
213 * @param unit a <tt>TimeUnit</tt> determining how to interpret the
224 boolean offer(E e, long timeout, TimeUnit unit)
241 * <tt>unit</tt>
242 * @param unit a <tt>TimeUnit</tt> determining how to interpret the
248 E poll(long timeout, TimeUnit unit)
  /external/ppp/pppd/
ecp.c 82 static void ecp_init __P((int unit));
84 static void ecp_open __P((int unit));
85 static void ecp_close __P((int unit, char *));
86 static void ecp_lowerup __P((int unit));
88 static void ecp_input __P((int unit, u_char *pkt, int len));
89 static void ecp_protrej __P((int unit));
95 static void ecp_datainput __P((int unit, u_char *pkt, int len));
146 ecp_init(unit)
147 int unit;
149 fsm *f = &ecp_fsm[unit];
    [all...]
ccp.c 167 static void ccp_init __P((int unit));
168 static void ccp_open __P((int unit));
169 static void ccp_close __P((int unit, char *));
170 static void ccp_lowerup __P((int unit));
172 static void ccp_input __P((int unit, u_char *pkt, int len));
173 static void ccp_protrej __P((int unit));
177 static void ccp_datainput __P((int unit, u_char *pkt, int len));
351 ccp_init(unit)
352 int unit;
354 fsm *f = &ccp_fsm[unit];
    [all...]
ipv6cp.c 68 est une f?d?ration d'unit?s mixtes de recherche du CNRS, de l'Institut National
91 The research unit in Software, Systems, Networks (LSR) is member of IMAG.
413 ipv6cp_init(unit)
414 int unit;
416 fsm *f = &ipv6cp_fsm[unit];
417 ipv6cp_options *wo = &ipv6cp_wantoptions[unit];
418 ipv6cp_options *ao = &ipv6cp_allowoptions[unit];
420 f->unit = unit;
423 fsm_init(&ipv6cp_fsm[unit]);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerMethodUnderTest.java 17 package com.android.mediaframeworktest.unit;
22 * All MediaPlayer method unit test subclass must implement this interface.
MediaRecorderMethodUnderTest.java 17 package com.android.mediaframeworktest.unit;
22 * All MediaRecorder method unit test subclass must implement this interface.
  /ndk/sources/android/stlport/test/jni/
Android.mk 1 # The source files are actually located under ../unit
7 unit_path := $(dir $(LOCAL_PATH))/unit
12 sources := $(filter-out unit/string_header_test.c,$(sources))
15 sources := $(filter-out unit/exception_test.cpp,$(sources))
18 sources := $(filter-out unit/codecvt_test.cpp,$(sources))
21 LOCAL_SRC_FILES += unit/cppunit/test_main.cpp
  /bionic/libc/kernel/common/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
  /development/ndk/platforms/android-3/include/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
  /external/chromium/third_party/icu/public/i18n/unicode/
measure.h 30 * An amount of a specified unit, consisting of a number and a Unit.
32 * unit, such as feet or meters. This is an abstract class.
33 * Subclasses specify a concrete Unit type.
49 * unit. After this call, the caller must not delete the given
50 * unit object.
52 * @param adoptedUnit the unit object, which must not be NULL
53 * @param ec input-output error code. If the amount or the unit
101 * Return a reference to the unit of this object.
120 * The unit of this object, e.g., "millimeter" or "JPY". This i
123 MeasureUnit* unit; member in class:Measure
    [all...]
  /external/icu4c/i18n/unicode/
measure.h 30 * An amount of a specified unit, consisting of a number and a Unit.
32 * unit, such as feet or meters. This is an abstract class.
33 * Subclasses specify a concrete Unit type.
49 * unit. After this call, the caller must not delete the given
50 * unit object.
52 * @param adoptedUnit the unit object, which must not be NULL
53 * @param ec input-output error code. If the amount or the unit
101 * Return a reference to the unit of this object.
120 * The unit of this object, e.g., "millimeter" or "JPY". This i
123 MeasureUnit* unit; member in class:Measure
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
ftape.h 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)

Completed in 517 milliseconds

1 2 3 4 5 6 7 8 91011