Searched defs:type (Results 226 - 250 of 940) sorted by relevance

1234567891011>>

/frameworks/base/libs/hwui/
H A DGpuMemoryTracker.cpp93 for (int type = 0; type < NUM_TYPES; type++) {
94 const TypeStats& stats = gObjectStats[type];
95 stream << TYPE_NAMES[type];
102 int GpuMemoryTracker::getInstanceCount(GpuObjectType type) { argument
103 return gObjectStats[static_cast<int>(type)].count;
106 int GpuMemoryTracker::getTotalSize(GpuObjectType type) { argument
107 return gObjectStats[static_cast<int>(type)].totalSize;
113 for (int type
[all...]
H A DJankTracker.h68 JankTrackerType type; member in struct:android::uirenderer::ProfileDataDescription
78 void setDescription(JankTrackerType type, const std::string&& name) { argument
79 mDescription.type = type;
H A DProgram.cpp131 GLuint Program::buildShader(const char* source, GLenum type) { argument
134 GLuint shader = glCreateShader(type);
/frameworks/base/location/java/android/location/
H A DGeofence.java95 private static void checkType(int type) { argument
96 if (type != TYPE_HORIZONTAL_CIRCLE) {
97 throw new IllegalArgumentException("invalid type: " + type);
104 int type = in.readInt();
108 checkType(type);
130 private static String typeToString(int type) { argument
131 switch (type) {
135 checkType(type);
/frameworks/base/media/java/android/media/
H A DMediaCodecList.java110 for (String type: supportedTypes) {
111 caps[typeIx++] = getCodecCapabilities(index, type);
124 getCodecCapabilities(int index, String type); argument
253 // type is not supported
/frameworks/base/media/java/android/media/tv/
H A DTvStreamConfig.java52 type(source.readInt()).
129 public Builder type(int type) { argument
130 mType = type;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java38 // MTP data type
39 int type; field in class:MtpPropertyGroup.Property
43 Property(int code, int type, int column) { argument
45 this.type = type;
91 int type;
96 type = MtpConstants.TYPE_UINT32;
100 type = MtpConstants.TYPE_UINT16;
104 type = MtpConstants.TYPE_UINT16;
108 type
[all...]
/frameworks/base/obex/javax/obex/
H A DServerSession.java133 * Received a request type that is not recognized so I am
193 * @param type the type of request received; either 0x02 or 0x82
196 private void handlePutRequest(int type) throws IOException { argument
197 ServerOperation op = new ServerOperation(this, mInput, type, mMaxPacketLength, mListener);
239 * @param type the type of request received; either 0x03 or 0x83
242 private void handleGetRequest(int type) throws IOException { argument
243 ServerOperation op = new ServerOperation(this, mInput, type, mMaxPacketLength, mListener);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/accounts/
H A DAuthenticatorHelper.java90 * Gets an icon associated with a particular account type. If none found, return null.
91 * @param accountType the type of account
123 * Gets the label associated with a particular account type. If none found, return null.
124 * @param accountType the type of account
136 Log.w(TAG, "No label name for account type " + accountType);
138 Log.w(TAG, "No label icon for account type " + accountType);
145 * Gets the package associated with a particular account type. If none found, return null.
146 * @param accountType the type of account
158 * Gets the resource id of the label associated with a particular account type. If none found,
160 * @param accountType the type o
247 getAuthoritiesForAccountType(String type) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DAnglesClassifier.java80 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
H A DHumanInteractionClassifier.java114 public void setType(int type) { argument
115 mCurrentType = type;
H A DSpeedAnglesClassifier.java72 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DNavBarTuner.java70 private static final String TYPE = "type";
134 ListPreference type = (ListPreference) findPreference(TYPE + "_" + k);
145 type.setValue(KEY);
154 type.setValue(button);
161 setValue(setting, type, keycode, icon);
166 type.setOnPreferenceChangeListener(listener);
181 setValue(setting, type, keycode, icon);
213 private void setValue(String setting, ListPreference type, Preference keycode, argument
215 String button = type.getValue();
/frameworks/base/rs/java/android/renderscript/
H A DFileA3D.java42 * Specifies what renderscript object type is contained within
72 * object's type and also name and load the object itself if
98 * Returns the type of a renderscript object the index entry
100 * @return type of a renderscript object the index entry
150 throw new RSRuntimeException("Unrecognized object type in file.");
157 IndexEntry(RenderScript rs, int index, long id, String name, EntryType type) { argument
162 mEntryType = type;
/frameworks/base/services/core/java/com/android/server/
H A DSystemService.java220 protected final <T> void publishLocalService(Class<T> type, T service) { argument
221 LocalServices.addService(type, service);
227 protected final <T> T getLocalService(Class<T> type) { argument
228 return LocalServices.getService(type);
/frameworks/base/services/core/java/com/android/server/pm/
H A DBasePermission.java36 final int type; field in class:BasePermission
59 type = _type;
/frameworks/base/services/core/jni/
H A Dcom_android_server_HardwarePropertiesManagerService.cpp110 static jfloatArray nativeGetDeviceTemperatures(JNIEnv *env, jclass /* clazz */, int type, argument
134 if (static_cast<int>(list[i].type) == type) {
/frameworks/base/services/tests/servicestests/src/com/android/server/power/
H A DBatterySaverPolicyTest.java185 private void testServiceDefaultValue(@ServiceType int type) { argument
188 mBatterySaverPolicy.getBatterySaverPolicy(type, BATTERY_SAVER_ON);
192 mBatterySaverPolicy.getBatterySaverPolicy(type, BATTERY_SAVER_OFF);
/frameworks/base/telephony/java/android/telephony/
H A DCellInfo.java53 // Observation time stamped as type in nanoseconds since boot
134 private static String timeStampTypeToString(int type) { argument
135 switch (type) {
179 protected void writeToParcel(Parcel dest, int flags, int type) { argument
180 dest.writeInt(type);
201 int type = in.readInt();
202 switch (type) {
/frameworks/base/test-runner/src/junit/textui/
H A DResultPrinter.java56 protected void printDefects(Enumeration<TestFailure> booBoos, int count, String type) { argument
59 getWriter().println("There was " + count + " " + type + ":");
61 getWriter().println("There were " + count + " " + type + "s:");
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameQueue.java30 public void setWriteType(FrameType type) { argument
31 mWriteType = type;
34 public void setReadType(FrameType type) { argument
35 mReadType = type;
43 FrameType type = buildType();
45 //validateType(type, name);
46 FrameQueue result = new FrameQueue(type, name);
65 private void validateType(FrameType type, String queueName) {
66 if (!type.isSpecified()) {
68 + "its type ("
179 FrameQueue(FrameType type, String name) argument
[all...]
H A DSignature.java39 * format, that allows passing in any type of Frame. Thus, if more granular access is needed to
51 public FrameType type; field in class:Signature.PortInfo
55 type = FrameType.any();
58 public PortInfo(int flags, FrameType type) { argument
60 this.type = type;
70 return modeName + " " + ioName + ": " + type.toString();
90 * @param type the type of the input frame.
93 public Signature addInputPort(String name, int flags, FrameType type) { argument
106 addOutputPort(String name, int flags, FrameType type) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
H A DMffFilterTestCase.java132 protected Frame createFrame(FrameType type, int[] dimensions) { argument
133 return new Frame(type, dimensions, mRunner.getFrameManager());
/frameworks/base/tests/utils/testutils/java/android/app/test/
H A DTestAlarmManager.java112 public PendingAlarm(int type, long triggerAtMillis, String tag, Runnable callback) { argument
113 mType = type;
139 public void answer(int type, long triggerAtMillis, String tag, argument
141 mPendingAlarms.add(new PendingAlarm(type, triggerAtMillis, tag,
/frameworks/base/tools/aapt/
H A DSourcePos.cpp68 const char* type = ""; local
71 type = "note: ";
74 type = "warning: ";
77 type = "error: ";
83 fprintf(to, "%s:%d: %s%s\n", this->file.string(), this->line, type, this->error.string());
85 fprintf(to, "%s: %s%s\n", this->file.string(), type, this->error.string());
88 fprintf(to, "%s%s\n", type, this->error.string());

Completed in 400 milliseconds

1234567891011>>