/external/smack/src/org/xbill/DNS/windows/ |
DNSServer.properties | 2 primary_dns_suffix=Primary Dns Suffix 3 dns_suffix=DNS Suffix
|
DNSServer_de.properties | 2 primary_dns_suffix=Prim\u00E4res DNS-Suffix
|
/external/mockito/src/org/mockito/internal/matchers/ |
EndsWith.java | 17 private final String suffix; field in class:EndsWith 19 public EndsWith(String suffix) { 20 this.suffix = suffix; 24 return actual != null && ((String) actual).endsWith(suffix); 28 description.appendText("endsWith(\"" + suffix + "\")");
|
/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...] |
/ndk/tests/build/stlport-src-suffix/ |
README | 1 This test is meant to test STLport at the presence of .arm and/or .neon suffix
|
/external/smack/src/org/xbill/DNS/ |
A6Record.java | 19 private InetAddress suffix; field in class:A6Record 32 * @param suffix The address suffix 37 InetAddress suffix, Name prefix) 41 if (suffix != null && Address.familyOf(suffix) != Address.IPv6) 43 this.suffix = suffix; 56 suffix = InetAddress.getByAddress(bytes); 70 suffix = Address.getByAddress(s, Address.IPv6) [all...] |
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
generic_object_view.js | 43 label, object, indent, depth, maxDepth, suffix) { 46 label, indent, '<recursion limit reached>', suffix); 51 this.appendSimpleText_(label, indent, 'undefined', suffix); 56 this.appendSimpleText_(label, indent, 'null', suffix); 63 this.appendSimpleText_(label, indent, '"' + object + '"', suffix); 65 this.appendSimpleText_(label, indent, object, suffix); 73 this.appendElementWithLabel_(label, indent, link, suffix); 80 this.appendElementWithLabel_(label, indent, link, suffix); 86 label, object, indent, depth, maxDepth, suffix); 91 label, object, indent, depth, maxDepth, suffix); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
gen-fma-test.py | 3 def emit(opcode,suffix,width,order,optype): 6 d['suffix']=suffix 14 elif suffix == 'pd': 16 elif suffix == 'sd': 18 elif suffix == 'ss': 29 print "v%(opcode)s%(order)s%(suffix)s %(op1)s, %(op2)s, %(op3)s" % (d) 32 print "v%(opcode)s%(order)s%(suffix)s %(op1)s, %(op2)s, %(op3)s" % (d) 36 for (suffix,width) in combos: 39 emit(opcode,suffix,width,order,optype [all...] |
/external/chromium_org/media/video/capture/ |
video_capture_device.cc | 14 const std::string suffix = " (" + model_id + ")"; local 15 if (EndsWith(device_name_, suffix, true)) // |true| means case-sensitive. 17 return device_name_ + suffix;
|
/external/chromium_org/sync/internal_api/public/base/ |
unique_position.h | 37 // practice, however, most ordinals should be not much longer than the suffix. 46 static bool IsValidSuffix(const std::string& suffix); 56 // Creates a position with the given suffix. Ordering among positions created 59 static UniquePosition FromInt64(int64 i, const std::string& suffix); 62 static UniquePosition InitialPosition(const std::string& suffix); 67 const std::string& suffix); 69 const std::string& suffix); 72 const std::string& suffix); 89 // Returns the suffix. 102 // Returns a string X such that (X ++ |suffix|) < |str| [all...] |
/external/chromium_org/third_party/skia/src/utils/ios/ |
SkStream_NSData.mm | 21 NSString* suffix = [NSString stringWithUTF8String:csuffix]; 22 NSString* path = [bundle pathForResource:name ofType:suffix]; 40 const char suffix[]) { 41 NSData* data = NSData_dataFromResource(name, suffix);
|
/external/clang/test/Parser/ |
objcxx11-user-defined-literal.mm | 3 id x = @"foo"_bar; // expected-error{{user-defined suffix cannot be used here}}
|
/external/skia/src/utils/ios/ |
SkStream_NSData.mm | 21 NSString* suffix = [NSString stringWithUTF8String:csuffix]; 22 NSString* path = [bundle pathForResource:name ofType:suffix]; 40 const char suffix[]) { 41 NSData* data = NSData_dataFromResource(name, suffix);
|
/packages/apps/UnifiedEmail/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/ |
dylib.py | 17 (?:_(?P<suffix>[^._]+))? 36 suffix='Suffix', 39 Note that SomeVersion and Suffix are optional and may be None 49 def d(location=None, name=None, shortname=None, version=None, suffix=None): 55 suffix=suffix 60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/ |
dylib.py | 17 (?:_(?P<suffix>[^._]+))? 36 suffix='Suffix', 39 Note that SomeVersion and Suffix are optional and may be None 49 def d(location=None, name=None, shortname=None, version=None, suffix=None): 55 suffix=suffix 60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
|
/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 + "\")");
|
/external/llvm/lib/TableGen/ |
TableGenBackend.cpp | 24 StringRef Suffix) { 26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) && 29 const size_t e = MAX_LINE_LEN - Suffix.size(); 32 OS << Suffix << '\n'; 41 StringRef Suffix(" *|"); 43 size_t PSLen = Suffix.size() + Prefix.size(); 47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix); 50 printLine(OS, Prefix, ' ', Suffix); 52 Suffix); 53 printLine(OS, Prefix, ' ', Suffix); [all...] |
/external/chromium_org/cloud_print/gcp20/prototype/ |
command_line_reader.cc | 64 std::string suffix = ".local"; 65 if (domain_name == suffix) { 66 LOG(ERROR) << "Domain name cannot be only \"" << suffix << "\""; 70 if (domain_name.size() < suffix.size() || 71 domain_name.substr(domain_name.size() - suffix.size()) != suffix) { 72 LOG(ERROR) << "Domain name should end with \"" << suffix << "\"";
|
/external/chromium_org/webkit/browser/database/ |
database_util_unittest.cc | 47 TestVfsFilePath(true, "origin/#suffix", "origin", "", "suffix"); 49 TestVfsFilePath(true, "origin/db_name#suffix", "origin", "db_name", "suffix"); 51 TestVfsFilePath(false, "origindb_name#suffix"); 53 TestVfsFilePath(false, "origin#db_name/suffix"); 55 TestVfsFilePath(false, "/db_name#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 | 25 * list and a suffix (generally consisting of adjunct data referred to 38 * {@code null-ok;} suffix for the output, or {@code null} if the suffix 41 private ArrayList<DalvInsn> suffix; field in class:OutputCollector 49 * suffix 55 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity); 82 * Adds an instruction to the output suffix. 87 suffix.add(insn); 99 if (suffix == null) { 108 * 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/UnifiedEmail/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/chromium_org/tools/gyp/test/mac/ |
gyptest-ldflags.py | 42 # -framework name[,suffix] 43 # -weak_framework name[,suffix] 44 # -reexport_framework name[,suffix] 45 # -lazy_framework name[,suffix] 46 # -upward_framework name[,suffix]
|