HomeSort by relevance Sort by last modified time
    Searched refs:PREFIX (Results 201 - 225 of 783) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
getpath.c 7 Py_GetPrefix returns PREFIX
8 Py_GetExec_Prefix returns PREFIX
14 For the EDK II, UEFI, implementation of Python, PREFIX and EXEC_PREFIX
16 PREFIX = /Efi/StdLib
17 EXEC_PREFIX = PREFIX
55 #ifndef PREFIX
56 #define PREFIX "/Efi/StdLib"
60 #define EXEC_PREFIX PREFIX
69 #define PYTHONPATH PREFIX LIBPYTHON sDELIM \
80 static char prefix[MAXPATHLEN+1]; variable
    [all...]
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 21 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
28 #define PREFIX(NAME, VALUE) const char *const NAME[] = VALUE;
30 #undef PREFIX
39 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
41 { PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, PARAM, \
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
OkHeaders.java 40 static final String PREFIX = Platform.get().getPrefix();
45 public static final String SENT_MILLIS = PREFIX + "-Sent-Millis";
50 public static final String RECEIVED_MILLIS = PREFIX + "-Received-Millis";
56 public static final String SELECTED_PROTOCOL = PREFIX + "-Selected-Protocol";
59 public static final String RESPONSE_SOURCE = PREFIX + "-Response-Source";
  /external/brotli/c/include/brotli/
decode.h 51 * #define CASE_(PREFIX, NAME, CODE) \
52 * case BROTLI_DECODER ## PREFIX ## NAME: \
114 #define BROTLI_ERROR_CODE_ENUM_ITEM_(PREFIX, NAME, CODE) \
115 BROTLI_DECODER ## PREFIX ## NAME = CODE
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 155 // filtered by the app prefix)
193 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_ENCODING),
195 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_DIR),
  /external/tensorflow/tensorflow/core/kernels/
