Searched refs:base (Results 51 - 75 of 135) sorted by relevance

123456

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java44 public DynamicLayout(CharSequence base, argument
49 this(base, base, paint, width, align, spacingmult, spacingadd,
56 * that will be updated as the base text is changed.
58 public DynamicLayout(CharSequence base, CharSequence display, argument
63 this(base, display, paint, width, align, spacingmult, spacingadd,
70 * that will be updated as the base text is changed.
74 public DynamicLayout(CharSequence base, CharSequence display, argument
80 this(base, display, paint, width, align, TextDirectionHeuristics.FIRSTSTRONG_LTR,
87 * that will be updated as the base tex
93 DynamicLayout(CharSequence base, CharSequence display, TextPaint paint, int width, Alignment align, TextDirectionHeuristic textDir, float spacingmult, float spacingadd, boolean includepad, TextUtils.TruncateAt ellipsize, int ellipsizedWidth) argument
[all...]
/frameworks/base/services/sensorservice/
H A Dvec.h303 typedef vbase<TYPE, SIZE> base; typedef in class:android::vec
314 iterator begin() { return base::v; }
315 iterator end() { return base::v + SIZE; }
316 const_iterator begin() const { return base::v; }
317 const_iterator end() const { return base::v + SIZE; }
324 vec(const vec& rhs) : base(rhs) { }
325 vec(const base& rhs) : base(rhs) { }
332 base::operator[](i) = rhs;
342 base
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareStub.cpp173 void *base = heap->base(); local
176 uint8_t *frame = ((uint8_t *)base) + offset;
292 cam.getNextFrameAsYuv420((uint8_t *)mRawHeap->base());
299 memcpy(heap->base(), kCannedJpeg, kCannedJpegSize);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java79 public BroadcastInterceptingContext(Context base) { argument
80 super(base);
/frameworks/native/libs/binder/
H A DIMemory.cpp140 void* const base = realHeap->base(); local
141 if (base == MAP_FAILED)
143 return static_cast<char*>(base) + offset;
149 void* const base = heap!=0 ? heap->base() : MAP_FAILED; local
150 if (base == MAP_FAILED)
152 return static_cast<char*>(base) + offset;
471 ALOGD("hey=%p, heap=%p, count=%d, (fd=%d, base=%p, size=%d)",
/frameworks/av/include/media/stagefright/foundation/
H A DABuffer.h37 uint8_t *base() { return (uint8_t *)mData; } function in struct:android::ABuffer
/frameworks/av/media/libstagefright/chromium_http/
H A DDataUriSource.cpp19 #include <net/base/data_url.h>
/frameworks/base/core/java/android/util/
H A DTypedValue.java197 * Retrieve the base value from a complex data integer. This uses the
265 * conversion involves rounding the base value, and ensuring that a
266 * non-zero base value is at least one pixel in size.
362 * @param base The base value of this fraction. In other words, a
364 * @param pbase The parent base value of this fraction. In other
369 * base value depending on its unit.
371 public static float complexToFraction(int data, float base, float pbase) argument
375 return complexToFloat(data) * base;
386 * @param base Th
395 getFraction(float base, float pbase) argument
[all...]
/frameworks/base/data/fonts/
H A Dfonts.mk18 frameworks/base/data/fonts/system_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/system_fonts.xml \
19 frameworks/base/data/fonts/fallback_fonts.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/fallback_fonts.xml
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureSource.java18 package android.filterpacks.base;
H A DGLTextureTarget.java18 package android.filterpacks.base;
H A DObjectSource.java18 package android.filterpacks.base;
H A DOutputStreamTarget.java18 package android.filterpacks.base;
H A DRetargetFilter.java18 package android.filterpacks.base;
H A DCallbackFilter.java18 package android.filterpacks.base;
H A DInputStreamSource.java18 package android.filterpacks.base;
/frameworks/base/native/android/
H A Dconfiguration.cpp219 int32_t AConfiguration_match(AConfiguration* base, AConfiguration* requested) { argument
220 return base->match(*requested);
223 int32_t AConfiguration_isBetterThan(AConfiguration* base, AConfiguration* test, argument
225 return base->isBetterThan(*test, requested);
/frameworks/native/include/binder/
H A DIMemory.h50 void* base() const { return getBase(); } function in class:android::IMemoryHeap
H A DMemoryHeapBase.h82 status_t init(int fd, void *base, int size,
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java95 int base = 10;
111 base = 16;
114 base = 8;
120 base = 16;
123 return Integer.parseInt(nm.substring(index), base) * sign;
143 int base = 10;
154 base = 16;
157 base = 8;
161 base = 16;
164 return (int) Long.parseLong(value.substring(index), base);
[all...]
/frameworks/base/core/java/android/widget/
H A DChronometer.java41 * and it counts up from that, or if you don't give it a base time, it will use the
81 * Sets the base to the current time.
89 * Sets the base to the current time.
97 * Sets the base to the current time.
119 * @param base Use the {@link SystemClock#elapsedRealtime} time base.
122 public void setBase(long base) { argument
123 mBase = base;
129 * Return the base time as set through {@link #setBase}.
179 * Start counting up. This does not affect the base a
[all...]
/frameworks/base/media/jni/
H A DAndroid.mk49 frameworks/base/core/jni \
/frameworks/base/packages/InputDevices/
H A DAndroid.mk33 files := frameworks/base/packages/InputDevices/res/raw/*.kcm
/frameworks/opt/emoji/
H A DAndroid.mk34 $(base)/include/utils
/frameworks/base/core/java/android/text/util/
H A DLinkify.java449 int base = 0;
462 spec.start = base + start;
463 spec.end = base + end;
465 base += end;

Completed in 501 milliseconds

123456