HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 526 - 550 of 3271) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.h 36 IndexBuffer(IDirect3DDevice9 *device, UINT size, D3DFORMAT format);
59 StreamingIndexBuffer(IDirect3DDevice9 *device, UINT initialSize, D3DFORMAT format);
110 std::size_t indexSize(D3DFORMAT format) const;
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
Svc.java 85 String format = " %-" + maxlen + "s %s";
88 System.err.println(String.format(format, c.name(), c.shortHelp()));
  /frameworks/base/core/java/android/widget/
DigitalClock.java 25 import android.text.format.DateFormat;
88 setText(DateFormat.format(mFormat, mCalendar));
108 return android.text.format.DateFormat.is24HourFormat(getContext());
  /frameworks/base/media/java/android/mtp/
MtpDevice.java 132 * with the given format and parent.
136 * @param format the format of the object to return, or zero for all formats
140 public int[] getObjectHandles(int storageId, int format, int objectHandle) {
141 return native_get_object_handles(storageId, format, objectHandle);
160 * The size and format of the thumbnail data can be determined via
163 * For typical devices the format is JPEG.
247 private native int[] native_get_object_handles(int storageId, int format, int objectHandle);
  /frameworks/base/media/mtp/
MtpDevice.h 83 MtpObjectHandleList* getObjectHandles(MtpStorageID storageID, MtpObjectFormat format,
93 MtpObjectPropertyList* getObjectPropsSupported(MtpObjectFormat format);
96 MtpProperty* getObjectPropDesc(MtpObjectProperty code, MtpObjectFormat format);
  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 101 Slog.w(TAG, String.format(
105 Slog.e(TAG, String.format(
140 if (LOCAL_LOGD) Slog.d(TAG, String.format("RCV <- {%s}", event));
157 Slog.w(TAG, String.format("Bad msg (%s)", event));
217 if (LOCAL_LOGD) Slog.d(TAG, String.format("SND -> {%s} {%s}", command, argument));
257 if (LOCAL_LOGD) Slog.d(TAG, String.format("RSP <- {%s}", line));
263 String.format("Invalid response from daemon (%s)", line));
278 * Note: The format of the last response in this case is
305 if (LOCAL_LOGD) Slog.d(TAG, String.format("List terminated with {%s}", line));
308 Slog.w(TAG, String.format("Recv'd %d lines after end of list {%s}", (last-i), cmd))
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCommitter.java 64 Log.d(LOG_TAG, String.format("time to commit entries: %d ms", mTimeToCommit));
92 Log.e(LOG_TAG, String.format("%s: %s", e.toString(), e.getMessage()));
95 Log.e(LOG_TAG, String.format("%s: %s", e.toString(), e.getMessage()));
  /hardware/libhardware_legacy/audio/
AudioHardwareInterface.cpp 110 size_t AudioHardwareBase::getInputBufferSize(uint32_t sampleRate, int format, int channelCount)
116 if (format != AudioSystem::PCM_16_BIT) {
117 LOGW("getInputBufferSize bad format: %d", format);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventValueDescription.java 59 String.format("%1$s doesn't support type %2$s", type, this));
158 return String.format("%1$s (%2$s, %3$s)", mName, mEventValueType.toString(),
162 return String.format("%1$s (%2$s)", mName, mEventValueType.toString());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 91 msg = String.format(
96 msg = String.format(
101 msg = String.format(
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
ScreenDimensionQualifier.java 142 return String.format("%1$dx%2$d", mValue1, mValue2); //$NON-NLS-1$
148 return String.format("%1$dx%2$d", mValue1, mValue2);
157 return String.format("Screen resolution %1$dx%2$d", mValue1, mValue2);
  /sdk/layoutlib_api/sample/src/com/example/android/render/
StdOutLogger.java 68 error(null /*tag*/, String.format(errorFormat, args), t, null /*data*/);
72 System.out.println(String.format(msgFormat, args));
76 warning(null /*tag*/, String.format(warningFormat, args), null /*data*/);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
MessageBoxLog.java 67 logMessages.add(String.format("Error: " + errorFormat, arg));
77 logMessages.add(String.format("Warning: " + warningFormat, arg));
83 logMessages.add(String.format(msgFormat, arg));
  /system/core/run-as/
run-as.c 90 panic(const char* format, ...)
95 va_start(args, format);
96 vfprintf(stderr, format, args);
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterSurfaceView.java 116 int format,
120 mFormat = format;
127 mListener.surfaceChanged(holder, format, width, height);
  /external/libxml2/
xmlsave.c 85 int format; member in struct:_xmlSaveCtxt
410 ret->format = 1;
555 int format, level; local
588 format = ctxt->format;
591 ctxt->format = 0;
595 ctxt->format = format;
659 if ((ctxt->format) && (xmlIndentTreeOutput) &&
668 if (ctxt->format) {
743 int format; local
1285 int format, addmeta = 0; local
    [all...]
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_ColorChecker.cpp 31 if (inputInfo.format != ANDROID_BITMAP_FORMAT_RGBA_8888 &&
32 inputInfo.format != ANDROID_BITMAP_FORMAT_RGB_565) {
33 LOGE("Only RGBA_8888 and RGB_565 bitmaps are supported, was given type %d.", inputInfo.format);
67 switch (inputInfo.format) {
  /cts/tests/appsecurity-tests/test-apps/AppAccessData/src/com/android/cts/appaccessdata/
AccessPrivateDataTest.java 50 String privateFilePath = String.format("/data/data/%s/%s", APP_WITH_DATA_PKG,
  /cts/tools/vm-tests/src/dot/junit/
AllTests.java 36 suite.addTest(dot.junit.format.AllTests.suite());
  /cts/tools/vm-tests-tf/src/dot/junit/
AllTests.java 36 suite.addTest(dot.junit.format.AllTests.suite());
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 28 * A decoded Dalvik instruction. This consists of a format codec, a
34 * match the names given in the Dalvik instruction format
41 /** non-null; instruction format / codec */
42 private final InstructionCodec format; field in class:DecodedInstruction
73 InstructionCodec format = OpcodeInfo.getFormat(opcode); local
75 return format.decode(opcodeUnit, in);
102 public DecodedInstruction(InstructionCodec format, int opcode,
104 if (format == null) {
105 throw new NullPointerException("format == null");
112 this.format = format
    [all...]
  /development/ndk/platforms/android-8/include/android/
bitmap.h 44 int32_t format; member in struct:__anon1176
  /development/ndk/platforms/android-9/include/android/
bitmap.h 43 int32_t format; member in struct:__anon1265
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
TextureUtils.cpp 49 typedef void (GLAPIENTRY *glTexImage2DPtr_t ) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
56 GLint format = GL_RGB; local
69 glTexImage2DPtr(target,level,format,width,height,border,format,type,pOut);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Serializer.java 122 * identical to the output format used with the writer.
139 * Specifies an output format for this serializer. It the
140 * serializer has already been associated with an output format,
141 * it will switch to the new format. This method should not be
160 * value is passed in this format: {uri}localName
167 * @param format The output format to use, as a set of key/value pairs.
169 public void setOutputFormat(Properties format);
172 * Returns the output format properties for this serializer.
174 * @return The output format key/value pairs in use
    [all...]

Completed in 744 milliseconds

<<21222324252627282930>>