/packages/inputmethods/PinyinIME/jni/include/ |
dicttrie.h | 110 // Given a LmaNodeLE0 node, extract the lemmas specified by it, and fill 116 // Given a LmaNodeGE1 node, extract the lemmas specified by it, and fill 226 // Fill the lemmas with highest scores to the prediction buffer. 227 // his_len is the history length to fill in the prediction buffer.
|
/external/bluetooth/glib/gobject/ |
gtypeplugin.c | 153 * @info: the #GTypeInfo struct to fill in 154 * @value_table: the #GTypeValueTable to fill in 185 * @info: the #GInterfaceInfo to fill in
|
/external/elfutils/libelf/ |
elf32_updatefile.c | 162 fill the gaps with the prescribed fill byte. */ 289 /* Fill the gap between last section and section header table if 306 /* Size of the buffer we use to generate the blocks of fill bytes. */ 315 /* Helper function to write out fill bytes. */ 317 fill (int fd, off_t pos, size_t len, char *fillbuf, size_t *filledp) function 418 && unlikely (fill (elf->fildes, ehdr->e_ehsize, 467 fill the gaps with the prescribed fill byte. */ 527 if (unlikely (fill (elf->fildes, last_offset [all...] |
/external/proguard/src/proguard/gui/ |
TabbedPane.java | 56 cardConstraints.fill = GridBagConstraints.BOTH; 75 buttonConstraints.fill = GridBagConstraints.HORIZONTAL; 155 imageConstraints.fill = GridBagConstraints.BOTH;
|
/external/stlport/stlport/stl/ |
_ios.h | 81 char_type fill() const { return _M_fill; } function in class:basic_ios 82 char_type fill(char_type __fill) { function in class:basic_ios 135 char_type _M_fill; // The fill character, used for padding.
|
_ostream.c | 203 __os, __os.fill(), 312 this->rdbuf()->_M_sputnc(this->fill(), __npad) != __npad; 315 __failed = this->rdbuf()->_M_sputnc(this->fill(), __npad) != __npad; 344 this->rdbuf()->_M_sputnc(this->fill(), __npad) != __npad; 347 __failed = this->rdbuf()->_M_sputnc(this->fill(), __npad) != __npad; 376 this->rdbuf()->_M_sputnc(this->fill(), __npad) != __npad; 379 __failed = this->rdbuf()->_M_sputnc(this->fill(), __npad) != __npad;
|
_hashtable.c | 189 fill(_M_buckets.begin() + __prev, _M_buckets.begin() + __n + 1, 280 fill(_M_buckets.begin() + __prev_b, _M_buckets.begin() + __n + 1, __cur._M_node); 311 fill(_M_buckets.begin() + __prev_b, _M_buckets.begin() + __n + 1, 357 fill(_M_buckets.begin() + __f_bucket, _M_buckets.begin() + __l_bucket + 1, __cur._M_node); 471 fill(__tmp.begin() + __prev_bucket, __tmp.begin() + __new_bucket + 1, __cur._M_node); 528 fill(__dst_b, __dst_end_b, __STATIC_CAST(_BucketType*, 0));
|
/external/webkit/WebCore/rendering/style/ |
SVGRenderStyle.h | 78 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(float, fill, opacity, FillOpacity, fillOpacity, 1.0f) 79 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(SVGPaint, fill, paint, FillPaint, fillPaint, SVGPaint::defaultFill()) 172 DataRef<StyleFillData> fill; member in class:WebCore::SVGRenderStyle
|
/frameworks/base/awt/java/awt/ |
GradientPaintContext.java | 90 * @param t - the fill transformation 91 * @param point1 - the start fill point 93 * @param point2 - the end fill point
|
/frameworks/base/awt/java/awt/font/ |
ShapeGraphicAttribute.java | 89 * The Constant FILL indicates whether the Shape is filled or not. 91 public static final boolean FILL = false; 181 g2.fill(at.createTransformedShape(fShape));
|
/frameworks/base/core/java/android/app/backup/ |
BackupDataInputStream.java | 85 * Read enough entity data into a byte array to fill the array. 87 * @param b Byte array to fill with data from the stream. If the stream does not 88 * have sufficient data to fill the array, then the contents of the remainder of
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
BinaryDictionary.java | 84 Arrays.fill(mInputCodes, -1); 90 Arrays.fill(mOutputChars, (char) 0); 91 Arrays.fill(mFrequencies, 0);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
OverviewPage.java | 83 mOverviewPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false)); 89 exportPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false)); 93 mOverviewLinkPart.getSection().setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
|
/external/jpeg/ |
jcprepct.c | 141 /* Do color conversion to fill the conversion buffer. */ 152 /* If at bottom of image, pad to fill the conversion buffer. */ 208 /* Do color conversion to fill the conversion buffer. */ 234 /* When at bottom of image, pad to fill the conversion buffer. */ 297 /* Fill in the above and below wraparound pointers */
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ualgobase.h | 107 /// Fill assigns the value value to every element in the range [first, last). 113 inline void fill (ForwardIterator first, ForwardIterator last, const T& value) function in namespace:ustl 209 template <> inline void fill (type* first, type* last, const type& value) \ 274 template <> inline void fill (type* first, type* last, const v_type& value) \ 275 { fill ((alias_type*) first, (alias_type*) last, (const alias_type&) value); }
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_surface.c | 539 SDL_SetError("1-bpp rect fill not yet implemented"); 546 SDL_SetError("4-bpp rect fill not yet implemented"); 551 * This function performs a fast fill of the given rectangle with 'color' 570 SDL_SetError("Fill rect on unsupported surface format"); 576 /* If 'dstrect' == NULL, then fill the whole surface */ 599 /* Perform software fill */ 627 double fill; local 628 SDL_memset(&fill, color, (sizeof fill)); 634 double f = fill; [all...] |
/external/webkit/WebCore/rendering/ |
RenderFrameSet.cpp | 90 // Fill first. 96 // bit of the fill color showing through. 110 // Fill first. 116 // bit of the fill color showing through. 184 m_deltas.fill(0); 381 axis.m_deltas.fill(0); 408 m_rows.m_preventResize.fill(frameSet()->noResize()); 409 m_rows.m_allowBorder.fill(false); 410 m_cols.m_preventResize.fill(frameSet()->noResize()); 411 m_cols.m_allowBorder.fill(false) [all...] |
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
InflaterInputStreamTest.java | 62 fill(); method 255 notes = "IOException & ZipException checking missed. Additional tests for fill method is not needed.", 261 notes = "IOException & ZipException checking missed. Additional tests for fill method is not needed.", 262 method = "fill", 311 method = "fill", 342 method = "fill",
|
/external/icu4c/io/ |
ustdio.c | 424 /* Determine the # of codepage bytes needed to fill our UChar buffer */ 488 /* fill the buffer if needed */ 504 /* otherwise, iteratively fill the buffer and copy */ 585 /* otherwise, fill the buffer and return the next character */ 613 /* Fill the buffer if it is empty */ 693 /* fill the buffer */
|
/external/webkit/WebCore/platform/graphics/ |
GlyphPageTreeNode.cpp | 148 // Fill in a buffer with the entire "page" of characters that we want to look up glyphs for. 192 // Success is not guaranteed. For example, Times fails to fill page 260, giving glyph data 222 haveGlyphs |= pageToFill->fill(from, to - from, buffer + from * (start < 0x10000 ? 1 : 2), (to - from) * (start < 0x10000 ? 1 : 2), range.fontData()); 233 haveGlyphs = m_page->fill(0, GlyphPage::size, buffer, bufferLength, static_cast<const SimpleFontData*>(fontData)); 290 // ask the system for the best font to use and fill that glyph in for us. 387 indent.fill('\t', level());
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
RemotePackagesPage.java | 102 mTreeSources.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 5, 1));
111 mDescriptionContainer.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, false, 5, 1));
114 mDescriptionLabel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
|
/bionic/libc/stdio/ |
fvwrite.c | 97 * Fully buffered: fill partially full buffer, if any, 137 /* fill and flush */ 149 /* fill and done */
|
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
PRF.java | 70 * @param out: the buffer to fill up with the value of the function. 83 Arrays.fill(pref, (byte) (64 + iteration++)); 102 * @param out: the buffer to fill up with the value of the function.
|
/external/astl/include/ |
ios_base.h | 111 // internal: Adds fill characters as the designated interanl point 114 // left: Adds fill characters on the right (final positions) of 118 // right: Adds fill characters on the left (initial positions) of
|
/external/icu4c/common/unicode/ |
caniter.h | 75 * @param status Fill-in parameter which receives the status of this operation. 112 * @param status Fill-in parameter which receives the status of this operation. 123 * @param status Fill-in parameter which receives the status of this operation.
|