HomeSort by relevance Sort by last modified time
    Searched full:converted (Results 751 - 775 of 6909) sorted by null

<<31323334353637383940>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeReportStatusCodeLib/
ReportStatusCodeLib.c 140 @param CodeType The type of status code being converted.
141 @param Value The status code value being converted.
144 @retval TRUE The status code specified by CodeType and Value was converted
147 converted to an 8-bit POST code value.
195 @param CodeType The type of status code being converted.
196 @param Value The status code value being converted.
203 converted ASSERT() arguments specified by Filename, Description,
206 not be converted to ASSERT() arguments.
263 @retval TRUE The status code specified by Data was converted DEBUG() arguments
265 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/SmmRuntimeDxeReportStatusCodeLib/
ReportStatusCodeLib.c 120 @param CodeType The type of status code being converted.
121 @param Value The status code value being converted.
124 @retval TRUE The status code specified by CodeType and Value was converted
127 converted to an 8-bit POST code value.
175 @param CodeType The type of status code being converted.
176 @param Value The status code value being converted.
183 converted ASSERT() arguments specified by Filename, Description,
186 not be converted to ASSERT() arguments.
243 @retval TRUE The status code specified by Data was converted DEBUG() arguments
245 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/
ReportStatusCodeLib.c 131 @param CodeType The type of status code being converted.
132 @param Value The status code value being converted.
135 @retval TRUE The status code specified by CodeType and Value was converted
138 converted to an 8-bit POST code value.
186 @param CodeType The type of status code being converted.
187 @param Value The status code value being converted.
194 converted ASSERT() arguments specified by Filename, Description,
197 not be converted to ASSERT() arguments.
254 @retval TRUE The status code specified by Data was converted DEBUG() arguments
256 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeReportStatusCodeLib/
ReportStatusCodeLib.c 128 @param CodeType The type of status code being converted.
129 @param Value The status code value being converted.
132 @retval TRUE The status code specified by CodeType and Value was converted
135 converted to an 8-bit POST code value.
183 @param CodeType The type of status code being converted.
184 @param Value The status code value being converted.
191 converted ASSERT() arguments specified by Filename, Description,
194 not be converted to ASSERT() arguments.
251 @retval TRUE The status code specified by Data was converted DEBUG() arguments
253 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiReportStatusCodeLib/
ReportStatusCodeLib.c 100 @param CodeType The type of status code being converted.
101 @param Value The status code value being converted.
104 @retval TRUE The status code specified by CodeType and Value was converted
107 converted to an 8-bit POST code value.
155 @param CodeType The type of status code being converted.
156 @param Value The status code value being converted.
163 converted ASSERT() arguments specified by Filename, Description,
166 not be converted to ASSERT() arguments.
223 @retval TRUE The status code specified by Data was converted DEBUG() arguments
225 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/
ReportStatusCodeLib.c 265 @param CodeType The type of status code being converted.
266 @param Value The status code value being converted.
269 @retval TRUE The status code specified by CodeType and Value was converted
272 converted to an 8-bit POST code value.
320 @param CodeType The type of status code being converted.
321 @param Value The status code value being converted.
328 converted ASSERT() arguments specified by Filename, Description,
331 not be converted to ASSERT() arguments.
388 @retval TRUE The status code specified by Data was converted DEBUG() arguments
390 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
ReportStatusCodeLib.h 40 @param CodeType The type of status code being converted.
41 @param Value The status code value being converted.
44 @retval TRUE The status code specified by CodeType and Value was converted
47 converted to an 8-bit POST code value.
78 @param CodeType The type of status code being converted.
79 @param Value The status code value being converted.
86 converted ASSERT() arguments specified by Filename, Description,
89 not be converted to ASSERT() arguments.
127 @retval TRUE The status code specified by Data was converted DEBUG() arguments
129 @retval FALSE The status code specified by Data could not be converted to
    [all...]
  /external/python/cpython2/Doc/library/
