HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 226 - 250 of 2534) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Driver/
Multilib.h 40 /// \brief Get the detected GCC installation path suffix for the multi-arch
47 /// Set the GCC installation path suffix.
50 /// \brief Get the detected os path suffix for the multi-arch
57 /// Set the os path suffix.
60 /// \brief Get the include directory suffix. Always starts with a '/', unless
67 /// Set the include directory suffix
  /external/clang/test/Lexer/
cxx1y_digit_separators.cpp 15 int b = 0'xff; // expected-error {{digit separator cannot appear at end of digit sequence}} expected-error {{suffix 'xff' on integer}}
16 int c = 0x'ff; // expected-error {{suffix 'x'ff' on integer}}
21 int h = 0x1e+1; // expected-error {{invalid suffix '+1' on integer constant}}
40 float j = 0x'0.0p0; // expected-error {{invalid suffix 'x'0.0p0'}}
63 int a = 0\u1234'5; // expected-error {{invalid suffix '\u1234'5' on integer constant}}
73 int a = 0?'5; // expected-error {{invalid suffix '?'5' on integer constant}}
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListGenerators.java 82 String[] suffix = {"f", "g"}; local
83 String[] all = new String[elements.length + suffix.length];
85 System.arraycopy(suffix, 0, all, elements.length, suffix.length);
107 String[] suffix = {"h", "i"}; local
112 System.arraycopy(suffix, 0, all, 2 + elements.length, 2);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/data/
pfd_ar_EG.xml 89 <suffix> &#x0628;&#x0639;&#x062f; &#x0627;&#x0644;&#x0622;&#x0646;</suffix>
102 <suffix> &#x0628;&#x0639;&#x062f; &#x0627;&#x0644;&#x0622;&#x0646;</suffix>
115 <suffix> &#x0628;&#x0639;&#x062f; &#x0627;&#x0644;&#x0622;&#x0646;</suffix>
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 11 // sequences as one big array. Use the same memory when a sequence is a suffix
39 // Define a comparator for SeqT that sorts a suffix immediately before a
40 // sequence with that suffix.
59 // isSuffix - Returns true if A is a suffix of B.
73 // If SeqMap contains a sequence that has Seq as a suffix, I will be
80 // The entry before I may be a suffix of Seq that can now be erased.
  /frameworks/support/v4/java/android/support/v4/util/
