HomeSort by relevance Sort by last modified time
    Searched defs:expansion (Results 1 - 25 of 26) sorted by null

1 2

  /external/desugar/java/com/google/devtools/common/options/
OptionsData.java 27 * OptionsBase} subclasses for a parser are known. In particular, this includes expansion
46 * Returns the expansion of an options field, regardless of whether it was defined using {@link
47 * Option#expansion} or {@link Option#expansionFunction}. If the field is not an expansion option,
58 * IsolatedOptionsData}, this also computes expansion information. If an option has static
59 * expansions or uses an expansion function that takes a Void object, try to precalculate the
60 * expansion here.
70 // Determine either the hard-coded expansion, or the ExpansionFunction class. The
92 ImmutableList<String> expansion = instance.getExpansion(isolatedData); local
93 evaluatedExpansionsBuilder.put(optionDefinition, expansion);
    [all...]
OptionValueDescription.java 147 * and has no expansion.
159 throw new ConstructionException("Can't have a single value for an expansion option.");
227 // Create a warning if an expansion option overrides an explicit option:
335 * The form of a value for an expansion option, one that does not have its own value but expands
336 * in place to other options. This should be used for both flags with a static expansion defined
337 * in {@link Option#expansion()} and flags with an {@link Option#expansionFunction()}.
340 private final List<String> expansion; field in class:OptionValueDescription.ExpansionOptionValueDescription
345 this.expansion = optionsData.getEvaluatedExpansion(optionDefinition);
368 "%s is an expansion option. It does not accept values, and does not change its "
369 + "expansion based on the value provided. Value '%s' will be ignored."
    [all...]
OptionsUsage.java 39 * argument. This will not include information about expansions for options using expansion
86 * Returns the expansion for an option, if any, regardless of if the expansion is from a function
145 // For verbosity "long," add the full description and expansion, along with the tag
151 ImmutableList<String> expansion = getExpansionIfKnown(optionDefinition, optionsData); local
152 if (expansion == null) {
155 } else if (!expansion.isEmpty()) {
157 for (String exp : expansion) {
241 // If this is an expansion option, list the expansion if known, or at least specify that w
244 ImmutableList<String> expansion = getExpansionIfKnown(optionDefinition, optionsData); local
    [all...]
  /external/icu/icu4c/source/common/
ucol_data.h 45 uint32_t expansion; /* uint32_t *expansion; */ member in struct:__anon21312
52 expansion */
53 uint32_t expansionCESize; /* array of maximum expansion size
54 corresponding to the expansion
  /external/libedit/examples/
fileman.c 121 char* expansion; local
124 result = history_expand(s, &expansion);
127 fprintf(stderr, "%s\n", expansion);
129 add_history(expansion);
130 execute_line(expansion);
132 free(expansion);
  /external/valgrind/coregrind/m_demangle/
cp-demangle.h 123 int expansion; member in struct:d_info
cp-demangle.c 246 /* The length of the simple expansion. */
248 /* The results of a full, verbose, expansion. This is used when
251 /* The length of the full expansion. */
337 int expansion; member in struct:d_info_checkpoint
842 printf ("pack expansion\n");
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
cp-demangle.h 124 int expansion; member in struct:d_info
cp-demangle.c 223 /* The length of the simple expansion. */
225 /* The results of a full, verbose, expansion. This is used when
228 /* The length of the full expansion. */
314 int expansion; member in struct:d_info_checkpoint
787 printf ("pack expansion\n");
    [all...]
  /external/doclava/src/com/google/doclava/
SampleCode.java 186 String expansion = ".Sub."; local
190 key = (key + expansion);
192 expansion = "";
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
line-map.h 35 input. LC_ENTER_MACRO is when a macro expansion is about to start. */
96 expansion.
105 /* The cpp macro which expansion gave birth to this macro map. */
133 There is a macro map for the expansion of PLUS in #2. PLUS is
134 expanded into its expansion-list. The expansion-list is the
141 and the expansion-list is made of the tokens:
154 outside this macro expansion. If this macro was expanded from
155 another macro expansion, xI is a virtual location representing
156 the token in that macro expansion; otherwise, it is the spellin
174 source_location expansion; variable
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
mep-asm.c 576 char *expansion;
634 char *e = mac->expansion;
682 char *expansion = 0;
731 expansion = 0;
732 expansion = expand_macro (args, narg, pmacro);
734 if (expansion)
736 result = str_append (result, expansion, strlen (expansion));
737 free (expansion);
806 /* A macro-expansion was pulled off the front. *
575 char *expansion; member in struct:__anon5087
681 char *expansion = 0; local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/command/
CommandFileParser.java 282 CommandLine expansion = new CommandLine(lArgs.subList(3, lArgs.size()), local
284 CommandLine prev = mMacros.put(name, expansion);
287 CLog.w("value '%s' replaced previous value '%s'", expansion, prev);
290 // Expected format: LONG MACRO <name>\n(multiline expansion)\nEND MACRO
292 List<CommandLine> expansion = new LinkedList<CommandLine>(); local
308 expansion.add(line);
315 CLog.d("Parsed %d-line definition for long macro %s", expansion.size(),
318 List<CommandLine> prev = mLongMacros.put(name, expansion);
322 expansion.size(), prev.size());
368 // Now perform macro expansion
441 List<CommandLine> expansion = new LinkedList<CommandLine>(); local
    [all...]
  /external/libchrome/base/strings/
string_util.cc 789 size_t expansion = replace_length - find_length; local
792 final_length += expansion;
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-iq2000.c 138 const char ** expansion;
304 *iq2000_macro_defs[i].expansion,
136 const char ** expansion; member in struct:__anon4306
  /external/icu/icu4c/source/i18n/
usearch.cpp 283 * expansion will be perform as we go along. Adding 1 to ensure that the table
355 * expansion will be perform as we go along. Adding 1 to ensure that the table
434 * @return expansionsize the total expansion size of the pattern
491 // the number of ces minus their expansion, since expansions can come
1184 int32_t expansion = getExpansionPrefix(coleiter); local
1827 int32_t expansion = getExpansionPrefix(coleiter); local
2025 int32_t expansion = getExpansionSuffix(coleiter); local
2465 int32_t expansion = getExpansionSuffix(coleiter); local
    [all...]
  /art/oatdump/
oatdump.cc 2618 double expansion = local
    [all...]
  /prebuilts/tools/common/m2/repository/org/pegdown/pegdown/1.1.0/
pegdown-1.1.0.jar 
  /toolchain/binutils/binutils-2.27/include/
hp-symtab.h 398 unsigned int expansion: 1; member in struct:dntt_type_function
1045 unsigned int expansion: 1; /* 1=template expansion. */ member in struct:dntt_type_class
1054 dnttpointer nextexp ; /* Ptr to next expansion. */
1290 unsigned int expansion: 1; \/* 1 = function expansion *\/ member in struct:dntt_type_doc_function
1839 unsigned int expansion : 1;\/* template expansion *\/ member in struct:quick_class
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/
javacc-5.0.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 7101 milliseconds

1 2