HomeSort by relevance Sort by last modified time
    Searched defs:options (Results 651 - 675 of 1602) sorted by null

<<21222324252627282930>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie2.java 71 // * options bit field:
75 // uint16_t options;
113 header.options = bytes.getChar();
122 if ((header.options & UTRIE2_OPTIONS_VALUE_BITS_MASK) > 1) {
127 if ((header.options & UTRIE2_OPTIONS_VALUE_BITS_MASK) == 0) {
476 dos.writeShort(header.options);
640 * options bit field (uint16_t):
644 int options; field in class:Trie2.UTrie2Header
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ArabicShaping.java 56 private final int options; field in class:ArabicShaping
75 * does not validate the text against the options, for example,
83 * @throws ArabicShapingException if the text cannot be converted according to the options.
105 /* Validate input options */
106 if ( ((options&TASHKEEL_MASK) > 0) &&
107 !(((options & TASHKEEL_MASK)==TASHKEEL_BEGIN) ||
108 ((options & TASHKEEL_MASK)==TASHKEEL_END ) ||
109 ((options & TASHKEEL_MASK)==TASHKEEL_RESIZE )||
110 ((options & TASHKEEL_MASK)==TASHKEEL_REPLACE_BY_TATWEEL)) ){
116 if(((options&LAMALEF_MASK) > 0)&
    [all...]
Normalizer.java 133 private int options; field in class:Normalizer
197 * Options bit set value to select Unicode 3.2 normalization
234 protected abstract Normalizer2 getNormalizer2(int options);
238 protected Normalizer2 getNormalizer2(int options) { return Norm2AllModes.NOOP_NORMALIZER2; }
241 protected Normalizer2 getNormalizer2(int options) {
242 return (options&UNICODE_3_2) != 0 ?
247 protected Normalizer2 getNormalizer2(int options) {
248 return (options&UNICODE_3_2) != 0 ?
253 protected Normalizer2 getNormalizer2(int options) {
254 return (options&UNICODE_3_2) != 0
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java 629 EnumSet<ParseOption> options = (EnumSet<ParseOption>)test[4]; local
637 TimeZone tz = tzfmt.parse(style, text, pos, options, timeType);
    [all...]
  /external/iputils/
ping_common.c 6 int options; variable
241 if (!(options & F_QUIET)) {
257 options |= F_AUDIBLE;
260 options |= F_ADAPTIVE;
270 options |= F_SO_DEBUG;
273 options |= F_PTIMEOFDAY;
291 options |= F_INTERVAL;
302 options |= F_MARK;
326 options |= F_OUTSTANDING;
336 options |= F_FLOOD
    [all...]
  /external/jdiff/src/jdiff/
RootDocToXML.java 212 * Write the options which were used to generate this XML file
217 outputFile.print(" Command line arguments = " + Options.cmdOptions);
864 String[][] options = root.options(); local
    [all...]
  /external/libxml2/
debugXML.c 51 int options; /* options */ member in struct:_xmlDebugCtxt
69 ctxt->options = 0;
916 if (ctxt->options & DUMP_TEXT_TYPE) {
    [all...]
testlimits.c 1252 * @options: parsing options
1260 saxTest(const char *filename, size_t limit, int options, int fail) {
1277 doc = xmlCtxtReadFile(ctxt, filename, NULL, options);
1308 * @options: parsing options
1379 int options; \/* extra parser options *\/ member in struct:limitDesc
    [all...]
xmlsave.c 87 int options; member in struct:_xmlSaveCtxt
352 ctxt->options |= XML_SAVE_NO_EMPTY;
380 xmlNewSaveCtxt(const char *encoding, int options)
404 * Use the options
408 if ((ret->options & XML_SAVE_NO_EMPTY) && ! (options & XML_SAVE_NO_EMPTY)) {
409 options |= XML_SAVE_NO_EMPTY;
412 ret->options = options;
413 if (options & XML_SAVE_FORMAT
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-diff.c 696 "perf diff [<options>] [old_file] [new_file]",
700 static const struct option options[] = { variable in typeref:struct:option
1027 argc = parse_options(argc, argv, options, diff_usage, 0);
1038 usage_with_options(diff_usage, options);
builtin-script.c 8 #include "util/parse-options.h"
1269 const struct option options[] = { local
1313 "perf script [<options>]",
1314 "perf script [<options>] record <script> [<record-options>] <command>",
1315 "perf script [<options>] report <script> [script-args]",
1316 "perf script [<options>] <script> [<record-options>] <command>",
1317 "perf script [<options>] <top-script> [script-args]",
1323 argc = parse_options(argc, argv, options, script_usage
    [all...]
builtin-stat.c 47 #include "util/parse-options.h"
1391 const struct option options[] = { local
    [all...]
builtin-timechart.c 33 #include "util/parse-options.h"
1087 const struct option options[] = { local
1100 "perf timechart [<options>] {record}",
1104 argc = parse_options(argc, argv, options, timechart_usage,
1112 usage_with_options(timechart_usage, options);
  /external/lldb/source/API/
SBValue.cpp 706 SBExpressionOptions options; local
707 options.ref().SetKeepInMemory(true);
708 return CreateValueFromExpression (name, expression, options);
712 SBValue::CreateValueFromExpression (const char *name, const char *expression, SBExpressionOptions &options)
725 options.ref().SetKeepInMemory(true);
729 options.ref());
1030 // using default values for all the fancy options, just do it if you can
    [all...]
  /external/lldb/source/DataFormatters/
CXXFormatterFunctions.cpp 51 EvaluateExpressionOptions options;
52 options.SetCoerceToId(false)
59 options);
85 EvaluateExpressionOptions options;
86 options.SetCoerceToId(false)
94 options);
123 EvaluateExpressionOptions options;
124 options.SetCoerceToId(false)
132 options);
160 EvaluateExpressionOptions options;
535 ReadUTFBufferAndDumpToStreamOptions<UTF8> options; local
547 ReadUTFBufferAndDumpToStreamOptions<UTF16> options; local
559 ReadUTFBufferAndDumpToStreamOptions<UTF32> options; local
1044 ReadUTFBufferAndDumpToStreamOptions<UTF16> options; local
1082 ReadUTFBufferAndDumpToStreamOptions<UTF16> options; local
1096 ReadUTFBufferAndDumpToStreamOptions<UTF16> options; local
    [all...]
  /external/lldb/source/Host/common/
Host.cpp 157 const int options = __WALL; local
163 log->Printf("%s ::wait_pid (pid = %" PRIu64 ", &status, options = %i)...", function, pid, options);
168 const lldb::pid_t wait_pid = ::waitpid (-1*pid, &status, options);
219 log->Printf ("%s ::waitpid (pid = %" PRIu64 ", &status, options = %i) => pid = %" PRIu64 ", status = 0x%8.8x (%s), signal = %i, exit_state = %i",
222 options,
819 Host::DynamicLibraryOpen (const FileSpec &file_spec, uint32_t options, Error &error)
826 if (options & eDynamicLibraryOpenOptionLazy)
832 if (options & eDynamicLibraryOpenOptionLocal)
838 if (options & eDynamicLibraryOpenOptionLimitGetSymbol
    [all...]
  /external/ltrace/sysdeps/linux-gnu/
trace.c 51 #include "options.h"
129 long options = PTRACE_O_TRACESYSGOOD | PTRACE_O_TRACEFORK | local
132 if (ptrace(PTRACE_SETOPTIONS, pid, 0, (void *)options) < 0 &&
133 ptrace(PTRACE_OLDSETOPTIONS, pid, 0, (void *)options) < 0) {
988 * several -p options that are tasks of one process. */
    [all...]
  /external/lz4/lib/
lz4frame.c 41 Compiler Options
263 LZ4F_compressOptions_t options = { 0 }; local
292 options.stableSrc = 1;
302 errorCode = LZ4F_compressUpdate(&cctxI, dstPtr, dstMaxSize, srcBuffer, srcSize, &options);
306 errorCode = LZ4F_compressEnd(&cctxI, dstPtr, dstEnd-dstPtr, &options); /* flush last block, and generate suffix */
    [all...]
  /external/mesa3d/src/gallium/include/state_tracker/
st_api.h 237 * Configuration options from driconf
268 * Configuration options.
270 struct st_config_options options; member in struct:st_context_attribs
  /external/openssh/
sshd.c 140 /* Server configuration options. */
141 ServerOptions options; variable
234 /* options.max_startup sized array of fd ints */
283 for (i = 0; i < options.max_startups; i++)
388 sensitive_data.server_key ? "new " : "", options.server_key_bits);
392 options.server_key_bits);
420 if ((options.protocol & SSH_PROTO_1) &&
421 (options.protocol & SSH_PROTO_2)) {
424 } else if (options.protocol & SSH_PROTO_2) {
435 *options.version_addendum == '\0' ? "" : " "
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_image.cpp 1040 CPDF_RenderOptions options; local
    [all...]
fpdf_render_pattern.cpp 906 CPDF_RenderOptions options; local
    [all...]
  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 726 CPDF_ParseOptions options; local
727 options.m_bTextOnly = TRUE;
728 options.m_bSeparateForm = FALSE;
729 page.ParseContent(&options);
773 CPDF_ParseOptions options; local
774 options.m_bTextOnly = TRUE;
775 options.m_bSeparateForm = FALSE;
776 page.ParseContent(&options);
  /external/ppp/pppd/
options.c 2 * options.c - handles option processing for PPP.
43 #define RCSID "$Id: options.c,v 1.102 2008/06/15 06:53:06 paulus Exp $"
144 int option_priority = OPRIO_CFGFILE; /* priority of the current options */
184 * Structure to store extra lists of options.
187 option_t *options; member in struct:option_list
233 "Take options from a file", OPT_NOPRINT },
235 "Take options from a privileged file", OPT_NOPRINT },
248 "Show brief listing of options" },
250 "Show brief listing of options", OPT_ALIAS },
287 "Print out option values after parsing all options", 1 }
    [all...]
  /external/v8/src/arm64/
disasm-arm64.cc 1698 static const char* options[4][4] = { local
    [all...]

Completed in 453 milliseconds

<<21222324252627282930>>