Searched refs:type (Results 251 - 275 of 1474) sorted by relevance

<<11121314151617181920>>

/frameworks/opt/chips/src/com/android/ex/chips/
H A DDropdownChipLayouter.java38 * The type of adapter that is requesting a chip layout.
52 * {@link RecipientEntry#ENTRY_TYPE_PERMISSION_REQUEST} type.
101 * @param type The adapter type that is requesting the bind.
107 AdapterType type, String constraint) {
108 return bindView(convertView, parent, entry, position, type, constraint, null);
118 AdapterType type, String constraint, StateListDrawable deleteDrawable) {
126 final View itemView = reuseOrInflateView(convertView, parent, type);
130 // Hide some information depending on the adapter type.
131 switch (type) {
106 bindView(View convertView, ViewGroup parent, RecipientEntry entry, int position, AdapterType type, String constraint) argument
117 bindView(View convertView, ViewGroup parent, RecipientEntry entry, int position, AdapterType type, String constraint, StateListDrawable deleteDrawable) argument
202 newView(AdapterType type) argument
209 reuseOrInflateView(View convertView, ViewGroup parent, AdapterType type) argument
242 bindIconToView(boolean showImage, RecipientEntry entry, ImageView view, AdapterType type) argument
358 getItemLayoutResId(AdapterType type) argument
376 getAlternateItemLayoutResId(AdapterType type) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp43 player_type type) {
45 ALOGE("Failed to register MediaPlayerFactory of type %d, factory is"
46 " NULL.", type);
50 if (sFactoryMap.indexOfKey(type) >= 0) {
51 ALOGE("Failed to register MediaPlayerFactory of type %d, type is"
52 " already registered.", type);
56 if (sFactoryMap.add(type, factory) < 0) {
57 ALOGE("Failed to register MediaPlayerFactory of type %d, failed to add"
58 " to map.", type);
42 registerFactory_l(IFactory* factory, player_type type) argument
69 registerFactory(IFactory* factory, player_type type) argument
75 unregisterFactory(player_type type) argument
[all...]
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintsUserState.java232 int type;
233 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
234 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
235 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
250 int type;
251 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
252 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
253 if (type == XmlPullParser.END_TAG || type
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameType.java21 * FrameTypes are used mainly by Filters to specify the data type they intend to consume or produce.
23 * compatibility. This allows Filter writers to assume a certain data input type. It also helps
26 * A FrameType generally consists of an element type and number of dimensions. The currently
37 * If the object element type is used, class information may be appended to the FrameType to
39 * have the option of either specifying a type that represents a single object of that class, or
43 * When constructing a non-object type, you have the option of creating a 1D or 2D buffer, or
46 * an image type.
48 * Finally, it is possible to create a wild-card type with the {@link #any()} constructor. This
49 * type matches any other type
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java46 * - type names: [a-zS]
104 * Converts a string to an internal type constant.
106 * @param typeName the type name to convert
107 * @return the type constant that corresponds to {@code typeName},
108 * or {@code TYPE_ERROR} if the type is unknown
155 // Read the next token, which is either the type or EOF.
161 throw new ParseException(st, "type name");
163 final int type = interpretType(st.sval);
164 if (type == TYPE_ERROR) {
165 throw new ParseException(st, "valid type nam
233 parseValue(StreamTokenizer st, final int type) argument
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DConfigParsingUtils.cpp105 audio_devices_t type = AUDIO_DEVICE_NONE; local
108 DeviceConverter::fromString(node->value, type);
113 if (type == AUDIO_DEVICE_NONE ||
114 (!audio_is_input_device(type) && !audio_is_output_device(type))) {
115 ALOGW("loadDevice() bad type %08x", type);
118 sp<DeviceDescriptor> deviceDesc = new DeviceDescriptor(type, String8(root->name));
125 if (audio_is_input_device(type)) {
142 ALOGV("loadDevice() adding device tag (literal type)
295 audio_devices_t type; local
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseSurfaceHolder.java137 public void setType(int type) { argument
138 switch (type) {
142 type = SURFACE_TYPE_NORMAL;
145 switch (type) {
148 if (mRequestedType != type) {
149 mRequestedType = type;
167 "Surface type is SURFACE_TYPE_PUSH_BUFFERS");
/frameworks/base/media/java/android/media/midi/
H A DMidiDeviceInfo.java52 * The value for this property is of type {@link java.lang.String}.
60 * The value for this property is of type {@link java.lang.String}.
68 * The value for this property is of type {@link java.lang.String}.
76 * The value for this property is of type {@link java.lang.String}.
84 * The value for this property is of type {@link java.lang.String}.
92 * The value for this property is of type {@link android.hardware.usb.UsbDevice}.
100 * The value for this property is of type {@link android.bluetooth.BluetoothDevice}.
128 * The value for this property is of type {@link android.content.pm.ServiceInfo}.
141 * Port type for input ports
146 * Port type fo
154 PortInfo(int type, int portNumber, String name) argument
198 MidiDeviceInfo(int type, int id, int numInputPorts, int numOutputPorts, String[] inputPortNames, String[] outputPortNames, Bundle properties, boolean isPrivate) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A Dtouch_analytics.proto69 optional Type type = 1;
108 optional Type type = 1;
134 optional Type type = 11;
/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileIntentFilter.java73 int type;
74 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
75 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
77 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
79 } else if (type == XmlPullParser.START_TAG) {
/frameworks/compile/mclinker/include/mcld/Script/
H A DOperand.h38 Type type() const { return m_Type; } function in class:mcld::Operand
74 return pOperand->type() == Operand::SYMBOL;
105 return pOperand->type() == Operand::INTEGER;
139 return pOperand->type() == Operand::SECTION;
172 return pOperand->type() == Operand::SECTION_DESC;
205 return pOperand->type() == Operand::FRAGMENT;
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dtypedefs.h27 * defined type meaning corresponding constants
75 ********* define char type
91 #error cannot find 8-bit type
113 #error cannot find 16-bit type
135 #error cannot find 32-bit type
139 ********* define floating point type & constants
155 ********* define complex type
163 ********* define boolean type
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DIOProfile.h78 audio_devices_t profileType = mSupportedDevices[k]->type();
99 sp<DeviceDescriptor> getSupportedDeviceByAddress(audio_devices_t type, String8 address) const argument
101 return mSupportedDevices.getDevice(type, address);
/frameworks/base/core/java/android/transition/
H A DTransitionInflater.java134 int type;
140 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
141 && type != XmlPullParser.END_DOCUMENT) {
143 if (type != XmlPullParser.START_TAG) {
242 int type;
245 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
246 && type != XmlPullParser.END_DOCUMENT) {
248 if (type != XmlPullParser.START_TAG) {
296 int type;
300 while (((type
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java104 int type;
107 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
108 && type != XmlPullParser.END_DOCUMENT) {
110 if (type != XmlPullParser.START_TAG) {
181 int type;
184 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
185 && type != XmlPullParser.END_DOCUMENT) {
187 if (type != XmlPullParser.START_TAG) {
330 int type;
333 while (((type
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DHardwarePropertiesManagerService.java39 private static native float[] nativeGetDeviceTemperatures(int type, int source); argument
53 public float[] getDeviceTemperatures(String callingPackage, int type, int source) argument
57 return nativeGetDeviceTemperatures(type, source);
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaResourceMonitorService.java54 public void notifyResourceGranted(int pid, int type) argument
57 Slog.d(TAG, "notifyResourceGranted(pid=" + pid + ", type=" + type + ")");
65 intent.putExtra(Intent.EXTRA_MEDIA_RESOURCE_TYPE, type);
/frameworks/compile/mclinker/lib/LD/
H A DRelocator.cpp34 if (pReloc.symInfo()->type() == ResolveInfo::Section) {
82 if (sym.resolveInfo()->type() == ResolveInfo::File)
85 if (sym.resolveInfo()->type() == ResolveInfo::Function &&
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp87 llvm::Triple::ArchType type = local
89 if (llvm::Triple::UnknownArch != type)
90 pTriple.setArch(type);
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DAdapterViewBindingAdapter.java30 @BindingMethod(type = AdapterView.class, attribute = "android:onItemClick", method = "setOnItemClickListener"),
31 @BindingMethod(type = AdapterView.class, attribute = "android:onItemLongClick", method = "setOnItemLongClickListener"),
34 @InverseBindingMethod(type = AbsListView.class, attribute = "android:selectedItemPosition"),
H A DDatePickerBindingAdapter.java27 @InverseBindingMethod(type = DatePicker.class, attribute = "android:year"),
28 @InverseBindingMethod(type = DatePicker.class, attribute = "android:month"),
29 @InverseBindingMethod(type = DatePicker.class, attribute = "android:day", method = "getDayOfMonth"),
H A DSearchViewBindingAdapter.java29 @BindingMethod(type = SearchView.class, attribute = "android:onQueryTextFocusChange", method = "setOnQueryTextFocusChangeListener"),
30 @BindingMethod(type = SearchView.class, attribute = "android:onSearchClick", method = "setOnSearchClickListener"),
31 @BindingMethod(type = SearchView.class, attribute = "android:onClose", method = "setOnCloseListener"),
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.cpp29 void Daltonizer::setType(Daltonizer::ColorBlindnessTypes type) { argument
30 if (type != mType) {
32 mType = type;
143 // simulation: type of color blindness to simulate:
147 // correction: type of color blindness correction (should match the simulation above):
/frameworks/base/core/java/android/content/res/
H A DResources.java314 * some other type of CharSequence if it is styled.
318 * tool. This integer encodes the package, type, and resource
345 * tool. This integer encodes the package, type, and resource
367 * tool. This integer encodes the package, type, and resource
389 * tool. This integer encodes the package, type, and resource
420 * tool. This integer encodes the package, type, and resource
449 * tool. This integer encodes the package, type, and resource
467 * some other type of CharSequence if it is styled.
470 * tool. This integer encodes the package, type, and resource
487 * tool. This integer encodes the package, type, an
2089 loadXmlResourceParser(@nyRes int id, @NonNull String type) argument
2117 loadXmlResourceParser(String file, int id, int assetCookie, String type) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DUploadedTexture.java195 int type = GLUtils.getType(bitmap);
196 canvas.texSubImage2D(this, mBorder, mBorder, bitmap, format, type);
232 int type = GLUtils.getType(bitmap);
235 canvas.initializeTextureSize(this, format, type);
236 canvas.texSubImage2D(this, mBorder, mBorder, bitmap, format, type);
241 canvas.texSubImage2D(this, 0, 0, line, format, type);
245 canvas.texSubImage2D(this, 0, 0, line, format, type);
251 canvas.texSubImage2D(this, mBorder + bWidth, 0, line, format, type);
257 canvas.texSubImage2D(this, 0, mBorder + bHeight, line, format, type);

Completed in 7742 milliseconds

<<11121314151617181920>>