Searched defs:create (Results 76 - 100 of 146) sorted by relevance

123456

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DDelegateClassAdapterTest.java17 package com.android.tools.layoutlib.create;
27 import com.android.tools.layoutlib.create.dataclass.ClassWithNative;
28 import com.android.tools.layoutlib.create.dataclass.OuterClass;
29 import com.android.tools.layoutlib.create.dataclass.OuterClass.InnerClass;
72 // create an instance of the class that will be modified
/frameworks/base/voip/java/android/net/rtp/
H A DRtpStream.java71 mLocalPort = create(address.getHostAddress());
75 private native int create(String address) throws SocketException; method in class:RtpStream
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DType.java232 * Validate structure and create a new type.
236 public Type create() { method in class:Type.Builder
H A DRSReflect.java107 mElementBuilder_create = mElementBuilder.getDeclaredMethod("create",
135 static RSReflect create() { method in class:RSReflect
136 android.util.Log.v("RSR", "create");
139 android.util.Log.v("RSR", "create ok");
142 android.util.Log.v("RSR", "create fail");
H A DSampler.java111 rs.mSampler_CLAMP_NEAREST = b.create();
131 rs.mSampler_CLAMP_LINEAR = b.create();
151 rs.mSampler_CLAMP_LINEAR_MIP_LINEAR = b.create();
171 rs.mSampler_WRAP_NEAREST = b.create();
191 rs.mSampler_WRAP_LINEAR = b.create();
211 rs.mSampler_WRAP_LINEAR_MIP_LINEAR = b.create();
284 public Sampler create() { method in class:Sampler.Builder
H A DScriptGroup.java152 * Once all the connections are made a call to create will
338 public ScriptGroup create() { method in class:ScriptGroup.Builder
/frameworks/support/v4/java/android/support/v4/app/
H A DTaskStackBuilder.java132 public static TaskStackBuilder create(Context context) { method in class:TaskStackBuilder
143 * @deprecated use {@link #create(Context)} instead
146 return create(context);
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java57 * created by {@code #create}. If a value was returned, it is moved to the
77 * Attempt to create a value. This may take a long time, and the map
78 * may be different when create() returns. If a conflicting value was
79 * added to the map while create() was working, we leave that value in
83 V createdValue = create(key);
228 protected V create(K key) { method in class:LruCache
292 * Returns the number of times {@link #create(Object)} returned a value.
/frameworks/base/obex/javax/obex/
H A DClientSession.java282 public HeaderSet setPath(HeaderSet header, boolean backup, boolean create) throws IOException { argument
329 * The create bit is bit 1 so if we or with 2 the bit will be set.
331 if (!create) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsScrollViewPerformanceHelper.java42 public static RecentsScrollViewPerformanceHelper create(Context context, method in class:RecentsScrollViewPerformanceHelper
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp68 virtual sp<IMediaPlayer> create( function in class:android::BpMediaPlayerService
175 sp<IMediaPlayer> player = create(pid, client, audioSessionId);
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp137 AudioResampler* AudioResampler::create(int bitDepth, int inChannelCount, function in class:android::AudioResampler
/frameworks/base/core/java/android/os/
H A DCommonClock.java135 static public CommonClock create() { method in class:CommonClock
283 * restore functionality, clients should {@link #release()} their old visualizer and create
/frameworks/base/core/jni/android/graphics/
H A DYuvToJpegEncoder.cpp9 YuvToJpegEncoder* YuvToJpegEncoder::create(int format, int* strides) { function in class:YuvToJpegEncoder
228 YuvToJpegEncoder* encoder = YuvToJpegEncoder::create(format, imgStrides);
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java87 public static Typeface create(String familyName, int style) { method in class:Typeface
102 public static Typeface create(Typeface family, int style) { method in class:Typeface
183 DEFAULT = create((String) null, 0);
184 DEFAULT_BOLD = create((String) null, Typeface.BOLD);
185 SANS_SERIF = create("sans-serif", 0);
186 SERIF = create("serif", 0);
187 MONOSPACE = create("monospace", 0);
192 create((String) null, Typeface.ITALIC),
193 create((String) null, Typeface.BOLD_ITALIC),
/frameworks/base/graphics/java/android/renderscript/
H A DScriptGroup.java38 * script kernels and connections. Attempting to create a
39 * ScriptGroup with multiple DAGs or attempting to create
158 * Once all the connections are made a call to create will
375 public ScriptGroup create() { method in class:ScriptGroup.Builder
H A DType.java259 * Validate structure and create a new type.
263 public Type create() { method in class:Type.Builder
/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp43 status_t CursorWindow::create(const String8& name, size_t size, CursorWindow** outCursorWindow) { function in class:android::CursorWindow
/frameworks/base/location/java/android/location/
H A DLocationRequest.java33 * it should create a location request with {@link #setQuality} set to
160 public static LocationRequest create() { method in class:LocationRequest
/frameworks/base/services/jni/
H A Dcom_android_server_connectivity_Vpn.cpp325 static jint create(JNIEnv *env, jobject thiz, jint mtu) function in namespace:android
329 throwException(env, tun, "Cannot create interface");
452 {"jniCreate", "(I)I", (void *)create},
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DAbstractResult.java115 public static AbstractResult create(byte[] bytes) { method in class:AbstractResult
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DFontLoader.java80 public static FontLoader create(String fontOsLocation) { method in class:FontLoader
240 // create missing font styles, order is important.
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java17 package com.android.tools.layoutlib.create;
45 /** The path of the destination JAR to create. */
73 * @param osDestJar The path of the destination JAR to create.
122 // create the map of renamed class -> return type of method to delete.
/frameworks/rs/cpp/
H A DElement.cpp408 sp<const Element> Element::Builder::create() { function in class:Element::Builder
/frameworks/rs/
H A DrsScriptGroup.cpp177 ScriptGroup * ScriptGroup::create(Context *rsc, function in class:ScriptGroup
187 //ALOGE("ScriptGroup::create kernels=%i links=%i", (int)kernelCount, (int)linkCount);
341 return ScriptGroup::create(rsc,

Completed in 2219 milliseconds

123456