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

1 2 3 4

  /external/clang/test/Preprocessor/
warning_tests.c 30 // Macro expansion does not occur in the parameter to __has_warning
38 #error Alias expansion not allowed
45 #error Expansion should have occurred
feature_tests.c 37 // Macro expansion does not occur in the parameter to __has_builtin,
45 #error Alias expansion not allowed
54 #error Expansion should have occurred
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextRun.h 65 TextRun(const LChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
70 , m_expansion(expansion)
85 TextRun(const UChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
90 , m_expansion(expansion)
105 TextRun(const String& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
110 , m_expansion(expansion)
133 TextRun(const StringView& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
138 , m_expansion(expansion)
200 float expansion() const { return m_expansion; }
  /developers/samples/android/wearable/wear/GridViewPager/Wearable/src/main/java/com/example/android/gridviewpager/
SampleGridPagerAdapter.java 58 public Page(int titleRes, int textRes, boolean expansion) {
60 this.expansionEnabled = expansion;
63 public Page(int titleRes, int textRes, boolean expansion, float expansionFactor) {
65 this.expansionEnabled = expansion;
  /development/samples/wearable/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
SampleGridPagerAdapter.java 58 public Page(int titleRes, int textRes, boolean expansion) {
60 this.expansionEnabled = expansion;
63 public Page(int titleRes, int textRes, boolean expansion, float expansionFactor) {
65 this.expansionEnabled = expansion;
  /external/icu/icu4c/source/common/
ucol_data.h 43 uint32_t expansion; /* uint32_t *expansion; */ member in struct:__anon25601
50 expansion */
51 uint32_t expansionCESize; /* array of maximum expansion size
52 corresponding to the expansion
ucol_swp.cpp 239 header.expansion= ds->readUInt32(inHeader->expansion);
261 ds->swapArray32(ds, inBytes+header.options, header.expansion-header.options,
266 if(header.mappingPosition!=0 && header.expansion!=0) {
269 count=header.contractionIndex-header.expansion;
272 count=header.mappingPosition-header.expansion;
274 ds->swapArray32(ds, inBytes+header.expansion, (int32_t)count,
275 outBytes+header.expansion, pErrorCode);
296 /* swap the max expansion table */
  /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/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 274 int expansion() const { return m_bitfields.expansion(); } function in class:WebCore::InlineBox
373 signed expansion() const { return m_expansion; } function in class:WebCore::InlineBox::InlineBoxBitfields
374 void setExpansion(signed expansion) { m_expansion = expansion; }
399 signed expansion() { return m_bitfields.expansion(); } function in class:WebCore::InlineBox
400 void setExpansion(signed expansion) { m_bitfields.setExpansion(expansion); }
InlineTextBox.h 144 m_logicalWidth -= expansion();
198 | (expansion() && nextLeafChild() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);
  /external/gcc-demangle/
cp-demangle.h 124 int expansion; member in struct:d_info
cp-demangle.c 219 /* The length of the simple expansion. */
221 /* The results of a full, verbose, expansion. This is used when
224 /* The length of the full expansion. */
684 printf ("pack expansion\n");
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cp-demangle.h 124 int expansion; member in struct:d_info
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
cstrings.swg 134 * %cstring_mutable(TYPEMAP [, expansion])
137 * It may change size up to a user-defined expansion.
150 %typemap(in,noblock=1,fragment=#SWIG_AsCharPtrAndSize) TYPEMAP (int res, Char *t = 0, size_t n = 0, int alloc = 0, size_t expansion = 0) {
152 expansion += EXP;
158 $1 = %new_array(n+expansion, $*1_ltype);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 16 * from a macro expansion
70 Token *expansion; member in struct:SMacro
102 Line *expansion; member in struct:MMacro
110 int lineno; /* Current line number on expansion */
164 * `expansion' field in MMacro structures, so that the linked list,
167 * push the lines on to the `expansion' field in _istk_ in reverse
173 * markers delimiting the end of the expansion of a given macro.
195 Line *expansion; member in struct:Include
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucol_swp.cpp 227 header.expansion= ds->readUInt32(inHeader->expansion);
249 ds->swapArray32(ds, inBytes+header.options, header.expansion-header.options,
254 if(header.mappingPosition!=0 && header.expansion!=0) {
257 count=header.contractionIndex-header.expansion;
260 count=header.mappingPosition-header.expansion;
262 ds->swapArray32(ds, inBytes+header.expansion, (int32_t)count,
263 outBytes+header.expansion, pErrorCode);
284 /* swap the max expansion table */
  /external/chromium_org/v8/test/mjsunit/es6/
math-expm1.js 24 // Use six terms of Taylor expansion at 0 for exp(x) as test expectation:
math-log1p.js 24 // Use Taylor expansion at 1 for log(x) as test expectation:
  /ndk/sources/host-tools/make-3.81/
function.c 1 /* Builtin function expansion for GNU Make.
1214 char *expansion = expand_argument (begp, endp+1);
1216 result = strlen (expansion);
1217 free (expansion);
1228 char *expansion;
1230 expansion = expand_argument (argv[0], NULL);
1232 o = variable_buffer_output (o, expansion, strlen (expansion));
1234 free (expansion);
1247 expansion. If it's false, CONDITION2 is evaluated, and so on. If none o
1207 char *expansion = expand_argument (begp, endp+1); local
1221 char *expansion; local
1254 char *expansion; local
1300 char *expansion; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp-parse.y 116 /* Perform macro expansion in-place on the given list. */
1309 /* Perform macro expansion on 'list', placing the resulting tokens
1359 yyerror (&node->token->location, parser, "'##' cannot appear at either end of a macro expansion\n");
1376 * Returns NULL if node is a simple token with no expansion, (that is,
1381 * Compute the complete expansion of node (which is a function-lik
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.y 116 /* Perform macro expansion in-place on the given list. */
1309 /* Perform macro expansion on 'list', placing the resulting tokens
1359 yyerror (&node->token->location, parser, "'##' cannot appear at either end of a macro expansion\n");
1376 * Returns NULL if node is a simple token with no expansion, (that is,
1381 * Compute the complete expansion of node (which is a function-lik
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
bmsearch.cpp 104 // find the largest expansion
106 for (const uint8_t *expansion = coll->expansionCESize; *expansion != 0; expansion += 1) {
107 if (*expansion > maxExpansion) {
108 maxExpansion = *expansion;
ucol_tok.h 77 uint32_t expansion; member in struct:UColToken
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
expanding_braille_translator.js 50 * What expansion to apply to the part of the translated string marked by the
172 'End-points out of range looking for braille expansion range');
176 'Position out of range looking for braille expansion range');
191 * @param {!cvox.Spannable} text Text to find expansion ranges in.
231 * Destination for the expansion ranges. Untouched if no ranges
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-parse.c 193 /* Perform macro expansion in-place on the given list. */
4007 token_list_t *expansion; local
4099 token_list_t *expansion; local
    [all...]

Completed in 648 milliseconds

1 2 3 4