/frameworks/base/libs/androidfw/ |
ZipFileRO.cpp | 133 bool ZipFileRO::startIteration(void** cookie, const char* prefix, const char* suffix) 137 ZipEntryName se(suffix ? suffix : ""); 140 suffix ? &se : NULL);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
vpx-astyle.sh | 8 --suffix=none --quiet --max-instatement-indent=80 "$@"
|
/ndk/sources/android/crazy_linker/src/ |
crazy_linker_search_path_list.h | 37 // with every item in the list as a suffix. On success, returns the
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/detail/ |
concept_def.hpp | 17 // Maybe in the next release we can kill off the "Concept" suffix for good.
|
/packages/services/Telephony/src/com/android/phone/settings/ |
VoicemailProviderSettingsUtil.java | 35 // Suffix appended to provider key for storing vm number 37 // Suffix appended to forward settings key for storing an individual setting 39 // Suffix appended to provider key for storing forwarding settings 41 // Suffix appended to forward settings key for storing length of settings array
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/ |
printer.h | 42 const char *suffix);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/ |
printer.h | 42 const char *suffix);
|
/external/boringssl/src/crypto/asn1/ |
bio_asn1.c | 102 asn1_ps_func *prefix, *prefix_free, *suffix, *suffix_free; member in struct:BIO_ASN1_BUF_CTX_t 103 /* Extra buffer for prefix and suffix data */ 397 ctx->suffix = ex_func->ex_func; 403 ex_func->ex_func = ctx->suffix; 422 if (!asn1_bio_setup_ex(b, ctx, ctx->suffix, 488 int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix, asn1_ps_func *suffix_free) 490 return asn1_bio_set_ex(b, BIO_C_SET_SUFFIX, suffix, suffix_free);
|
/external/boringssl/src/crypto/perlasm/ |
x86gas.pl | 25 # expand opcode with size suffix; 29 my($suffix,$dst,$src); 42 if ($dst =~ m/^%/o) { $suffix=&opsize($dst); } 43 elsif ($src =~ m/^%/o) { $suffix=&opsize($src); } 44 else { $suffix="l"; } 45 undef $suffix if ($dst =~ m/^%[xm]/o || $src =~ m/^%[xm]/o); 50 else { &::emit($opcode.$suffix,@arg);}
|
/external/clang/include/clang/Lex/ |
LiteralSupport.h | 66 uint8_t MicrosoftInteger; // Microsoft suffix extension i8, i16, i32, or i64. 87 static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix); 175 assert(!UDSuffixBuf.empty() && "no ud-suffix"); 240 /// Get the index of a token containing a ud-suffix. 242 assert(!UDSuffixBuf.empty() && "no ud-suffix"); 245 /// Get the spelling offset of the first byte of the ud-suffix. 247 assert(!UDSuffixBuf.empty() && "no ud-suffix");
|
/external/elfutils/src/libcpu/ |
i386_parse.y | 113 /* Suffix. */ 115 suffix_w1, suffix_W1, suffix_D } suffix; 141 struct suffix 188 struct known_bitfield *suffix, 323 newp->suffix = suffix_w; 325 newp->suffix = suffix_w0; 327 newp->suffix = suffix_tttn; 329 newp->suffix = suffix_w1; 331 newp->suffix = suffix_W; 333 newp->suffix = suffix_W1 [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
ContractionsAndExpansions.java | 32 private String suffix; field in class:ContractionsAndExpansions 253 ce32 = data.getCE32FromContexts(index); // Default if no suffix match. 260 suffix = e.chars.toString(); 267 suffix = null; 271 if (unreversedPrefix.length() == 0 && suffix == null) { 287 if (suffix != null) { 288 s.append(suffix);
|
/frameworks/base/core/java/android/text/format/ |
Formatter.java | 102 int suffix = com.android.internal.R.string.byteShort; local 105 suffix = com.android.internal.R.string.kilobyteShort; 110 suffix = com.android.internal.R.string.megabyteShort; 115 suffix = com.android.internal.R.string.gigabyteShort; 120 suffix = com.android.internal.R.string.terabyteShort; 125 suffix = com.android.internal.R.string.petabyteShort; 165 final String units = res.getString(suffix);
|
/external/clang/lib/Driver/ |
ToolChain.cpp | 192 StringRef Suffix = A->getValue(); 196 if (Suffix.empty() || Suffix == "ld") 200 LinkerName.append(Suffix); 306 StringRef Suffix = Triple.isOSBinFormatMachO() 309 bool ThumbDefault = Suffix.startswith("v6m") || Suffix.startswith("v7m") || 310 Suffix.startswith("v7em") || 311 (Suffix.startswith("v7") && getTriple().isOSBinFormatMachO()); 330 Triple.setArchName(ArchName + Suffix.str()) [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
AbstractPackageSanityTests.java | 21 import static com.google.common.testing.AbstractPackageSanityTests.Chopper.suffix; 118 suffix("Test") 119 .or(suffix("Tests")) 120 .or(suffix("TestCase")) 121 .or(suffix("TestSuite")); 294 * Finds the classes not ending with a test suffix and not covered by an explicit test 384 static Chopper suffix(final String suffix) { method 387 if (str.endsWith(suffix)) { 388 return Optional.of(str.substring(0, str.length() - suffix.length())) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
BuildDependencyGenerator.java | 122 String suffix = Grammar.grammarTypeToFileNameSuffix[grammar.type]; local 123 String fileName = grammar.name + suffix + headerExtST.render(); 130 String suffix = Grammar.grammarTypeToFileNameSuffix[Grammar.LEXER]; local 131 String lexer = grammar.name + suffix + extST.render(); 136 String header = grammar.name + suffix + headerExtST.render();
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest_stress_test.cc | 65 String IdToKey(int id, const char* suffix) { 67 key << "key_" << id << "_" << suffix; local 79 int id, const char* suffix) { 80 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 84 << "expecting " << suffix << " value for id " << id;
|
/external/gtest/test/ |
gtest_stress_test.cc | 64 std::string IdToKey(int id, const char* suffix) { 66 key << "key_" << id << "_" << suffix; local 78 int id, const char* suffix) { 79 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 83 << "expecting " << suffix << " value for id " << id;
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
UnescapeTransliterator.java | 16 * characters they represent. Escape forms have a prefix, a suffix, a 28 * zero or more forms. Each form consists of a prefix, suffix, 33 * characters, then suffix characters are stored. Each form thus 35 * and suffix. The end is marked by a header of length one 258 // Each form consists of a prefix, suffix,
|
/external/protobuf/gtest/test/ |
gtest_stress_test.cc | 65 String IdToKey(int id, const char* suffix) { 67 key << "key_" << id << "_" << suffix; local 79 int id, const char* suffix) { 80 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 84 << "expecting " << suffix << " value for id " << id;
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_stress_test.cc | 64 std::string IdToKey(int id, const char* suffix) { 66 key << "key_" << id << "_" << suffix; local 78 int id, const char* suffix) { 79 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); 83 << "expecting " << suffix << " value for id " << id;
|
/prebuilts/misc/linux-x86/analyzer/bin/ |
ccc-analyzer | 83 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 84 suffix_m32=${options##* -m32 } # suffix after the last -m32 85 suffix_m64=${options##* -m64 } # suffix after the last -m64 86 len_m32=${#suffix_m32} # length of suffix after the last -m32 87 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
ccc-syntax | 85 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 86 suffix_m32=${options##* -m32 } # suffix after the last -m32 87 suffix_m64=${options##* -m64 } # suffix after the last -m64 88 len_m32=${#suffix_m32} # length of suffix after the last -m32 89 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
cxx-analyzer | 80 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 81 suffix_m32=${options##* -m32 } # suffix after the last -m32 82 suffix_m64=${options##* -m64 } # suffix after the last -m64 83 len_m32=${#suffix_m32} # length of suffix after the last -m32 84 len_m64=${#suffix_m64} # length of suffix after the last -m64
|
cxx-syntax | 82 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below 83 suffix_m32=${options##* -m32 } # suffix after the last -m32 84 suffix_m64=${options##* -m64 } # suffix after the last -m64 85 len_m32=${#suffix_m32} # length of suffix after the last -m32 86 len_m64=${#suffix_m64} # length of suffix after the last -m64
|