HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 151 - 175 of 3037) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Parser/
asm.cpp 8 int foo6 asm ("bar6"_x); // expected-error {{string literal with user-defined suffix cannot be used here}}
  /external/icu/icu4c/source/i18n/
unesctrn.h 23 * characters they represent. Escape forms have a prefix, a suffix, a
37 * zero or more forms. Each form consists of a prefix, suffix,
42 * characters, then suffix characters are stored. Each form thus
44 * and suffix. The end is marked by a header of length one
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
ArrayDataMethodItem.java 55 String suffix = ""; local
58 suffix = "t";
61 suffix = "s";
67 writer.write(suffix);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmClassNameToResourceMethod.java 57 private static String stripSuffix(String name, String suffix) {
58 int suffixStart = name.lastIndexOf(suffix.charAt(0));
59 if (suffixStart != -1 && name.regionMatches(suffixStart, suffix, 0,
63 assert !name.endsWith(suffix) : name;
  /external/qemu/include/exec/
softmmu_template.h 29 #define SUFFIX q
33 #define SUFFIX l
37 #define SUFFIX w
41 #define SUFFIX b
57 # define USUFFIX SUFFIX
60 # define USUFFIX glue(u, SUFFIX)
61 # define SSUFFIX glue(s, SUFFIX)
95 # define helper_le_st_name glue(glue(helper_ret_st, SUFFIX), MMUSUFFIX)
102 # define helper_le_st_name glue(glue(helper_le_st, SUFFIX), MMUSUFFIX)
103 # define helper_be_st_name glue(glue(helper_be_st, SUFFIX), MMUSUFFIX
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 89 public String suffix; field in class:NameSplitter.Name
103 String suffix) {
108 this.suffix = suffix;
130 return suffix;
158 suffix = values.getAsString(StructuredName.SUFFIX);
176 putValueIfPresent(values, StructuredName.SUFFIX, suffix);
195 suffix = null
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
ElementLookupTrie.cpp.tmpl 11 {% elif conditions %}{# Check suffix #}
15 {% else %}{# Terminal node (no suffix) #}
MakeNames.cpp.tmpl 10 #include "{{namespace}}{{suffix}}Names.h"
30 void init{{suffix}}()
  /external/chromium_org/third_party/skia/gm/
imageblur.cpp 19 ImageBlurGM(SkScalar sigmaX, SkScalar sigmaY, const char* suffix)
22 fName.printf("imageblur%s", suffix);
  /external/chromium_org/third_party/skia/include/utils/ios/
SkStream_NSData.h 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
  /external/chromium_org/tools/gyp/test/library_dirs/
gyptest-library-dirs.py 42 'libraries-search-path-test-lib-suffix',
46 'libraries-search-path-test-lib-suffix', chdir='subdir', stdout=expect)
  /external/clang/test/Lexer/
hexfloat.cpp 12 double i = 0p+3; // expected-error{{invalid suffix 'p' on integer constant}}
15 double k = 0x42_amp+3; // expected-error-re{{{{invalid suffix '_amp' on integer constant|no matching literal operator for call to 'operator "" _amp'}}}}
  /external/clang/test/SemaCXX/
cxx1y-user-defined-literals.cpp 35 char error = 'x's; // expected-error {{invalid suffix}} expected-error {{expected ';'}}
37 int _1z = 1z; // expected-error {{invalid suffix}}
  /external/libcxx/test/re/re.results/re.results.form/
form1.pass.cpp 32 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
36 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
44 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
49 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
71 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
75 assert(std::wstring(out) == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
83 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
88 assert(std::wstring(out) == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
form2.pass.cpp 37 nstr fmt("prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
40 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
48 nstr fmt("prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
52 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
73 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
76 assert(std::wstring(out) == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
84 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
88 assert(std::wstring(out) == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
form3.pass.cpp 35 nstr fmt("prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
37 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
44 nstr fmt("prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
46 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
63 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
65 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
72 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
74 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
form4.pass.cpp 30 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
32 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
39 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
41 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
58 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
60 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
67 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
69 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
  /external/llvm/test/MC/AArch64/
arm64-vector-lists.s 18 // CHECK-ERRORS: error: mismatched register size suffix
19 // CHECK-ERRORS: error: mismatched register size suffix
  /external/llvm/test/MC/COFF/
seh-section.s 1 // This test ensures that, if the section containing a function has a suffix
2 // (e.g. .text$foo), its unwind info section also has a suffix (.xdata$foo).
  /external/skia/gm/
imageblur.cpp 19 ImageBlurGM(SkScalar sigmaX, SkScalar sigmaY, const char* suffix)
22 fName.printf("imageblur%s", suffix);
  /external/skia/include/utils/ios/
SkStream_NSData.h 25 NSData* NSData_dataFromResource(const char name[], const char suffix[]);
35 const char suffix[]);
  /external/smack/src/org/jivesoftware/smackx/pubsub/packet/
PubSubNamespace.java 57 String suffix = ns.substring(ns.lastIndexOf('#')+1); local
58 return valueOf(suffix.toUpperCase());
  /frameworks/base/drm/java/android/drm/
DrmSupportInfo.java 24 * such as the MIME type and file suffix the DRM plug-in can handle.
53 * Adds the specified file suffix to the list of file suffixes this DRM plug-in supports.
55 * @param fileSuffix File suffix that can be handled by this DRM plug-in.
57 * that some DRM content comes with no file suffix.
179 * Determines whether a given file suffix is supported.
181 * @param fileSuffix File suffix.
182 * @return True if file suffix is supported; false if file suffix is not supported.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/
form1.pass.cpp 32 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
36 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
44 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
49 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
71 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
75 assert(std::wstring(out) == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
83 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2";
88 assert(std::wstring(out) == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
form2.pass.cpp 37 nstr fmt("prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
40 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
48 nstr fmt("prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
52 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
73 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
76 assert(std::wstring(out) == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
84 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
88 assert(std::wstring(out) == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");

Completed in 852 milliseconds

1 2 3 4 5 67 8 91011>>