Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 43) sorted by relevance

12

/development/cmds/monkey/
Dmonkey4 base=/system
5 export CLASSPATH=$base/framework/monkey.jar
6 exec app_process $base/bin com.android.commands.monkey.Monkey $*
/development/samples/GlobalTime/src/com/android/globaltime/
DLatLongSphere.java101 int base = i * lats + j; in LatLongSphere() local
106 indices[iidx++] = (short) (base); in LatLongSphere()
107 indices[iidx++] = (short) (base + 1); in LatLongSphere()
108 indices[iidx++] = (short) (base + lats + 1); in LatLongSphere()
110 indices[iidx++] = (short) (base + lats); in LatLongSphere()
111 indices[iidx++] = (short) (base); in LatLongSphere()
112 indices[iidx++] = (short) (base + lats + 1); in LatLongSphere()
/development/tools/zoneinfo/
DZoneInfo.java56 int base = 44; in make() local
60 transitions[i] = read4(data, base + 4 * i); in make()
61 base += 4 * ntransition; in make()
65 type[i] = data[base + i]; in make()
66 base += ntransition; in make()
72 gmtoff[i] = read4(data, base + 6 * i); in make()
73 isdst[i] = data[base + 6 * i + 4]; in make()
74 abbrev[i] = data[base + 6 * i + 5]; in make()
77 base += 6 * ngmtoff; in make()
79 return new ZoneInfo(name, transitions, type, gmtoff, isdst, abbrev, data, base); in make()
/development/ndk/platforms/android-3/arch-arm/include/asm/
Ddiv64.h25 #define do_div(n,base) ({ register unsigned int __base asm("r4") = base; register unsigned lon… argument
/development/ndk/platforms/android-3/include/linux/
Dtimer.h28 struct tvec_t_base_s *base; member
31 … .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases,…
Dkd.h128 unsigned char diacr, base, result; member
/development/ide/xcode/freetype2.xcodeproj/
Dproject.pbxproj50 …urcecode.c.c; name = ftadvanc.c; path = "../../extlibs/freetype-2.3.6/src/base/ftadvanc.c"; source…
51 … sourcecode.c.c; name = ftapi.c; path = "../../extlibs/freetype-2.3.6/src/base/ftapi.c"; sourceTre…
52 …sourcecode.c.c; name = ftbase.c; path = "../../extlibs/freetype-2.3.6/src/base/ftbase.c"; sourceTr…
53 …sourcecode.c.c; name = ftbbox.c; path = "../../extlibs/freetype-2.3.6/src/base/ftbbox.c"; sourceTr…
54 …urcecode.c.c; name = ftbitmap.c; path = "../../extlibs/freetype-2.3.6/src/base/ftbitmap.c"; source…
55 …sourcecode.c.c; name = ftcalc.c; path = "../../extlibs/freetype-2.3.6/src/base/ftcalc.c"; sourceTr…
56 …urcecode.c.c; name = ftdbgmem.c; path = "../../extlibs/freetype-2.3.6/src/base/ftdbgmem.c"; source…
57 …ourcecode.c.c; name = ftdebug.c; path = "../../extlibs/freetype-2.3.6/src/base/ftdebug.c"; sourceT…
58 …sourcecode.c.c; name = ftgasp.c; path = "../../extlibs/freetype-2.3.6/src/base/ftgasp.c"; sourceTr…
59 …urcecode.c.c; name = ftgloadr.c; path = "../../extlibs/freetype-2.3.6/src/base/ftgloadr.c"; source…
[all …]
/development/build/
Dsdk.atree34 frameworks/base/docs/docs-redirect.html documentation.html
98 frameworks/base/core/res/res platforms/${PLATFORM_NAME}/data/res
107 frameworks/base/data/fonts/fonts.xml platforms/${PLATFORM_NAME}/data/fonts/fonts.xml
108 frameworks/base/data/fonts/DroidSans.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSan…
109 frameworks/base/data/fonts/DroidSans-Bold.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSan…
110 frameworks/base/data/fonts/DroidSansMono.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSan…
111 frameworks/base/data/fonts/DroidSerif-Bold.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSer…
112 frameworks/base/data/fonts/DroidSerif-BoldItalic.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSer…
113 frameworks/base/data/fonts/DroidSerif-Italic.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSer…
114 frameworks/base/data/fonts/DroidSerif-Regular.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSer…
[all …]
/development/ndk/platforms/android-9/samples/native-activity/
DAndroid.mk34 $(TOPDIR)frameworks/base/native/include \
35 $(TOPDIR)frameworks/base/opengl/include \
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
Dmcbsp.h31 #define OMAP_MCBSP_READ(base, reg) __raw_readw((base) + OMAP_MCBSP_REG_##reg) argument
32 #define OMAP_MCBSP_WRITE(base, reg, val) __raw_writew((val), (base) + OMAP_MCBSP_REG_##reg) argument
/development/simulator/app/
DMainFrame.cpp296 wxPanel* base = new wxPanel(this, wxID_ANY); in ConstructControls() local
308 displayOptSizer = new wxStaticBoxSizer(wxHORIZONTAL, base, in ConstructControls()
310 runtimeOptSizer = new wxStaticBoxSizer(wxVERTICAL, base, in ConstructControls()
312 onionSkinOptSizer = new wxStaticBoxSizer(wxVERTICAL, base, in ConstructControls()
321 new wxStaticText(base, wxID_ANY, wxT("Device mode:"), in ConstructControls()
323 pModeSelection = new wxComboBox(base, IDC_MODE_SELECT, wxT(""), in ConstructControls()
335 pUseGDB = new wxCheckBox(base, IDC_USE_GDB, wxT("Use &debugger")); in ConstructControls()
338 pUseValgrind = new wxCheckBox(base, IDC_USE_VALGRIND, wxT("Use &valgrind")); in ConstructControls()
341 pCheckJni = new wxCheckBox(base, IDC_CHECK_JNI, wxT("Check &JNI")); in ConstructControls()
344 pJavaAppName = new wxComboBox(base, IDC_JAVA_APP_NAME, wxT(""), in ConstructControls()
[all …]
DLogWindow.cpp186 wxPanel* base = new wxPanel(this, wxID_ANY); in ConstructControls() local
198 logLevel = new wxComboBox(base, IDC_LOG_LEVEL, wxT(""), in ConstructControls()
212 configPrioritySizer->Add(new wxStaticText(base, wxID_ANY, wxT("Log level:"), in ConstructControls()
218 wxButton* clear = new wxButton(base, IDC_LOG_CLEAR, wxT("&Clear"), in ConstructControls()
220 wxButton* pause = new wxButton(base, IDC_LOG_PAUSE, wxT("&Pause"), in ConstructControls()
222 wxButton* prefs = new wxButton(base, IDC_LOG_PREFS, wxT("C&onfigure"), in ConstructControls()
234 pTextCtrl = new wxTextCtrl(base, IDC_LOG_TEXT, wxT(""), in ConstructControls()
255 base->SetSizer(indentSizer); in ConstructControls()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DUnicodeChart.java83 private void drawChart(Canvas canvas, int base) { in drawChart() argument
86 int unichar = base + i; in drawChart()
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
Dplasma.c202 Fixed base = fixed_sin(yt1) + fixed_sin(yt2); in fill_plasma() local
220 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
230 Fixed i1 = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
234 Fixed i2 = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
246 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
255 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
/development/ndk/platforms/android-5/arch-x86/include/asm/
Ddesc_32.h63 …fine GET_DESC_BASE(idx, gdt, base, lo_w, lo_b, hi_b) movb idx*8+4(gdt), lo_b; movb idx*8+7(gdt… argument
/development/tools/etc1tool/
DAndroid.mk15 LOCAL_C_INCLUDES += frameworks/base/opengl/include
/development/ndk/platforms/android-3/include/
Dinttypes.h257 intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n);
258 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n);
/development/ndk/platforms/android-9/samples/native-plasma/jni/
Dplasma.c211 Fixed base = fixed_sin(yt1) + fixed_sin(yt2); in fill_plasma() local
229 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
239 Fixed i1 = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
243 Fixed i2 = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
255 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
264 Fixed ii = base + fixed_sin(xt1) + fixed_sin(xt2); in fill_plasma()
/development/samples/NFCDemo/src/com/example/android/nfc/simulator/
DFakeTagsActivity.java28 import com.google.common.base.Charsets;
29 import com.google.common.base.Preconditions;
/development/ndk/platforms/android-9/include/android/
Dconfiguration.h300 int32_t AConfiguration_match(AConfiguration* base, AConfiguration* requested);
312 int32_t AConfiguration_isBetterThan(AConfiguration* base, AConfiguration* test,
/development/tools/zoneinfo/tzdata2010k/
Dantarctica185 # Brazil - year-round base
193 # Villa Las Estrellas (a town), around the Frei base, since 1984-04-09
223 # year-round base in the main continent
226 # Another base at Port-Martin, 50km east, began operation in 1947.
239 # Germany - year-round base
242 # India - year-round base
263 # S Korea - year-round base
270 # year-round base
291 # Poland - year-round base
359 # Uruguay - year round base
/development/scripts/
Dcombine_sdks.sh53 BASE_DIR="$TMP"/base
/development/samples/SkeletonApp/
Dreadme.txt43 SkeletonActivity.java to construct its UI. The base name of each file
54 skeleton_activity.xml. Like layout files, the base name is used for the
/development/tools/idegen/
Dexcluded-paths56 ^frameworks/policies/base/mid$
57 #^frameworks/policies/base/phone$
/development/samples/NFCDemo/src/com/example/android/nfc/record/
DSmartPoster.java28 import com.google.common.base.Charsets;
29 import com.google.common.base.Preconditions;

12