mkl_transpose_op.cc 51 #define INSTANTIATE(T, PREFIX) \
54 mkl_##PREFIX##omatcopy('R', trans, in.dim_size(0), in.dim_size(1), 1, \
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
QSFactoryImpl.java 104 if (tileSpec.startsWith(IntentTile.PREFIX)) return IntentTile.create(mHost, tileSpec);
105 if (tileSpec.startsWith(CustomTile.PREFIX)) return CustomTile.create(mHost, tileSpec);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
getpath.c 10 For the EDK II, UEFI, implementation of Python, PREFIX and EXEC_PREFIX
12 PREFIX = /Efi/StdLib
13 EXEC_PREFIX = PREFIX
18 Py_GetPrefix returns PREFIX
19 Py_GetExec_Prefix returns PREFIX
62 #ifndef PREFIX
63 #define PREFIX "/Efi/StdLib"
67 #define EXEC_PREFIX PREFIX
86 static char prefix[MAXPATHLEN+1]; variable
330 (prefix), containing the common .py and .pyc files, and the platform
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlParseTest.java 54 DEFAULT_TAGS.put("!!", Tag.PREFIX);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
RepresentTest.java 41 private String prefix; field in class:RepresentTest.CustomBean
44 public CustomBean(String prefix, int suffix) {
45 this.prefix = prefix;
50 return prefix;
60 return prefix.equals(bean.getPrefix()) && suffix == bean.getSuffix();
80 this.yamlConstructors.put(new Tag(Tag.PREFIX + "Dice"), new ConstructDice());
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
StructuredNameDataItem.java 56 return getContentValues().getAsString(StructuredName.PREFIX);
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
StructuredNameDataItem.java 55 return getContentValues().getAsString(StructuredName.PREFIX);
  /cts/tests/tests/slice/src/android/slice/cts/
SliceManagerTest.java 163 final String PREFIX = "Launcher: ComponentInfo{";
166 if (s.startsWith(PREFIX) && s.endsWith(POSTFIX)) {
167 return s.substring(PREFIX.length(), s.length() - POSTFIX.length());
  /external/iw/
Makefile 3 PREFIX ?= /usr
4 SBINDIR ?= $(PREFIX)/sbin
5 MANDIR ?= $(PREFIX)/share/man
  /external/ltp/testcases/open_posix_testsuite/scripts/
generate-makefiles.sh 111 prefix?= $PREFIX
112 exec_prefix?= \$(prefix)
286 PREFIX=`print-prefix.sh`
287 EXEC_PREFIX="${PREFIX}/bin"
  /external/skia/infra/bots/
recipes.py 136 PREFIX = 'recipe_engine='
143 if override.startswith(PREFIX):
144 return override[len(PREFIX):], args.package
  /external/skqp/infra/bots/
recipes.py 136 PREFIX = 'recipe_engine='
143 if override.startswith(PREFIX):
144 return override[len(PREFIX):], args.package
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
IntentTile.java 45 public static final String PREFIX = "intent(";
68 if (spec == null || !spec.startsWith(PREFIX) || !spec.endsWith(")")) {
71 final String action = spec.substring(PREFIX.length(), spec.length() - 1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
sysconfig.py 22 PREFIX = os.path.normpath(sys.prefix)
61 def get_python_inc(plat_specific=0, prefix=None):
69 If 'prefix' is supplied, use it instead of sys.prefix or
72 if prefix is None:
73 prefix = plat_specific and EXEC_PREFIX or PREFIX
88 return os.path.join(prefix, "include", "python" + get_python_version())
90 return os.path.join(prefix, "include")
    [all...]
  /external/python/cpython2/Modules/
getpath.c 16 * (prefix), containing the common .py and .pyc files, and the platform
18 * modules. Note that prefix and exec_prefix can be the same directory,
21 * Py_GetPath() carries out separate searches for prefix and exec_prefix.
23 * file or directory is found. If no prefix or exec_prefix is found, a
24 * warning message is issued and the preprocessor defined PREFIX and
43 * are performed for prefix and for exec_prefix, but with a different
48 * argv0_path. For prefix, the landmark's path is derived from the VPATH
53 * For the remaining steps, the prefix landmark will always be
63 * it points to prefix and exec_prefix. $PYTHONHOME can be a single
64 * directory, which is used for both, or the prefix and exec_prefi
115 static char prefix[MAXPATHLEN+1]; variable
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
CustomTile.java 53 public static final String PREFIX = "custom(";
340 return PREFIX + name.flattenToShortString() + ")";
344 final String action = spec.substring(PREFIX.length(), spec.length() - 1);
352 if (spec == null || !spec.startsWith(PREFIX) || !spec.endsWith(")")) {
355 final String action = spec.substring(PREFIX.length(), spec.length() - 1);
  /kernel/tests/net/test/
multinetwork_test.py 553 bbea124bc99d net: ipv6: Add sysctl for minimum prefix len acceptable in RIOs.
556 d860b2e8a7f1 FROMLIST: net: ipv6: Add sysctl for minimum prefix len acceptable in RIOs
559 e953f89b8563 net: ipv6: Add sysctl for minimum prefix len acceptable in RIOs.
562 84f2f47716cd net: ipv6: Add sysctl for minimum prefix len acceptable in RIOs.
565 65f8936934fa net: ipv6: Add sysctl for minimum prefix len acceptable in RIOs.
568 161e88ebebc7 net: ipv6: Add sysctl for minimum prefix len acceptable in RIOs.
601 def SendRIO(self, rtlifetime, plen, prefix, prf):
603 prefix=prefix, prf=prf)
634 def DelRA6(self, prefix, plen)
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardExporterTests.java 68 .put(StructuredName.PREFIX, "AppropriatePrefix")
106 .put(StructuredName.PREFIX, "DoNotEmitPrefix1")
115 .put(StructuredName.PREFIX, "AppropriatePrefix")
129 .put(StructuredName.PREFIX, "DoNotEmitPrefix2")
166 .put(StructuredName.PREFIX, "DoNotEmitPrefix1")
175 .put(StructuredName.PREFIX, "DoNotEmitPrefix2")
185 .put(StructuredName.PREFIX, "AppropriatePrefix")
194 .put(StructuredName.PREFIX, "DoNotEmitPrefix3")
236 .put(StructuredName.PREFIX, "AppropriatePrefix")
301 .put(StructuredName.PREFIX, "DoNotEmitPrefix1"
    [all...]
  /build/make/tools/fs_config/
fs_config_generator.py 130 PREFIX = 'AID_'
163 friendly = identifier[len(AID.PREFIX):].lower()
187 return not name.startswith(AID.PREFIX)
258 re.compile(r'%sUNUSED[0-9].*' % AID.PREFIX),
259 re.compile(r'%sAPP' % AID.PREFIX), re.compile(r'%sUSER' % AID.PREFIX)
261 _AID_DEFINE = re.compile(r'\s*#define\s+%s.*' % AID.PREFIX)
265 (AID.PREFIX, _OEM_START_KW, _OEM_END_KW))
528 _AID_MATCH = re.compile('%s[A-Z0-9_]+' % AID.PREFIX)
600 # * specified path before prefix matc
    [all...]
  /external/capstone/
Makefile 59 PREFIX ?= /usr
68 INCDIR = $(DESTDIR)$(PREFIX)/include
76 LIBDIR = $(DESTDIR)$(PREFIX)/$(LIBDIRARCH)
77 BINDIR = $(DESTDIR)$(PREFIX)/bin
86 LIBDATADIR = $(DESTDIR)$(PREFIX)/libdata
89 LIBDATADIR = $(DESTDIR)$(PREFIX)/libdata
428 git archive --format=tar.gz --prefix=capstone-$(DIST_VERSION)/ $(TAG) > capstone-$(DIST_VERSION).tgz
429 git archive --format=zip --prefix=capstone-$(DIST_VERSION)/ $(TAG) > capstone-$(DIST_VERSION).zip

Completed in 1889 milliseconds

1 2 3 4 5 6 7 891011>>