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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
MutableContextWrapper.java 20 * Special version of {@link ContextWrapper} that allows the base context to
24 public MutableContextWrapper(Context base) {
25 super(base);
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
33 * @param base The new base context for this wrapper.
35 public void setBaseContext(Context base) {
36 mBase = base;
    [all...]
  /dalvik/tests/065-mismatched-implements/src/
Indirect.java 25 Base base = new Base(); local
  /dalvik/tests/066-mismatched-super/src/
Indirect.java 25 Base base = new Base(); local
  /external/guava/src/com/google/common/base/
package-info.java 20 package com.google.common.base;
FinalizableReference.java 17 package com.google.common.base;
  /external/bison/lib/
stripslash.c 35 char *base = base_name (file); local
36 char *base_lim = base + base_len (base);
basename.c 38 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); local
41 for (p = base; *p; p++)
53 if (ISSLASH (*base))
54 base = p - 1;
59 base = p;
63 return (char *) base;
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
stack_profile.h 3 unsigned long check_stack(unsigned long *base);
4 unsigned long check_stack_start(unsigned long *base, unsigned long real_sp,
6 unsigned long check_stack_stop(unsigned long *base, int id);
  /system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
stack_profile.h 3 unsigned long check_stack(unsigned long *base);
4 unsigned long check_stack_start(unsigned long *base, unsigned long real_sp,
6 unsigned long check_stack_stop(unsigned long *base, int id);
  /external/webkit/WebCore/html/
HTMLAllCollection.cpp 33 PassRefPtr<HTMLAllCollection> HTMLAllCollection::create(PassRefPtr<Node> base)
35 return adoptRef(new HTMLAllCollection(base));
38 HTMLAllCollection::HTMLAllCollection(PassRefPtr<Node> base)
39 : HTMLCollection(base, DocAll)
  /frameworks/base/cmds/system_server/library/
Android.mk 7 base = $(LOCAL_PATH)/../../.. macro
10 $(base)/camera/libcameraservice \
11 $(base)/libs/audioflinger \
12 $(base)/libs/surfaceflinger \
13 $(base)/media/libmediaplayerservice \
  /external/e2fsprogs/lib/e2p/
percent.c 18 unsigned int e2p_percent(int percent, unsigned int base)
25 return base / (100 / percent);
26 if (mask & base)
27 return (base / 100) * percent;
28 return base * percent / 100;
37 unsigned int base; local
43 fprintf(stderr, "Usage: %s percent base\n", argv[0]);
53 base = strtoul(argv[2], &p, 0);
55 fprintf(stderr, "Bad base: %s\n", argv[2]);
59 printf("%d percent of %u is %u.\n", percent, base,
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
stack_profile.c 39 unsigned long check_stack(unsigned long *base)
44 *base = ((sp & ~0x1fff) + 0x380);
48 unsigned long check_stack_start(unsigned long *base)
54 *base = from;
56 /* run from the stack pointer down to the base */
66 unsigned long check_stack_stop(unsigned long *base)
72 *base = from;
74 /* run from the stack pointer down to the base */
  /bionic/libc/stdlib/
strntoimax.c 31 intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n)
33 return (intmax_t) strntoumax(nptr, endptr, base, n);
strtol.c 44 strtol(const char *nptr, char **endptr, int base)
53 * If base is 0, allow 0x for hex and 0 for octal, else
54 * assume decimal; if base is already 16, allow 0x.
68 if ((base == 0 || base == 16) &&
72 base = 16;
74 if (base == 0)
75 base = c == '0' ? 8 : 10;
80 * base. An input number that is greater than this value, if
85 * [-2147483648..2147483647] and the input base is 10
    [all...]
strtoumax.c 43 strtoumax(const char *nptr, char **endptr, int base)
65 if ((base == 0 || base == 16) &&
69 base = 16;
71 if (base == 0)
72 base = c == '0' ? 8 : 10;
80 switch (base) {
85 cutoff = UINTMAX_MAX / base;
86 cutlim = UINTMAX_MAX % base;
96 if (c >= base)
    [all...]
strtoul.c 43 strtoul(const char *nptr, char **endptr, int base)
65 if ((base == 0 || base == 16) &&
69 base = 16;
71 if (base == 0)
72 base = c == '0' ? 8 : 10;
74 cutoff = ULONG_MAX / (unsigned long)base;
75 cutlim = ULONG_MAX % (unsigned long)base;
83 if (c >= base)
93 acc *= (unsigned long)base;
    [all...]
  /external/webkit/WebCore/platform/chromium/
LinkHashChromium.cpp 43 LinkHash visitedLinkHash(const KURL& base, const AtomicString& attributeURL)
45 return ChromiumBridge::visitedLinkHash(base, attributeURL);
  /frameworks/base/media/mediaserver/
Android.mk 14 base := $(LOCAL_PATH)/../.. macro
17 $(base)/libs/audioflinger \
18 $(base)/camera/libcameraservice \
19 $(base)/media/libmediaplayerservice
  /external/freetype/src/base/
ftgloadr.c 47 /* loader.base Is really the bottom of the stack. It describes a */
57 /* Add Add the `current' glyph image to the `base' one, */
60 /* The glyph loader is now a base object. Each driver used to */
89 FT_GlyphLoad base = &loader->base; local
93 base->outline.n_points = 0;
94 base->outline.n_contours = 0;
95 base->num_subglyphs = 0;
97 *current = *base;
109 FT_FREE( loader->base.outline.points )
144 FT_Outline* base = &loader->base.outline; local
187 FT_GlyphLoad base = &loader->base; local
206 FT_Outline* base = &loader->base.outline; local
283 FT_GlyphLoad base = &loader->base; local
325 FT_GlyphLoad base; local
    [all...]
  /system/core/libacc/tests/data/
addressOf.c 7 struct str base; local
10 base.x = 10.0;
11 struct str *s = &base;
15 printf("testStruct: %g %g %g\n",base.x, *v, *v2);
  /external/opencore/codecs_v2/audio/aac/dec/src/
huffcb.cpp 34 change variables 'base', 'sect_len_inc', and 'esc_val' to
89 UChar base = number of sfb in already detected sections
177 FOR (base = 0; base<total_sfb AND num_of_section<total_sfb)
182 WHILE (sect_length_incr == ESC_value AND base < total_sfb)
184 base += ESC_value;
189 base += sect_length_incr;
190 *pSect++ = base;
196 base += sfb_per_win - max_sfb;
197 *pSect++ = base;
295 Int base; \/* section boundary *\/ local
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
huffcb.cpp 34 change variables 'base', 'sect_len_inc', and 'esc_val' to
89 UChar base = number of sfb in already detected sections
177 FOR (base = 0; base<total_sfb AND num_of_section<total_sfb)
182 WHILE (sect_length_incr == ESC_value AND base < total_sfb)
184 base += ESC_value;
189 base += sect_length_incr;
190 *pSect++ = base;
196 base += sfb_per_win - max_sfb;
197 *pSect++ = base;
295 Int base; \/* section boundary *\/ local
    [all...]
  /external/bluetooth/glib/gio/tests/
filter-streams.c 20 GInputStream *base, *f1, *f2; local
23 base = g_memory_input_stream_new_from_data ("abcdefghijk", -1, NULL);
24 f1 = g_buffered_input_stream_new (base);
25 f2 = g_buffered_input_stream_new (base);
29 g_assert (g_filter_input_stream_get_base_stream (G_FILTER_INPUT_STREAM (f1)) == base);
30 g_assert (g_filter_input_stream_get_base_stream (G_FILTER_INPUT_STREAM (f2)) == base);
32 g_assert (!g_input_stream_is_closed (base));
38 g_assert (!g_input_stream_is_closed (base));
43 g_assert (g_input_stream_is_closed (base));
45 g_object_unref (base);
51 GOutputStream *base, *f1, *f2; local
102 GInputStream *base, *f1, *f2; local
174 GOutputStream *base, *f1, *f2; local
    [all...]
  /external/astl/include/
iomanip 46 struct SetBase { int base; };
66 inline android::SetBase setbase(int base) {
68 params.base = base;
73 os.setf(params.base == 8 ? ios_base::oct :
74 params.base == 10 ? ios_base::dec :
75 params.base == 16 ? ios_base::hex :

Completed in 1372 milliseconds

1 2 3 4 5 6 7 8 91011>>