Searched refs:base (Results 76 - 100 of 141) sorted by relevance

123456

/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java204 final int base = -mTextMetrics.ascent+1;
217 .toString(), 1, base, mTextPaint);
224 .toString(), 1 + itemW, base, mTextPaint);
228 .toString(), 1 + itemW * 2, base, mTextPaint);
237 .toString(), 1 + itemW, base, mTextPaint);
243 .toString(), 1 + itemW * 2, base, mTextPaint);
249 .toString(), 1 + itemW * 3, base, mTextPaint);
254 .toString(), 1 + itemW * 4, base, mTextPaint);
261 .toString(), 1 + itemW * 5, base, mTextPaint);
268 .toString(), 1 + itemW * 6, base, mTextPain
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp68 void* const base = malloc(extra + sizeof(ogles_context_t) + 32); local
69 if (!base) return 0;
72 (ogles_context_t *)((ptrdiff_t(base) + extra + 31) & ~0x1FL);
91 c->rasterizer.base = base;
114 free(c->rasterizer.base);
H A Darray.cpp356 base = malloc(size);
357 if (base) {
358 memset(base, 0, size);
359 vBuffer = (vertex_t*)((size_t(base) + align - 1) & ~(align-1));
367 free(base);
368 base = vBuffer = vCache = 0;
/frameworks/av/media/libstagefright/chromium_http/
H A Dsupport.cpp26 #include "base/logging.h"
27 #include "base/threading/thread.h"
28 #include "net/base/cert_verifier.h"
29 #include "net/base/cookie_monster.h"
30 #include "net/base/host_resolver.h"
31 #include "net/base/ssl_config_service.h"
46 static base::Thread *gNetworkThread = NULL;
103 gNetworkThread = new base::Thread("network");
104 base::Thread::Options options;
134 const base
[all...]
H A Dsupport.h23 #include "net/base/net_log.h"
26 #include "net/base/android_network_library.h"
27 #include "net/base/io_buffer.h"
39 const base::TimeTicks &time,
/frameworks/native/libs/utils/
H A DRefBase.cpp62 weakref_impl(RefBase* base) argument
65 , mBase(base)
81 weakref_impl(RefBase* base) argument
84 , mBase(base)
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.h35 #define CIRCULAR(base,offset,size) (uint32_t)( \
37 ((int32_t)(base)) + ((int32_t)(offset)) \
193 uint16_t m_nBaseIndex; // base index for circular buffer
/frameworks/base/core/java/android/os/
H A DEnvironment.java639 private static File buildPath(File base, String... segments) { argument
640 File cur = base;
/frameworks/native/include/android/
H A Dconfiguration.h357 * Determine whether 'base' is a valid configuration for use within the
358 * environment 'requested'. Returns 0 if there are any values in 'base'
361 int32_t AConfiguration_match(AConfiguration* base, AConfiguration* requested);
365 * configuration in 'base'. If 'requested' is non-NULL, this decision is based
368 * 'test' is better than 'base'.
373 int32_t AConfiguration_isBetterThan(AConfiguration* base, AConfiguration* test,
/frameworks/av/media/libstagefright/
H A DSkipCutBuffer.cpp90 char *dst = (char*) buffer->base();
/frameworks/base/core/java/android/content/
H A DContextWrapper.java56 public ContextWrapper(Context base) { argument
57 mBase = base;
61 * Set the base context for this ContextWrapper. All calls will then be
62 * delegated to the base context. Throws
63 * IllegalStateException if a base context has already been set.
65 * @param base The new base context for this wrapper.
67 protected void attachBaseContext(Context base) { argument
71 mBase = base;
75 * @return the base contex
[all...]
/frameworks/base/core/java/android/text/format/
H A DTime.java694 String base = format(Y_M_D_T_H_M_S_000);
700 return String.format(Locale.US, "%s%s%02d:%02d", base, sign, hours, minutes);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java61 * left here are not in the code base anymore and thus were not renamed. */
351 String base = className.substring(0, pos);
352 newName = mRenameClasses.get(base);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterGraph.java30 import android.filterpacks.base.FrameBranch;
31 import android.filterpacks.base.NullFilter;
/frameworks/base/tools/aidl/
H A Dgenerate_java_rpc.cpp803 // the service base class
836 // == the dispatch method in the service base class ======================
848 // == the push method in the service base class =========================
883 // == the event method in the listener base class =====================
966 // the service base class
967 EndpointBaseClass* base = new EndpointBaseClass(iface); local
968 proxy->elements.push_back(base);
979 generate_event_method((method_type*)item, proxy, base, listener, presenter, index);
981 generate_regular_method((method_type*)item, proxy, base, results, index);
988 base
[all...]
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp170 void* const start_ptr = (void*)(intptr_t(heap->base()) + offset);
202 void* const start_ptr = (void*)(intptr_t(getHeap()->base()) + start);
/frameworks/base/data/sounds/
H A DAudioPackage6.mk8 LOCAL_PATH:= frameworks/base/data/sounds
H A DAudioPackage9.mk8 LOCAL_PATH:= frameworks/base/data/sounds
/frameworks/base/include/androidfw/
H A DKeyCharacterMap.h61 // Either base or overlay layout ok.
78 /* Combines a base key character map and an overlay. */
79 static sp<KeyCharacterMap> combine(const sp<KeyCharacterMap>& base,
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp163 sp<KeyCharacterMap> KeyCharacterMap::combine(const sp<KeyCharacterMap>& base, argument
166 return base;
168 if (base == NULL) {
172 sp<KeyCharacterMap> map = new KeyCharacterMap(*base.get());
272 // For example, the base key behavior will usually be last in the list.
426 // For example, the base key behavior will usually be last in the list.
1050 if (token == "base") {
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java19 import com.google.common.base.Preconditions;
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp69 const uint8_t* img = reinterpret_cast<const uint8_t*>(mHeap->base());
/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareInterface.h52 * It is a referenced counted interface with RefBase as its base class.
322 void *data = ((uint8_t *)heap->base()) + offset;
511 handle.data = mHeap->base();
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java407 * truncating the base value to an integer.
439 * rounding the base value, and ensuring that a non-zero base value
527 * @param base The base value of this fraction. In other words, a
529 * @param pbase The parent base value of this fraction. In other
536 * base value, or defValue if not defined.
538 public float getFraction(int index, int base, int pbase, float defValue) { argument
546 data[index+AssetManager.STYLE_DATA], base, pbase);
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java172 String base = "/tmp/trace/" + mClassName + ".dmtrace";
173 Debug.startMethodTracing(base, 8 * 1024 * 1024);

Completed in 2059 milliseconds

123456