HomeSort by relevance Sort by last modified time
    Searched full:base (Results 401 - 425 of 4489) sorted by null

<<11121314151617181920>>

  /external/freetype/include/freetype/
ftmoderr.h 24 /* module. The base module has error offset 0. For example, the error */
105 FT_MODERRDEF( Base, 0x000, "base module" )
  /external/guava/src/com/google/common/collect/
EmptyImmutableList.java 20 import static com.google.common.base.Preconditions.checkElementIndex;
21 import static com.google.common.base.Preconditions.checkPositionIndex;
22 import static com.google.common.base.Preconditions.checkPositionIndexes;
  /external/kernel-headers/original/linux/
cpu.h 8 * Basic handling of the devices is done in drivers/base/cpu.c
9 * and system devices are handled in drivers/base/sys.c.
16 * - drivers/base/intf.c
  /external/qemu/android/utils/
path.c 71 const char* base; local
77 base = end;
78 while (base > path && !ispathsep(base[-1]))
79 base--;
81 if (base <= path) /* we can't go that far */
84 if (end == base+1 && base[0] == '.')
87 if (end == base+2 && base[0] == '.' && base[1] == '.')
    [all...]
  /external/skia/src/images/
bmpdecoderhelper.cpp 102 int base = i * 3; local
103 colTab_[base + 2] = GetByte();
104 colTab_[base + 1] = GetByte();
105 colTab_[base] = GetByte();
271 int base = ((y * width_) + x) * 3; local
273 output_[base] = colTab_[colBase];
274 output_[base + 1] = colTab_[colBase + 1];
275 output_[base + 2] = colTab_[colBase + 2];
315 int base = col * 3; local
316 line[0] = colTab_[base];
    [all...]
  /external/stlport/stlport/stl/
_stdexcept_base.h 48 * the static C++ native runtime. In this case the std::exception base class is no more
49 * exported from native dll but is used as a base class for the exported __Named_exception
56 # pragma warning (disable: 4275) // Non dll interface class 'exception' used as base
  /external/v8/test/mjsunit/
string-compare-alignment.js 32 var base = "Now is the time for all good men to come to the aid of the party. " + variable
34 var s1 = base.substring(0, 64);
35 var s2 = base.substring(66, 130);
  /external/webkit/JavaScriptCore/interpreter/
RegisterFile.h 48 frame by its offset from "base", the logical first entry in the register
49 file. The bottom-most register frame's offset from base is 0.
58 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | | | | | | <-- index relative to base
63 buffer base (frame 0) frame 1 frame 2
67 globals must appear at the beginning of the register file, shifting base
77 | -4 | -3 | -2 | -1 | 0 | 1 |< > <-- index relative to base
82 buffer base (frame 0)
84 As you can see, global offsets relative to base have stayed constant,
85 but base itself has moved. To keep up with possible changes to base,
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Collection.cpp 40 v8::Handle<v8::Value> toOptionsCollectionSetter(uint32_t index, v8::Handle<v8::Value> value, HTMLSelectElement* base)
43 base->remove(index);
56 base->setOption(index, element, ec);
  /external/webkit/WebKitTools/QtLauncher/
