/external/qemu/target-i386/ |
ops_sse_header.h | 22 #define SUFFIX _mmx 25 #define SUFFIX _xmm 38 DEF_HELPER_2(glue(psrlw, SUFFIX), void, Reg, Reg) 39 DEF_HELPER_2(glue(psraw, SUFFIX), void, Reg, Reg) 40 DEF_HELPER_2(glue(psllw, SUFFIX), void, Reg, Reg) 41 DEF_HELPER_2(glue(psrld, SUFFIX), void, Reg, Reg) 42 DEF_HELPER_2(glue(psrad, SUFFIX), void, Reg, Reg) 43 DEF_HELPER_2(glue(pslld, SUFFIX), void, Reg, Reg) 44 DEF_HELPER_2(glue(psrlq, SUFFIX), void, Reg, Reg) 45 DEF_HELPER_2(glue(psllq, SUFFIX), void, Reg, Reg [all...] |
/hardware/ti/wlan/wl1271/utils/ |
bmtrace_api.h | 48 int bm_act_register_event(char* module, char* context, char* group, unsigned char level, char* name, char* suffix, int is_param); 65 #define CL_TRACE_END(MODULE, CONTEXT, GROUP, LEVEL, SUFFIX) \ 69 loc = bm_act_register_event(MODULE, CONTEXT, GROUP, LEVEL, (char*)__FUNCTION__, SUFFIX, 0); \ 87 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX) 88 #define CL_TRACE_END_L2(MODULE, CONTEXT, GROUP, SUFFIX) 89 #define CL_TRACE_END_L3(MODULE, CONTEXT, GROUP, SUFFIX) 90 #define CL_TRACE_END_L4(MODULE, CONTEXT, GROUP, SUFFIX) 91 #define CL_TRACE_END_L5(MODULE, CONTEXT, GROUP, SUFFIX) 103 #define CL_TRACE_END_L1(MODULE, CONTEXT, GROUP, SUFFIX) CL_TRACE_END(MODULE, CONTEXT, GROUP, 1, SUFFIX [all...] |
/external/clang/test/Parser/ |
objcxx11-user-defined-literal.mm | 3 id x = @"foo"_bar; // expected-error{{user-defined suffix cannot be used here}}
|
cxx11-user-defined-literals.cpp | 3 // A ud-suffix cannot be used on string literals in a whole bunch of contexts: 6 #line 1 "foo"_bar // expected-error {{user-defined suffix cannot be used here}} 7 # 1 "foo"_bar 1 // expected-error {{user-defined suffix cannot be used here}} 8 #ident "foo"_bar // expected-error {{user-defined suffix cannot be used here}} 9 _Pragma("foo"_bar) // expected-error {{user-defined suffix cannot be used here}} 10 #pragma comment(lib, "foo"_bar) // expected-error {{user-defined suffix cannot be used here}} 11 _Pragma("comment(lib, \"foo\"_bar)") // expected-error {{user-defined suffix cannot be used here}} 12 #pragma message "hi"_there // expected-error {{user-defined suffix cannot be used here}} expected-warning {{hi}} 13 #pragma push_macro("foo"_bar) // expected-error {{user-defined suffix cannot be used here}} 14 #if __has_warning("-Wan-island-to-discover"_bar) // expected-error {{user-defined suffix cannot be used here} [all...] |
/packages/apps/Email/src/org/apache/commons/io/filefilter/ |
SuffixFileFilter.java | 26 * Filters files based on the suffix (what the filename ends with).
57 * Constructs a new Suffix file filter for a single extension.
59 * @param suffix the suffix to allow, must not be null
60 * @throws IllegalArgumentException if the suffix is null
62 public SuffixFileFilter(String suffix) {
63 this(suffix, IOCase.SENSITIVE);
67 * Constructs a new Suffix file filter for a single extension
70 * @param suffix the suffix to allow, must not be null [all...] |
/external/easymock/src/org/easymock/internal/matchers/ |
EndsWith.java | 26 private final String suffix;
field in class:EndsWith 28 public EndsWith(String suffix) {
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
OutputCollector.java | 24 * list and a suffix (generally consisting of adjunct data referred to 37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 47 * suffix 53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 80 * Adds an instruction to the output suffix. 85 suffix.add(insn); 97 if (suffix == null) { 106 * Helper for {@link #getFinisher}, which appends the suffix t [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
OutputCollector.java | 26 * list and a suffix (generally consisting of adjunct data referred to 39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 42 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 50 * suffix 56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 83 * Adds an instruction to the output suffix. 88 suffix.add(insn); 100 if (suffix == null) { 109 * Helper for {@link #getFinisher}, which appends the suffix t [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
OutputCollector.java | 26 * list and a suffix (generally consisting of adjunct data referred to 39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 42 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 50 * suffix 56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 83 * Adds an instruction to the output suffix. 88 suffix.add(insn); 100 if (suffix == null) { 109 * Helper for {@link #getFinisher}, which appends the suffix t [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/util/ |
TempPath.java | 35 * The prefix will be empty and the suffix will be
45 * The prefix and suffix can be set by the user.
48 * @param suffix the suffix to use. <code>null</code> gives
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
59 * The prefix and suffix can be set by the user.
62 * @param suffix the suffix to use. <code>null</code> gives
69 TempFile createTempFile(String prefix, String suffix,
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
p10.cpp | 9 // A program containing a reserved ud-suffix is ill-formed. 10 123wibble; // expected-error {{invalid suffix 'wibble'}} 11 123.0wibble; // expected-error {{invalid suffix 'wibble'}} 12 const char *p = ""wibble; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}} 13 const char *q = R"x("hello")x"wibble; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}}
|
/external/skia/src/utils/ |
SkOSFile.cpp | 12 static uint16_t* concat_to_16(const char src[], const char suffix[]) 15 size_t len2 = 3 + (suffix ? strlen(suffix) : 0); 25 if (suffix) 27 while (*suffix) 28 dst[i++] = *suffix++; 53 SkOSFile::Iter::Iter(const char path[], const char suffix[]) : fHandle(0), fPath16(NULL) 55 this->reset(path, suffix); 65 void SkOSFile::Iter::reset(const char path[], const char suffix[]) 76 fPath16 = concat_to_16(path, suffix); [all...] |
/build/core/ |
filter_symbols.sh | 9 SUFFIX=$1 20 echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
|
/external/clang/test/Lexer/ |
ms-extensions.cpp | 5 return "foo"bar("bar")"baz"; /*expected-warning {{identifier after literal will be treated as a reserved user-defined literal suffix in C++11}} */
|
/external/llvm/test/CodeGen/Thumb2/ |
2010-05-24-rsbs.ll | 2 ; Radar 8017376: Missing 's' suffix for t2RSBS instructions.
|
/external/v8/test/mjsunit/regress/ |
regress-1122.js | 37 test_suffix = ' suffix'; 52 assertEquals('prefix 4000 suffix', 54 assertEquals('prefix 3000 suffix', 56 assertEquals('prefix 5000 suffix', 58 assertEquals('prefix 9000 suffix', 60 assertEquals('prefix 16000 suffix', 62 assertEquals('prefix undefined suffix',
|
/frameworks/av/include/media/stagefright/foundation/ |
ADebug.h | 39 #define MAKE_COMPARATOR(suffix,op) \ 41 AString Compare_##suffix(const A &a, const B &b) { \ 58 #define CHECK_OP(x,y,suffix,op) \ 60 AString ___res = Compare_##suffix(x, y); \ 64 " CHECK_" #suffix "( " #x "," #y ") failed: "; \
|
/prebuilts/tools/gcc-sdk/ |
addr2line | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
ar | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
as | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
c++ | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
c++filt | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
cpp | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
elfedit | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
g++ | 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 17 suffix_m32=${options##* -m32 } # suffix after the last -m32 18 suffix_m64=${options##* -m64 } # suffix after the last -m64 20 len_m32=${#suffix_m32} # length of suffix after the last -m32 21 len_m64=${#suffix_m64} # length of suffix after the last -m64
|