HomeSort by relevance Sort by last modified time
    Searched refs:prefixes (Results 76 - 100 of 495) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/
install-sh 386 prefixes=
394 prefixes=
406 prefixes="$prefixes '$qprefix'"
412 if test -n "$prefixes"; then
415 eval "\$doit_exec \$mkdirprog $prefixes") ||
  /external/vulkan-validation-layers/tests/gtest-1.7.0/build-aux/
install-sh 409 prefixes=
417 prefixes=
429 prefixes="$prefixes '$qprefix'"
435 if test -n "$prefixes"; then
438 eval "\$doit_exec \$mkdirprog $prefixes") ||
  /toolchain/binutils/binutils-2.25/
install-sh 386 prefixes=
394 prefixes=
406 prefixes="$prefixes '$qprefix'"
412 if test -n "$prefixes"; then
415 eval "\$doit_exec \$mkdirprog $prefixes") ||
  /external/deqp/scripts/opengl/
src_util.py 123 prefixes = { 'gles2': "ES", 'gl': "GL" }
124 return prefixes[api] + version.replace(".", "")
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 17 Our Markov chain algorithm would arrange this text into this set of prefixes
73 // Chain contains a map ("chain") of prefixes to a list of suffixes.
81 // NewChain returns a new Chain with prefixes of prefixLen words.
87 // parses it into prefixes and suffixes that are stored in Chain.
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 17 Our Markov chain algorithm would arrange this text into this set of prefixes
73 // Chain contains a map ("chain") of prefixes to a list of suffixes.
81 // NewChain returns a new Chain with prefixes of prefixLen words.
87 // parses it into prefixes and suffixes that are stored in Chain.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-regprefix-1.d 3 #name: Register prefixes 1 defaulted to no.
  /external/llvm/test/MC/Mips/
mips-expansions-bad.s 4 # RUN: FileCheck %s --check-prefixes=64-BIT,N32-ONLY
6 # RUN: FileCheck %s --check-prefixes=64-BIT,N64-ONLY
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Initialize.h 106 const char* prefixes[EbtNumTypes]; member in class:glslang::TBuiltIns
  /external/minijail/