locationedit.cpp 52 QColor backgroundColor = QApplication::palette().color(QPalette::Base);
57 p.setBrush(QPalette::Base, backgroundColor);
64 p.setBrush(QPalette::Base, gradient);
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 37 public ContextThemeWrapper(Context base, int themeres) {
38 super(base);
39 mBase = base;
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmpcispi.h 99 uint32 P_BA0; /* 0x104 32 R/W PCI Image0 Base Address register */
103 uint32 P_BA1; /* 0x114 32 R/W PCI Image1 Base Address register */
107 uint32 P_BA2; /* 0x124 32 R/W PCI Image2 Base Address register */
111 uint32 P_BA3; /* 0x134 32 R/W PCI Image3 Base Address register */
115 uint32 P_BA4; /* 0x144 32 R/W PCI Image4 Base Address register */
119 uint32 P_BA5; /* 0x154 32 R/W PCI Image5 Base Address register */
128 uint32 WB_CONF_SPC_BAR; /* 0x180 32 R WISHBONE Configuration Space Base Address */
130 uint32 W_BA1; /* 0x188 32 R/W WISHBONE Image1 Base Address register */
134 uint32 W_BA2; /* 0x198 32 R/W WISHBONE Image2 Base Address register */
138 uint32 W_BA3; /* 0x1A8 32 R/W WISHBONE Image3 Base Address register *
    [all...]
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 38 gralloc_module_t base; member in struct:private_module_t
78 int base; member in struct:private_handle_t
88 base(0), pid(getpid())
  /hardware/msm7k/libgralloc/
gralloc_priv.h 38 gralloc_module_t base; member in struct:private_module_t
85 int base; member in struct:private_handle_t
96 base(0), pid(getpid())
  /hardware/msm7k/libgralloc-qsd8k/
gralloc_priv.h 38 gralloc_module_t base; member in struct:private_module_t
93 int base; member in struct:private_handle_t
106 base(0), lockState(0), writeOwner(0), gpuaddr(0), pid(getpid())
framebuffer.cpp 104 m->base.unlock(&m->base, m->currentBuffer);
110 m->base.lock(&m->base, buffer,
114 const size_t offset = hnd->base - m->framebuffer->base;
119 m->base.unlock(&m->base, buffer);
128 m->base.lock(&m->base, m->framebuffer,
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_common.h 86 #define TIME_DELTA(time, base) \
87 ((TIME_SECONDS(time) - TIME_SECONDS(base)) * 1000000 + \
88 (TIME_MICROSECONDS(time) - TIME_MICROSECONDS(base)))
  /external/guava/javadoc/com/google/common/base/
Objects.html 58 &nbsp;<A HREF="../../../../com/google/common/base/Joiner.MapJoiner.html" title="class in com.google.common.base"><B>PREV CLASS</B></A>&nbsp;
59 &nbsp;<A HREF="../../../../com/google/common/base/Objects.ToStringHelper.html" title="class in com.google.common.base"><B>NEXT CLASS</B></A></FONT></TD>
61 <A HREF="../../../../index.html?com/google/common/base/Objects.html" target="_top"><B>FRAMES</B></A> &nbsp;
91 com.google.common.base</FONT>
96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>com.google.common.base.Objects</B>
128 <TD><CODE><B><A HREF="../../../../com/google/common/base/Objects.ToStringHelper.html" title="class in com.google.common.base">Objects.ToStringHelper</A></B></CODE>
131 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Support class for <A HREF="../../../../com/google/common/base/Objects.html#toStringHelper(java.lang.Object)"><CODE>toStringHelper(java.lang.Object)</CODE></A>.< (…)
    [all...]
  /external/libpng/
depcomp 227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
229 tmpdepfile1=$dir$base.u
230 tmpdepfile2=$base.u
231 tmpdepfile3=$dir.libs/$base.u
234 tmpdepfile1=$dir$base.u
235 tmpdepfile2=$dir$base.u
236 tmpdepfile3=$dir$base.u
314 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
316 tmpdepfile1=$dir$base.d
317 tmpdepfile2=$dir.libs/$base.
    [all...]
  /external/guava/javadoc/
overview-tree.html 87 <DT><B>Package Hierarchies:</B><DD><A HREF="com/google/common/annotations/package-tree.html">com.google.common.annotations</A>, <A HREF="com/google/common/base/package-tree.html">com.google.common.base</A>, <A HREF="com/google/common/collect/package-tree.html">com.google.common.collect</A>, <A HREF="com/google/common/io/package-tree.html">com.google.common.io</A>, <A HREF="com/google/common/primitives/package-tree.html">com.google.common.primitives</A>, <A HREF="com/google/common/util/concurrent/package-tree.html">com.google.common.util.concurrent</A></DL>
102 <LI TYPE="circle">com.google.common.util.concurrent.<A HREF="com/google/common/util/concurrent/AbstractExecutionThreadService.html" title="class in com.google.common.util.concurrent"><B>AbstractExecutionThreadService</B></A> (implements com.google.common.base.<A HREF="com/google/common/base/Service.html" title="interface in com.google.common.base">Service</A>)
109 <LI TYPE="circle">com.google.common.util.concurrent.<A HREF="com/google/common/util/concurrent/AbstractIdleService.html" title="class in com.google.common.util.concurrent"><B>AbstractIdleService</B></A> (implements com.google.common.base.<A HREF="com/google/common/base/Service.html" title="interface in com.google.common.base">Service</A>)
110 <LI TYPE="circle">com.google.common.util.concurrent.<A HREF="com/google/common/util/concurrent/AbstractService.html" title="class in com.google.common.util.concurrent"><B>AbstractService</B></A> (implements com.google.common.base.<A HREF="com/google/common/base/Service.html" title="interface in com.google.common.base">Service</A>
    [all...]
  /bionic/libc/kernel/arch-arm/asm/arch/
mcbsp.h 31 #define OMAP_MCBSP_READ(base, reg) __raw_readw((base) + OMAP_MCBSP_REG_##reg)
32 #define OMAP_MCBSP_WRITE(base, reg, val) __raw_writew((val), (base) + OMAP_MCBSP_REG_##reg)
  /cts/tools/signature-tools/src/signature/compare/model/
IAnnotatableElementDelta.java 22 * {@code IAnnotatableElementDelta} is the common base interface for deltas
ITypeDefinitionDelta.java 22 * {@code ITypeDefinitionDelta} is the common base interface for deltas which
ITypeReferenceDelta.java 22 * {@code ITypeReferenceDelta} is the common base interface for deltas which
  /dalvik/libcore/auth/src/main/java/javax/security/auth/callback/
Callback.java 21 * Defines an empty base interface for all {@code Callback}s used during

Completed in 58 milliseconds

<<11121314151617181920>>