/external/freetype/include/freetype/ |
ftgzip.h | 65 * source :: 66 * The source stream. 72 * The source stream must be opened _before_ calling this function. 75 * *not* call `FT_Stream_Close' on the source stream. None of the stream 92 FT_Stream source );
|
ftlzw.h | 63 * source :: The source stream. 69 * The source stream must be opened _before_ calling this function. 72 * *not* call `FT_Stream_Close' on the source stream. None of the stream 89 FT_Stream source );
|
/external/guava/guava/src/com/google/common/eventbus/ |
HandlerFindingStrategy.java | 30 * Finds all suitable event handler methods in {@code source}, organizes them 33 * @param source object whose handlers are desired. 37 * @throws IllegalArgumentException if {@code source} is not appropriate for 40 Multimap<Class<?>, EventHandler> findAllHandlers(Object source);
|
/external/icu4c/tools/toolutil/ |
pkg_gencmn.h | 13 createCommonDataFile(const char *destDir, const char *name, const char *entrypointName, const char *type, const char *source, const char *copyRight,
|
/external/libvpx/vp8/decoder/ |
dboolhuff.c | 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 8 * be found in the AUTHORS file in the root of the source tree. 30 const unsigned char *source, 33 br->user_buffer_end = source+source_sz; 34 br->user_buffer = source; 39 if (source_sz && !source)
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultMessageLogFactory.java | 15 public LogRecord createLogRecord(String message, String source, 18 return new MessageLog(message, source, destination, timeStamp, 22 public LogRecord createLogRecord(String message, String source, 25 return new MessageLog(message, source, destination, timeStamp,
|
/external/qemu/android/skin/ |
image.h | 1 /* Copyright (C) 2007-2008 The Android Open Source Project 73 * of the source after returning the target, whose reference count is incremented 75 extern SkinImage* skin_image_rotate( SkinImage* source, SkinRotation rotation ); 81 extern SkinImage* skin_image_clone( SkinImage* source ); 83 /* create a skin image clone, the clone is a rotated version of a source image 85 extern SkinImage* skin_image_clone_full( SkinImage* source, 89 /* apply blending to a source skin image and copy the result to a target clone image */ 90 extern void skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend );
|
/external/v8/src/ |
snapshot-common.cc | 2 // Redistribution and use in source and binary forms, with or without 6 // * Redistributions of source code must retain the above copyright 41 SnapshotByteSource source(content, len); 42 Deserializer deserializer(&source); 74 SnapshotByteSource source(context_raw_data_, 76 Deserializer deserializer(&source);
|
/external/webkit/Source/WebCore/bindings/js/ |
ScriptSourceCode.h | 4 * Redistribution and use in source and binary forms, with or without 8 * * Redistributions of source code must retain the above copyright 45 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition()) 46 : m_provider(StringSourceProvider::create(source, url.isNull() ? String() : url.string(), startPosition)) 62 const String& source() const { return m_provider->source(); } function in class:WebCore::ScriptSourceCode
|
/external/webkit/Source/WebCore/dom/ |
DocumentFragment.cpp | 78 void DocumentFragment::parseHTML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission) 80 HTMLDocumentParser::parseDocumentFragment(source, this, contextElement, scriptingPermission); 83 bool DocumentFragment::parseXML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission) 85 return XMLDocumentParser::parseDocumentFragment(source, this, contextElement, scriptingPermission);
|
/frameworks/base/core/java/android/text/method/ |
AllCapsTransformationMethod.java | 2 * Copyright (C) 2011 The Android Open Source Project 26 * Transforms source text into an ALL CAPS string, locale-aware. 41 public CharSequence getTransformation(CharSequence source, View view) { 43 return source != null ? source.toString().toUpperCase(mLocale) : null; 46 return source;
|
ReplacementTransformationMethod.java | 2 * Copyright (C) 2006 The Android Open Source Project 49 * source CharSequence but with the characters in {@link #getOriginal} 52 public CharSequence getTransformation(CharSequence source, View v) { 59 if (!(source instanceof Editable)) { 62 * source characters so can be used unchanged. 67 if (TextUtils.indexOf(source, original[i]) >= 0) { 73 return source; 76 if (!(source instanceof Spannable)) { 78 * The text contains some of the source characters, 82 if (source instanceof Spanned) [all...] |
/libcore/dalvik/src/main/java/dalvik/system/ |
DalvikLogHandler.java | 2 * Copyright (C) 2009 The Android Open Source Project 38 * with additional fields (parameters, source methods, etc.) will flow 44 void publish(Logger source, String tag, Level level, String message);
|
/libcore/luni/src/main/java/java/text/ |
CollationElementIterator.java | 26 * source string. 52 * beginning of the source string has been reached, and there are no more 80 * Obtains the character offset in the source string corresponding to the 83 * <li>The index of the first character in the source string that matches 94 * <li>The length of the source string, if iteration has reached the end. 98 * @return The position of the collation element in the source string that 107 * Obtains the next collation element in the source string. 117 * Obtains the previous collation element in the source string. 165 * character in the source string which is found at the supplied offset. 176 * decomposable range of source text, the iterator may not return a correc [all...] |
/libcore/luni/src/main/java/libcore/icu/ |
NativeCollation.java | 24 public static native int compare(int address, String source, String target); 26 public static native int getCollationElementIterator(int address, String source); 28 public static native byte[] getSortKey(int address, String source); 42 public static native void setText(int address, String source);
|
/ndk/tests/build/gnustl-force-all/jni/ |
forced_all.cpp | 3 #error This source file SHOULD be built with -fexceptions!
|
/ndk/tests/build/gnustl-force-rtti/jni/ |
forced_rtti.cpp | 3 #error This source file SHOULD NOT be built with -fexceptions!
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
CursorBackedSourceResult.java | 2 * Copyright (C) 2010 The Android Open Source Project 26 private final Source mSource; 28 public CursorBackedSourceResult(Source source, String userQuery) { 29 this(source, userQuery, null); 32 public CursorBackedSourceResult(Source source, String userQuery, Cursor cursor) { 34 mSource = source; 37 public Source getSource() { 42 public Source getSuggestionSource() [all...] |
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
udp.h | 18 __u16 source; member in struct:udphdr
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
udp.h | 23 __be16 source; member in struct:udphdr
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
udp.h | 23 __be16 source; member in struct:udphdr
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
udp.h | 23 __be16 source; member in struct:udphdr
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
udp.h | 18 __u16 source; member in struct:udphdr
|
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
udp.h | 18 __u16 source; member in struct:udphdr
|
/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
udp.h | 18 __u16 source; member in struct:udphdr
|