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

1 2 3 4 5 6

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
SeparatedItemStringBuilder.java 4 * Builds a string containing a list of items with a prefix, a postfix, and a separator.
5 * <br/>Example: (1,2,3) which has prefix "(", separator ",", postfix ")" and the items 1 through 3.
10 private final String postfix; field in class:SeparatedItemStringBuilder
14 public SeparatedItemStringBuilder(String prefix, String separator, String postfix) {
17 this.postfix = postfix;
43 return builder.toString() + postfix;
  /external/icu/icu4c/source/tools/toolutil/
writesrc.h 44 * The prefix and postfix are optional (can be NULL) and are written first/last.
46 * The {} and declaration etc. need to be included in prefix/postfix or
53 const char *postfix);
64 const char *postfix);
68 * The {} and declaration etc. need to be included in prefix/postfix or
76 const char *postfix);
83 * The prefix and postfix are optional (can be NULL) and are written first/last.
85 * The {} and declaration etc. need to be included in prefix/postfix or
92 const char *postfix);
writesrc.cpp 110 const char *postfix) {
162 if(postfix!=NULL) {
163 fputs(postfix, f);
171 const char *postfix) {
174 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, postfix);
177 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, postfix);
178 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, postfix);
187 const char *postfix) {
226 if(postfix!=NULL) {
227 fputs(postfix, f)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
format.h 22 // Returns a string containing <prefix><key><infix><value><postfix> for every
26 const std::string& infix, const std::string& postfix) {
29 s << prefix << pair.first << infix << pair.second << postfix;
  /external/brotli/c/enc/
prefix.h 38 size_t postfix = dist & postfix_mask; local
44 ((2 * (nbits - 1) + prefix) << postfix_bits) + postfix));
  /external/tensorflow/tensorflow/contrib/slim/python/slim/
summaries.py 42 def _get_summary_name(tensor, name=None, prefix=None, postfix=None):
49 postfix: An optional postfix for the summary name.
58 if postfix:
59 name = name + '/' + postfix
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 53 * &lt;row postfix="phones">
56 * &lt;row postfix="phones">
78 private final static String POSTFIX = "postfix";
112 String postfix = atts.getValue(POSTFIX); local
113 if (postfix != null) {
115 postfix);
  /external/boringssl/src/crypto/x509/
by_dir.c 276 const char *postfix = ""; local
286 postfix = "";
291 postfix = "r";
356 "%s%08lx.%s%d", ent->dir, h, postfix, k);
360 postfix, k);
  /external/ImageMagick/MagickWand/
mogrify-private.h 45 #define FireImageStack(postfix,advance,fire) \
55 status&=MogrifyImages(image_stack[k].image_info,postfix,(int) \
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TestUtilities.java 35 String postfix = "nop"; local
37 ts1.add(prefix + String.valueOf(i) + postfix);
38 ts2.add(prefix + String.valueOf(i) + postfix);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestUtilities.java 32 String postfix = "nop"; local
34 ts1.add(prefix + String.valueOf(i) + postfix);
35 ts2.add(prefix + String.valueOf(i) + postfix);
  /packages/apps/Dialer/java/com/android/dialer/persistentlog/
PersistentLogFileHandler.java 245 byte[] postfix = new byte[ENTRY_POSTFIX.length];
246 inputStream.read(postfix);
247 if (!Arrays.equals(postfix, ENTRY_POSTFIX)) {
248 throw new LogCorruptionException("entry postfix mismatch");
  /external/v8/benchmarks/
earley-boyer.js 192 (peephole (postfix ", false")))
200 (peephole (postfix ", true"))
272 (peephole (postfix "=== 0")))
280 (peephole (postfix "> 0")))
288 (peephole (postfix "< 0")))
296 (peephole (postfix "%2===1")))
304 (peephole (postfix "%2===0")))
575 (peephole (postfix " instanceof sc_Pair")))
601 (peephole (postfix ".car")))
608 (peephole (postfix ".cdr"))
    [all...]
  /external/clang/test/SemaCXX/
overloaded-operator.cpp 472 C<int> postfix; local
474 postfix--; // ok
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pNative.java 318 * Set the postfix to be used for P2P SSID's.
320 * @param postfix String to be appended to SSID.
324 public boolean setP2pSsidPostfix(String postfix) {
325 return mSupplicantP2pIfaceHal.setSsidPostfix(postfix);
  /hardware/interfaces/wifi/supplicant/1.0/
ISupplicantP2pIface.hal 101 * Set the postfix to be used for P2P SSID's.
103 * @param postfix String to be appended to SSID.
111 setSsidPostfix(vec<uint8_t> postfix) generates (SupplicantStatus status);
  /external/deqp/external/vulkancts/scripts/
gen_framework.py 413 def endsWith (str, postfix):
414 return str[-len(postfix):] == postfix
418 for postfix in knownExtPostfixes:
419 if endsWith(name, postfix):
420 return (name[:-len(postfix)], postfix)
424 bitfieldName, postfix = splitNameExtPostfix(bitfieldName)
426 return bitfieldName[:-1] + "Bits" + postfix
429 bitEnumName, postfix = splitNameExtPostfix(bitEnumName
    [all...]
  /external/autotest/client/bin/
utils.py     [all...]
  /external/python/cpython2/Lib/bsddb/
dbtables.py 88 """Acts as a condition function for matching a string postfix"""
89 def __init__(self, postfix):
90 self.postfix = postfix
92 return s[-len(self.postfix):] == self.postfix
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbtables.py 88 """Acts as a condition function for matching a string postfix"""
89 def __init__(self, postfix):
90 self.postfix = postfix
92 return s[-len(self.postfix):] == self.postfix
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbtables.py 88 """Acts as a condition function for matching a string postfix"""
89 def __init__(self, postfix):
90 self.postfix = postfix
92 return s[-len(self.postfix):] == self.postfix
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 88 """Acts as a condition function for matching a string postfix"""
89 def __init__(self, postfix):
90 self.postfix = postfix
92 return s[-len(self.postfix):] == self.postfix
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 88 """Acts as a condition function for matching a string postfix"""
89 def __init__(self, postfix):
90 self.postfix = postfix
92 return s[-len(self.postfix):] == self.postfix
  /external/tensorflow/tensorflow/tools/benchmark/
benchmark_model.cc 234 const string& benchmark_name, const string& postfix,
239 if (!postfix.empty()) {
240 stream << "_" << postfix; local
  /external/valgrind/coregrind/m_gdbserver/
target.c 105 static const char *postfix[3] = { "", "s1", "s2" }; local
112 + strlen (postfix[i]) + 1);
114 strcat (regname, postfix[i]);

Completed in 564 milliseconds

1 2 3 4 5 6