HomeSort by relevance Sort by last modified time
    Searched refs:IsHex (Results 1 - 18 of 18) sorted by null

  /external/pdfium/core/fpdfapi/parser/
cpdf_string.h 37 bool IsHex() const { return m_bHex; }
fpdf_parser_utility.cpp 167 buf << PDF_EncodeString(pObj->GetString(), pObj->AsString()->IsHex());
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
ParseInf.h 146 IN BOOLEAN IsHex,
158 unless the IsHex input is true.
163 IsHex Force the string to be treated as a hex number.
ParseInf.c 473 IN BOOLEAN IsHex,
483 unless the IsHex input is true.
488 IsHex Force the string to be treated as a hex number.
526 IsHex = TRUE;
529 if (IsHex) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
ParseInf.h 190 IN BOOLEAN IsHex,
201 unless the IsHex input is true.
206 IsHex Force the string to be treated as a hex number.
ParseInf.c 573 IN BOOLEAN IsHex,
583 unless the IsHex input is true.
588 IsHex Force the string to be treated as a hex number.
610 if (IsHex || (AsciiString[0] == '0' && (AsciiString[1] == 'x' || AsciiString[1] == 'X'))) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps.h 93 bool IsHex(char c);
sanitizer_procmaps_common.cc 58 bool IsHex(char c) {
159 if (IsHex(pos[0])) {
  /external/gptfdisk/
support.h 81 int IsHex(string input); // Returns 1 if input can be hexadecimal number....
parttypes.cc 271 if (IsHex(orig)) {
support.cc 275 int IsHex(string input) {
276 int isHex = 1, foundHex = 0, i;
285 isHex = 0;
292 isHex = 0;
293 return isHex;
294 } // IsHex()
basicmbr.cc     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrSyntax.g     [all...]
VfrUtilityLib.cpp 598 OUT bool *IsHex
601 *IsHex = FALSE;
611 *IsHex = TRUE;
622 bool IsHex;
626 Str = TrimHex (Str, &IsHex);
631 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
633 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
636 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrSyntax.g     [all...]
VfrUtilityLib.cpp 522 OUT bool *IsHex
525 *IsHex = FALSE;
535 *IsHex = TRUE;
546 bool IsHex;
550 Str = TrimHex (Str, &IsHex);
555 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
557 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
560 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
    [all...]
  /external/regex-re2/re2/
parse.cc     [all...]
  /external/pdfium/core/fpdfapi/edit/
fpdf_edit_create.cpp 77 bool bHex = pObj->AsString()->IsHex();
1081 bool bHex = pObj->AsString()->IsHex();
    [all...]

Completed in 2599 milliseconds