HomeSort by relevance Sort by last modified time
    Searched full:popt (Results 1 - 25 of 29) sorted by null

1 2

  /dalvik/libdex/
DexOptData.cpp 53 const u4* pOpt = (const u4*) pOptStart;
59 * truncated, it might turn out that pOpt >= pOptEnd; and (b)
60 * if the opt data header got corrupted, pOpt might not be
63 if (!isValidPointer(pOpt, pOptStart, pOptEnd)) {
84 while (*pOpt != kDexChunkEnd) {
85 if (!isValidPointer(pOpt + 2, pOptStart, pOptEnd)) {
87 ((const u1*) pOpt) - data);
91 u4 size = *(pOpt + 1);
92 const u1* pOptData = (const u1*) (pOpt + 2);
99 const u4* pNextOpt = pOpt + (roundedSize / sizeof(u4))
    [all...]
  /external/libexif/m4m/
gp-check-popt.m4 30 AC_ARG_ENABLE([popt],
31 [AS_HELP_STRING([--$1-popt],[Do not use popt])],
48 AC_MSG_CHECKING([whether popt is required])
52 AC_MSG_CHECKING([whether popt is requested])
64 # try to find options to compile popt.h
78 AC_CHECK_HEADER([popt.h], [popth_found=yes])
90 * Cannot autodetect popt.h
96 # try to find options to link against popt
123 AC_CHECK_LIB([popt], [poptStuffArgs], [popt_links=yes]
    [all...]
Makefile.am 1 EXTRA_DIST = gp-byteorder.m4 gp-check-library.m4 gp-check-popt.m4 gp-check-shell-environment.m4 gp-config-msg.m4 gp-documentation.m4 gp-gettext-hack.m4 gp-packaging.m4 gp-pkg-config.m4 gp-references.m4 stdint.m4
Makefile.in 210 EXTRA_DIST = gp-byteorder.m4 gp-check-library.m4 gp-check-popt.m4 gp-check-shell-environment.m4 gp-config-msg.m4 gp-documentation.m4 gp-gettext-hack.m4 gp-packaging.m4 gp-pkg-config.m4 gp-references.m4 stdint.m4
  /external/icu/icu4c/source/samples/coll/
coll.cpp 89 OptSpec *pOpt;
90 for (pOpt = opts; pOpt->name != 0; pOpt ++) {
91 if (strcmp(pOpt->name, pArgName) == 0) {
92 switch (pOpt->type) {
94 *(UBool *)(pOpt->pVar) = TRUE;
100 pOpt->name);
103 *(const char **)(pOpt->pVar) = argv[argNum];
109 pOpt->name)
    [all...]
  /external/gptfdisk/
gptcl.h 2 Implementation of GPTData class derivative with popt-based command
26 #include <popt.h>
32 // Following are variables associated with popt parameters....
popt.h 18 * popt has been deprecated for some time, and is replaced by GNOME's glib
20 * stub implements just enough of popt to get things working.
android_popt.cc 14 #include <popt.h>
19 * popt has been deprecated for some time, and is replaced by GNOME's glib
21 * stub implements just enough of popt to get things working.
README 199 * The sgdisk program requires the popt library and its development files
200 (headers). Most Linux distributions install popt by default, but you may
201 need to install a package called popt-dev, popt-devel, or something
203 popt for Mac OS from Darwin Ports (http://popt.darwinports.com) or Fink
207 gdisk doesn't require popt.
README.Windows 33 for Windows could be built if the popt library were installed. I've not
35 http://gnuwin32.sourceforge.net/packages/popt.htm for information on popt
gptcl.cc 2 Implementation of GPTData class derivative with popt-based command
112 // Create popt context...
  /external/icu/icu4c/source/samples/strsrch/
strsrch.cpp 100 OptSpec *pOpt;
101 for (pOpt = opts; pOpt->name != 0; pOpt ++) {
102 if (strcmp(pOpt->name, pArgName) == 0) {
103 switch (pOpt->type) {
105 *(UBool *)(pOpt->pVar) = TRUE;
111 pOpt->name);
114 *(const char **)(pOpt->pVar) = argv[argNum];
120 pOpt->name)
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_formcontrol.cpp 88 CPDF_Object* pOpt = FPDF_GetFieldAttr(m_pField->m_pDict, "Opt");
89 if (pOpt != NULL && pOpt->GetType() == PDFOBJ_ARRAY) {
104 CPDF_Object* pOpt = FPDF_GetFieldAttr(m_pField->m_pDict, "Opt");
105 if (pOpt != NULL && pOpt->GetType() == PDFOBJ_ARRAY) {
107 csOn = ((CPDF_Array*)pOpt)->GetString(iIndex);
doc_ap.cpp 551 if (CPDF_Object* pOpt = pOpts->GetElementValue(i)) {
553 if (pOpt->GetType() == PDFOBJ_STRING) {
554 swItem = pOpt->GetUnicodeText();
555 } else if (pOpt->GetType() == PDFOBJ_ARRAY) {
556 swItem = ((CPDF_Array*)pOpt)->GetElementValue(1)->GetUnicodeText();
    [all...]
doc_formfield.cpp 839 CPDF_Object* pOpt = FPDF_GetFieldAttr(m_pDict, "Opt");
840 if (pOpt == NULL || pOpt->GetType() != PDFOBJ_ARRAY) {
    [all...]
doc_form.cpp     [all...]
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 234 OptSpec *pOpt;
238 for (pOpt = opts; pOpt->name != 0; pOpt++) {
239 if (strcmp(pOpt->name, pArgName) == 0) {
240 switch (pOpt->type) {
242 *(UBool *)(pOpt->pVar) = TRUE;
247 fprintf(stderr, "value expected for \"%s\" option.\n", pOpt->name);
250 *(const char **)(pOpt->pVar) = argv[argNum];
255 fprintf(stderr, "value expected for \"%s\" option.\n", pOpt->name)
    [all...]
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp 224 OptSpec *pOpt;
228 for (pOpt = opts; pOpt->name != 0; pOpt++) {
229 if (strcmp(pOpt->name, pArgName) == 0) {
230 switch (pOpt->type) {
232 *(UBool *)(pOpt->pVar) = TRUE;
237 fprintf(stderr, "value expected for \"%s\" option.\n", pOpt->name);
240 *(const char **)(pOpt->pVar) = argv[argNum];
245 fprintf(stderr, "value expected for \"%s\" option.\n", pOpt->name)
    [all...]
  /external/bison/
ABOUT-NLS 332 popt | |
    [all...]
  /dalvik/dexdump/
DexDump.cpp 467 const u4* pOpt = (const u4*) ((u1*) pOptHeader + pOptHeader->optOffset);
469 if (*pOpt == 0) {
478 while (*pOpt != kDexChunkEnd) {
481 u4 size = *(pOpt+1);
483 switch (*pOpt) {
495 printf("Chunk %08x (%c%c%c%c) - %s (%d bytes)\n", *pOpt,
496 *pOpt >> 24, (char)(*pOpt >> 16), (char)(*pOpt >> 8), (char)*pOpt,
    [all...]
  /external/elfutils/src/
ABOUT-NLS 321 popt | [] [] [] |
490 popt | [] [] [] [] |
    [all...]
  /external/libxml2/test/relaxng/
comps_0.xml     [all...]
  /external/valgrind/docs/internals/
BIG_APP_NOTES.txt 183 popt-devel
  /external/libvncserver/x11vnc/
tkx11vnc     [all...]
tkx11vnc.h     [all...]

Completed in 807 milliseconds

1 2