util.c 168 const char prefixes[] = "KMGTPE"; local
177 for (i = 0; i < sizeof(prefixes); ++i) {
178 if (sizespec[len - 1] == prefixes[i]) {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 235 * prefixes after popping a context, unless you push another
259 * Declare a Namespace prefix. All prefixes must be declared
264 * interpret prefixes against (potentially redefined) prefixes.
283 * This asymmetry exists to make it easier to look up prefixes
314 * the prefixes currently declared. The return value will be the
381 * Return an enumeration of all prefixes whose declarations are
390 * @return An enumeration of prefixes (never empty).
401 * Return one of the prefixes mapped to a Namespace URI.
405 * want all of the prefixes, use the {@link #getPrefixes
445 ArrayList<String> prefixes = new ArrayList<String>(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
TetherInterfaceStateMachine.java 289 // necessary prefixes included (per its prefix distribution policy).
313 params.prefixes.add(prefix);
351 addedPrefixes.removeAll(mLastRaParams.prefixes);
354 if (mLastRaParams == null || mLastRaParams.prefixes.isEmpty()) {
438 configureLocalIPv6Routes(deprecatedParams.prefixes,
439 (newParams != null) ? newParams.prefixes : null);
724 // Accumulate routes representing "prefixes to be assigned to the local
727 String ifname, HashSet<IpPrefix> prefixes) {
729 for (IpPrefix ipp : prefixes) {
  /toolchain/binutils/binutils-2.25/opcodes/
i386-dis.c 146 /* Flags for the prefixes for the current instruction. See below. */
147 static int prefixes; variable
170 /* Flags for prefixes which we somehow handled when printing the
174 /* Flags stored in PREFIXES. */
474 /* operand size depends on prefixes */
476 /* operand size depends on prefixes with operand swapped */
536 /* operand size depends on REX prefixes. */
547 /* non-quad operand size depends on prefixes */
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 195 inst.Prefix = Prefixes{p}
232 // The affected logic is in the conditional branch for "mandatory" prefixes,
252 nprefix = 0 // number of prefixes
301 // Prefixes are certainly the most complex and underspecified part of
303 // up to four prefixes, one from each group, nearly everyone seems to
304 // agree that in practice as many prefixes as possible, including multiple
306 // an instruction, provided the total instruction length including prefixes
308 // Everyone also agrees that if one of these prefixes is the LOCK prefix
314 // What happens if prefixes are given that conflict with other prefixes
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 195 inst.Prefix = Prefixes{p}
232 // The affected logic is in the conditional branch for "mandatory" prefixes,
252 nprefix = 0 // number of prefixes
301 // Prefixes are certainly the most complex and underspecified part of
303 // up to four prefixes, one from each group, nearly everyone seems to
304 // agree that in practice as many prefixes as possible, including multiple
306 // an instruction, provided the total instruction length including prefixes
308 // Everyone also agrees that if one of these prefixes is the LOCK prefix
314 // What happens if prefixes are given that conflict with other prefixes
    [all...]
  /external/selinux/mcstrans/src/
mcstrans.c 81 affix_t *prefixes; member in struct:word_group
302 while(group->prefixes) {
303 affix_t *next = group->prefixes->next;
304 free(group->prefixes->text);
305 free(group->prefixes);
306 group->prefixes=next;
826 if (append (&group->prefixes, tok) < 0)
1020 if (g->prefixes) {
1022 for (a = g->prefixes; a; a = a->next) {
1032 if (g->prefixes)
    [all...]
  /external/skia/src/core/
SkString.cpp 109 int SkStrStartsWithOneOf(const char string[], const char prefixes[]) {
112 const char* limit = strchr(prefixes, '\0');
113 if (!strncmp(string, prefixes, limit - prefixes)) {
116 prefixes = limit + 1;
118 } while (prefixes[0]);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 130 * a client application does not have to keep track of prefixes and
150 * own prefixes rather than using the (ugly) default names. The
151 * XML writer allows two methods for selecting prefixes:</p>
243 * <p>This approach is also useful for declaring Namespace prefixes
1037 Enumeration prefixes = forcedDeclTable.keys(); local
1252 Enumeration prefixes = nsSupport.getDeclaredPrefixes(); local
    [all...]
  /external/libxml2/python/
drv_libxml2.py 165 # prefixes to pop (for endPrefixMapping)
166 prefixes = []
222 prefixes.append(newPrefixes)
240 for prefix in prefixes.pop():
  /build/soong/cc/config/
x86_linux_bionic_host.go 33 "-no-canonical-prefixes",
46 "-no-canonical-prefixes",
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
vt320.java 463 String res, prefixes[] = { "", "S", "C", "A" }; local
491 res = codes.getProperty(prefixes[i] + "PGUP");
495 res = codes.getProperty(prefixes[i] + "PGDOWN");
499 res = codes.getProperty(prefixes[i] + "END");
503 res = codes.getProperty(prefixes[i] + "HOME");
507 res = codes.getProperty(prefixes[i] + "INSERT");
511 res = codes.getProperty(prefixes[i] + "REMOVE");
515 res = codes.getProperty(prefixes[i] + "UP");
519 res = codes.getProperty(prefixes[i] + "DOWN");
523 res = codes.getProperty(prefixes[i] + "LEFT")
    [all...]
  /external/tcpdump/
print-ospf6.c 467 register u_int prefixes; local
651 prefixes = EXTRACT_32BITS(&llsap->llsa_nprefix);
652 ND_PRINT((ndo, "\n\t Priority %d, Link-local address %s, Prefixes %d:",
655 prefixes));
658 while (prefixes > 0) {
662 prefixes--;
682 prefixes = EXTRACT_16BITS(&lsap->lsa_un.un_intra_ap.intra_ap_nprefix);
683 ND_PRINT((ndo, "\n\t Prefixes %d:", prefixes));
686 while (prefixes > 0)
    [all...]
  /external/v8/tools/
gen-postmortem-metadata.py 528 prefixes = [ 'ACCESSORS', 'ACCESSORS_GCSAFE',
548 for prefix in prefixes:
  /prebuilts/go/darwin-x86/src/encoding/gob/
error.go 22 // It always prefixes the message with "gob: ".
  /prebuilts/go/darwin-x86/src/os/exec/
lp_plan9.go 34 // skip the path lookup for these prefixes

Completed in 2641 milliseconds

1 2 34 5 6 7 8 91011>>