TimeUtils.java 38 static private int accumField(int amt, int suffix, boolean always, int zeropad) {
40 return 3+suffix;
43 return 2+suffix;
46 return 1+suffix;
51 static private int printField(char[] formatStr, int amt, char suffix, int pos,
69 formatStr[pos] = suffix;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
dyld.py 67 suffix = dyld_image_suffix(env)
68 if suffix is None:
70 def _inject(iterator=iterator, suffix=suffix):
73 yield path[:-len('.dylib')] + suffix + '.dylib'
75 yield path + suffix
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 86 """2to3 a single directory with a new output dir and suffix."""
90 suffix = "TEST"
92 ["-n", "--add-suffix", suffix, "--write-unchanged-files",
102 self.assertEqual(set(name+suffix for name in self.setup_files),
107 os.path.join(self.py3_dest_dir, name+suffix)), stderr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
dyld.py 67 suffix = dyld_image_suffix(env)
68 if suffix is None:
70 def _inject(iterator=iterator, suffix=suffix):
73 yield path[:-len('.dylib')] + suffix + '.dylib'
75 yield path + suffix
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 86 """2to3 a single directory with a new output dir and suffix."""
90 suffix = "TEST"
92 ["-n", "--add-suffix", suffix, "--write-unchanged-files",
102 self.assertEqual(set(name+suffix for name in self.setup_files),
107 os.path.join(self.py3_dest_dir, name+suffix)), stderr)
  /external/eigen/unsupported/Eigen/
OpenGLSupport 71 #define EIGEN_GL_FUNC_SPECIALIZATION_MAT(FUNC,SCALAR,ROWS,COLS,SUFFIX) \
74 inline static void run(const XprType& p) { FUNC##SUFFIX(p.data()); } \
79 #define EIGEN_GL_FUNC_SPECIALIZATION_VEC(FUNC,SCALAR,SIZE,SUFFIX) \
82 inline static void run(const XprType& p) { FUNC##SUFFIX(p.data()); } \
85 inline static void run(const XprType& p) { FUNC##SUFFIX(p.data()); } \
223 #define EIGEN_GL_FUNC1_SPECIALIZATION_MAT(FUNC,ARG1,CONST,SCALAR,ROWS,COLS,SUFFIX) \
226 inline static void run(ARG1 a, EIGEN_GL_EVAL(EIGEN_GL_MAKE_CONST_##CONST) XprType& p) { FUNC##SUFFIX(a,p.data()); } \
231 #define EIGEN_GL_FUNC1_SPECIALIZATION_VEC(FUNC,ARG1,CONST,SCALAR,SIZE,SUFFIX) \
234 inline static void run(ARG1 a, EIGEN_GL_EVAL(EIGEN_GL_MAKE_CONST_##CONST) XprType& p) { FUNC##SUFFIX(a,p.data()); } \
237 inline static void run(ARG1 a, EIGEN_GL_EVAL(EIGEN_GL_MAKE_CONST_##CONST) XprType& p) { FUNC##SUFFIX(a,p.data()); }
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 120 final String suffix = "b";
121 String shouldMatch = prefix + UTF16.valueOf(temp.charAt(0)) + suffix;
123 String shouldNotMatch = prefix + UTF16.valueOf(temp.charAt(0)) + suffix;
126 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
127 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
132 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
133 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 684 suffix = 'unsigned'
687 generate_format_unpack(format, channel, native_type, suffix)
688 generate_format_pack(format, channel, native_type, suffix)
689 generate_format_fetch(format, channel, native_type, suffix)
693 suffix = 'signed'
694 generate_format_unpack(format, channel, native_type, suffix)
695 generate_format_pack(format, channel, native_type, suffix)
698 suffix = 'signed'
701 generate_format_unpack(format, channel, native_type, suffix)
702 generate_format_pack(format, channel, native_type, suffix)
    [all...]
  /external/v8/src/
string-search.h 22 // search will not be optimal, since we only build tables for a suffix
165 // Store for the BoyerMoore good suffix shift table.
172 // Table used temporarily while building the BoyerMoore good suffix
363 int suffix = pattern_length + 1; local
368 while (suffix <= pattern_length && c != pattern[suffix - 1]) {
369 if (shift_table[suffix] == length) {
370 shift_table[suffix] = suffix - i;
372 suffix = suffix_table[suffix]
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAContext.java 161 /** Two contexts conflict() if they are equals() or one is a stack suffix
172 * Two contexts conflict if they are the same or if one is a suffix
184 return this.suffix(other); // || this.equals(other);
187 /** [$] suffix any context
188 * [21 $] suffix [21 12 $]
189 * [21 12 $] suffix [21 $]
190 * [21 18 $] suffix [21 18 12 9 $]
191 * [21 18 12 9 $] suffix [21 18 $]
192 * [21 12 $] not suffix [21 9 $]
194 * Example "[21 $] suffix [21 12 $]" means: rule r invoked current rul
207 protected boolean suffix(NFAContext other) { method in class:NFAContext
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 53 * The name should not have any language suffix
86 * in a errorResourceClass with a language suffix.
105 /** The class name of the error message string table with no language suffix. */
115 * The class name is without a language suffix. If the value passed
299 * without language suffix.
352 * @return an String suffix which can be appended to a resource name
358 String suffix = "_" + locale.getLanguage(); local
362 suffix += "_" + country;
364 return suffix;
  /external/bison/m4/
locale-zh.m4 33 not at the environment variables. Also, when an encoding suffix such
59 /* On Cygwin, avoid locale names without encoding suffix, because the
60 locale_charset() function relies on the encoding suffix. Note that
107 # Test for the locale name without encoding suffix.
111 # Test for the locale name with explicit encoding suffix.
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 34 /// database in order of matching suffix length.
49 /// of matching suffix length. For each suffix length, there might be one or
52 /// be zero or more entries with the same matching suffix length that are
54 /// 0 equivalent files: Continue with the next suffix length.
  /external/icu/icu4c/source/i18n/
compactdecimalformat.cpp 64 // CDFUnit represents a prefix-suffix pair for a particular variant
68 UnicodeString suffix; member in struct:CDFUnit
69 inline CDFUnit() : prefix(), suffix() {
95 // Prefix and suffix to use at cdfUnits[log10(x)]
266 appendTo += unit->suffix;
755 // populatePrefixSuffix Adds a specific prefix-suffix pair to result for a
758 // formatStr is the format string from which the prefix and suffix are
759 // extracted. It is usually of form 'Pefix 000 suffix'.
763 // and suffix, populatePrefixSuffix returns log10Value + 1.
783 // Everything beyond the last 0 is the suffix
    [all...]
decimalformatpattern.cpp 176 // 2=suffix, 3=prefix in quote, 4=suffix in quote. Subpart 0 is
177 // between the prefix and suffix, and consists of pattern
178 // characters. In the prefix and suffix, percent, perMill, and
187 // prefix and suffix.
189 UnicodeString suffix; local
202 // The affix is either the prefix or the suffix.
213 case 0: // Pattern proper subpart (between prefix & suffix)
305 // pattern, then jump into suffix subpart.
327 // Transition to suffix subpar
    [all...]
esctrn.cpp 95 this->suffix = _suffix;
108 suffix(o.suffix),
151 buf.append(supplementalHandler->suffix);
162 buf.append(suffix);
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 24 const char *suffix; member in struct:__anon10330
36 const char *suffix; local
39 suffix=listFileSuffixes[i].suffix;
41 if((listNameEnd-listname)>length && 0==memcmp(listNameEnd-length, suffix, length)) {
  /external/llvm/lib/IR/
Mangler.cpp 73 /// Microsoft fastcall and stdcall functions require a suffix on their name
140 // If we are supposed to add a microsoft-style suffix for stdcall, fastcall,
141 // or vectorcall, add it. These functions have a suffix of @N where N is the
144 OS << '@'; // vectorcall functions use a double @ suffix.
147 // "Pure" variadic functions do not receive @0 suffix.
  /frameworks/av/include/media/stagefright/foundation/
ADebug.h 64 #define MAKE_COMPARATOR(suffix,op) \
66 AString Compare_##suffix(const A &a, const B &b) { \
83 #define CHECK_OP(x,y,suffix,op) \
85 AString ___res = Compare_##suffix(x, y); \
89 " CHECK_" #suffix "( " #x "," #y ") failed: "; \
  /frameworks/base/docs/html/ndk/guides/
cpu-arm-neon.jd 10 <li><a href="#uns">Using the {@code .neon} Suffix</a></li>
43 <h2 id="uns">Using the .neon Suffix</h2>
45 using the {@code .neon} suffix to indicate that you want to build binaries with NEON support.
53 <p>You can combine the {@code .neon} suffix with the {@code .arm} suffix, which specifies the 32-bit

Completed in 277 milliseconds

1 2 3 4 5 6 7 8 91011>>