HomeSort by relevance Sort by last modified time
    Searched refs:features (Results 251 - 275 of 462) sorted by null

<<111213141516171819

  /external/mesa3d/docs/OLD/
MESA_trace.spec 42 Application-side implementation of these features raises namespace
  /external/openssl/crypto/des/
FILES0 3 MODES.DES - A description of the features of the different modes of DES.
  /external/stlport/test/eh/
sunpro-64.mak 33 CXXFLAGS = ${STL_INCL} -xarch=v9 -library=no%Cstd -features=rtti -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC -xildoff -g -D_REENTRANT -DNO_FAST_ALLOCATOR
sunpro42.mak 36 CXXFLAGS = $(ARCHF) +w2 -mt -features=rtti ${STL_INCL}
  /external/webkit/Source/WebKit/wx/
wscript 101 features = 'cxx cshlib implib',
  /external/webkit/Tools/wx/build/
build_utils.py 63 def get_dirs_for_features(root, features, dirs):
66 enabled port(s) and features.
70 for feature in features:
  /external/webp/include/webp/
decode.h 291 // B) optional: retrieve the bitstream's features.
315 // Features gathered from the bitstream
331 // Retrieve features from the bitstream. The *features structure is filled
334 // In case of error, features->bitstream_status will reflect the error code.
337 WebPBitstreamFeatures* const features) {
338 return WebPGetFeaturesInternal(data, data_size, features,
358 WebPBitstreamFeatures input; // Immutable bitstream features (optional)
375 // in which case the features will be parsed and stored into config->input.
  /ndk/sources/android/cpufeatures/
cpu-features.c 46 #include <machine/cpu-features.h>
49 #include "cpu-features.h"
265 char* features = NULL; local
289 * in the future. Unfortunately, there is no 'Features' field to
331 /* Extract the list of CPU features from 'Features' field */
332 char* cpuFeatures = extract_cpuinfo_field(cpuinfo, cpuinfo_len, "Features");
346 * in their features list. However, ARM mandates
  /external/bluetooth/bluez/lib/
hci.c 355 { "Read Remote Supported Features", 21 },
356 { "Read Remote Extended Features", 22 },
463 { "Read Local Supported Features", 117 },
464 { "Read Local Extended Features", 118 },
559 { "LE Read Local Supported Features", 202 },
580 { "LE Read Remote Used Features", 221 },
675 /* LMP features mapping */
759 { "<extended features>",LMP_EXT_FEAT }, /* Bit 7 */
764 char *lmp_featurestostr(uint8_t *features, char *pref, int width)
774 if (m->val & features[i]
    [all...]
  /external/bluetooth/hcidump/parser/
csr.c 134 unsigned char features[8]; local
137 memcpy(features, frm->ptr, 8);
140 printf("%s: features", str);
142 printf(" 0x%02x", features[i]);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindow.java 212 final int features = getFeatures(); local
213 if ((features != DEFAULT_FEATURES) && (featureId == FEATURE_CUSTOM_TITLE)) {
216 throw new AndroidRuntimeException("You cannot combine custom titles with other title features");
218 if (((features & (1 << FEATURE_CUSTOM_TITLE)) != 0) &&
222 throw new AndroidRuntimeException("You cannot combine custom titles with other title features");
224 if ((features & (1 << FEATURE_NO_TITLE)) != 0 && featureId == FEATURE_ACTION_BAR) {
227 if ((features & (1 << FEATURE_ACTION_BAR)) != 0 && featureId == FEATURE_NO_TITLE) {
1279 final int features = getLocalFeatures(); local
1321 final int features = getLocalFeatures(); local
1334 final int features = getLocalFeatures(); local
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
cpufeature_32.h 18 #include <asm/required-features.h>
  /dalvik/vm/
Atomic.cpp 86 #include <machine/cpu-features.h>
  /development/ndk/platforms/android-9/arch-x86/include/asm/
cpufeature_32.h 18 #include <asm/required-features.h>
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 136 AccountAuthenticatorResponse response, Account account, String[] features) {
138 // specific features. We don't expect to get called, so we always
  /external/bluetooth/bluez/audio/
telephony.h 189 int telephony_ready_ind(uint32_t features, const struct indicator *indicators,
  /external/harfbuzz/src/
harfbuzz-shaper-private.h 132 HB_Bool HB_SelectScript(HB_ShaperItem *item, const HB_OpenTypeFeature *features);
  /external/iproute2/include/netinet/
tcp.h 35 #include <features.h>
  /external/jpeg/
jddctmgr.c 26 #include <machine/cpu-features.h>
  /external/kernel-headers/original/asm-x86/
cpufeature_32.h 13 #include <asm/required-features.h>
17 /* Intel-defined CPU features, CPUID level 0x00000001 (edx), word 0 */
49 /* AMD-defined CPU features, CPUID level 0x80000001, word 1 */
60 /* Transmeta-defined CPU features, CPUID level 0x80860001, word 2 */
65 /* Other features, Linux-defined mapping, word 3 */
86 /* Intel-defined CPU features, CPUID level 0x00000001 (ecx), word 4 */
97 /* VIA/Cyrix/Centaur-defined CPU features, CPUID level 0xC0000001, word 5 */
114 * Auxiliary flags: Linux defined - For features scattered in various
  /external/skia/src/core/
SkBitmapProcState_filter.h 19 #include <machine/cpu-features.h>
  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 18 #include <machine/cpu-features.h>
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
ClientImpl.cpp 142 WKPageRef qt_wk_createNewPage(WKPageRef page, WKDictionaryRef features, WKEventModifiers modifiers, WKEventMouseButton mouseButton, const void* clientInfo)
  /frameworks/base/core/java/android/speech/tts/
TextToSpeechService.java 200 * Queries the service for a set of features supported for a given language.
205 * @return A list of features supported for the given language.
819 Set<String> features = onGetFeaturesForLanguage(lang, country, variant);
821 if (features != null) {
822 featuresArray = new String[features.size()];
823 features.toArray(featuresArray);
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 140 final String type, final String[] features,

Completed in 2046 milliseconds

<<111213141516171819