2to3.rst 36 It can be converted to Python 3.x code via 2to3 on the command line:
105 converted.
132 Will cause a converted file named ``example.py3`` to be written.
157 **kwargs)`` is converted to ``function(*args, **kwargs)``.
211 Fixes dictionary iteration methods. :meth:`dict.iteritems` is converted to
215 converted respectively to :meth:`dict.items`, :meth:`dict.keys` and
244 ``my_function.func_closure`` is converted to ``my_function.__closure__``.
262 ``type(x) == SomeClass`` are converted to ``isinstance(x, SomeClass)``.
297 example, ``isinstance(x, (int, int))`` is converted to ``isinstance(x,
329 Fixes old method attribute names. For example, ``meth.im_func`` is converted
    [all...]
  /external/python/cpython3/Doc/library/
2to3.rst 36 It can be converted to Python 3.x code via 2to3 on the command line:
105 converted.
132 Will cause a converted file named ``example.py3`` to be written.
157 **kwargs)`` is converted to ``function(*args, **kwargs)``.
211 Fixes dictionary iteration methods. :meth:`dict.iteritems` is converted to
215 converted respectively to :meth:`dict.items`, :meth:`dict.keys` and
244 ``my_function.func_closure`` is converted to ``my_function.__closure__``.
262 ``type(x) == SomeClass`` are converted to ``isinstance(x, SomeClass)``.
297 example, ``isinstance(x, (int, int))`` is converted to ``isinstance(x,
329 Fixes old method attribute names. For example, ``meth.im_func`` is converted
    [all...]
  /external/python/cpython3/Python/
fileutils.c 359 size_t converted = mbrtowc(out, (char*)in, argsize, &mbs);
360 if (converted == 0)
363 if (converted == (size_t)-2) {
373 if (converted == (size_t)-1) {
384 argsize -= converted;
385 while (converted--)
389 /* successfully converted some bytes */
390 in += converted;
391 argsize -= converted;
414 U+DC80..U+DCFF are converted to bytes 0x80..0xFF
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/proguard/
ProguardMap.java 346 StringBuilder converted = new StringBuilder(); local
347 converted.append('(');
350 converted.append(fromProguardSignature(arg));
353 converted.append(')');
354 converted.append(fromProguardSignature(sig.substring(end + 1)));
355 return converted.toString();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
String.c 540 Len - Length in bytes of the buffer to hold converted data.
541 If routine return with EFI_SUCCESS, containing length of converted data.
543 Str - String to be converted from.
548 EFI_BUFFER_TOO_SMALL: The buffer is too small to hold converted data.
627 Buf - Buffer to be converted from.
628 Len - Length in bytes of the buffer to be converted.
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemSort.java 62 * node list. The resulting object is converted to a string as if
85 * node list. The resulting object is converted to a string as if
149 * converted to numbers and then sorted according to the numeric value;
150 * the sort key is converted to a number as if by a call to the
186 * converted to numbers and then sorted according to the numeric value;
187 * the sort key is converted to a number as if by a call to the
  /external/guava/guava/src/com/google/common/base/
Converter.java 117 * converted, an unchecked exception (such as {@link IllegalArgumentException}) should be thrown.
120 * @return the converted instance; <b>must not</b> be null
126 * converted, an unchecked exception (such as {@link IllegalArgumentException}) should be thrown.
129 * @return the converted instance; <b>must not</b> be null
143 * @return the converted value; is null <i>if and only if</i> {@code a} is null
395 * return {@code null}. If a value cannot be converted, the function should throw an unchecked
  /frameworks/av/drm/common/include/
IDrmEngine.h 264 * which needs to be converted, then the application has to
276 * The resultant converted data and the status is returned in the DrmConvertedInfo
282 * @param[in] inputData Input Data which need to be converted
284 * the output converted data and offset. In this case the
291 * Informs the Drm Agent when there is no more data which need to be converted
295 * protect the converted file.
  /frameworks/av/drm/libdrmframework/include/
DrmManagerClientImpl.h 244 * which needs to be converted, then the application has to
255 * The resultant converted data and the status is returned in the DrmConvertedInfo
261 * @param[in] inputData Input Data which need to be converted
263 * the output converted data and offset. In this case the
269 * Informs the Drm Agent when there is no more data which need to be converted
273 * protect the converted file.
  /frameworks/base/graphics/java/android/view/
PixelCopy.java 94 * The pixel format of the source buffer will be converted, as part of the copy,
115 * The pixel format of the source buffer will be converted, as part of the copy,
141 * The pixel format of the source buffer will be converted, as part of the copy,
162 * The pixel format of the source buffer will be converted, as part of the copy,
201 * The pixel format of the source buffer will be converted, as part of the copy,
231 * The pixel format of the source buffer will be converted, as part of the copy,
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListItemFactory.java 173 * @return The converted view
213 * @return The converted view
275 * @return The converted view
  /developers/build/prebuilts/gradle/DownloadableFonts/app/src/main/java/com/example/android/downloadablefonts/
MainActivity.java 247 * @return the converted width
256 * @return the converted weight
271 * @return the converted italic
  /developers/build/prebuilts/gradle/DownloadableFonts/kotlinApp/app/src/main/kotlin/com/example/android/downloadablefonts/
MainActivity.kt 212 * @return the converted width
222 * @return the converted weight
238 * @return the converted italic
  /developers/samples/android/ui/fonts/DownloadableFonts/app/src/main/java/com/example/android/downloadablefonts/
MainActivity.java 247 * @return the converted width
256 * @return the converted weight
271 * @return the converted italic
  /developers/samples/android/ui/fonts/DownloadableFonts/kotlinApp/app/src/main/kotlin/com/example/android/downloadablefonts/
MainActivity.kt 212 * @return the converted width
222 * @return the converted weight
238 * @return the converted italic
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytes_methods.c 244 Return a copy of B with all ASCII characters converted to lowercase.");
272 Return a copy of B with all ASCII characters converted to uppercase.");
371 Return a copy of B with uppercase ASCII characters converted\n\
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
fixer_base.py 127 but that it cannot be converted automatically.
130 Optional second argument is why it can't be converted.
145 Optional second argument is why it can't be converted.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytes_methods.c 244 Return a copy of B with all ASCII characters converted to lowercase.");
272 Return a copy of B with all ASCII characters converted to uppercase.");
371 Return a copy of B with uppercase ASCII characters converted\n\

Completed in 1350 milliseconds

<<31323334353637383940>>