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

1 2 3 4 5

  /frameworks/base/wifi/java/android/net/wifi/aware/
Characteristics.aidl 19 parcelable Characteristics;
Characteristics.java 24 * The characteristics of the Wi-Fi Aware implementation.
26 public final class Characteristics implements Parcelable {
38 public Characteristics(Bundle characteristics) {
39 mCharacteristics = characteristics;
90 public static final Creator<Characteristics> CREATOR =
91 new Creator<Characteristics>() {
93 public Characteristics createFromParcel(Parcel in) {
94 Characteristics c = new Characteristics(in.readBundle())
    [all...]
IWifiAwareManager.aidl 26 import android.net.wifi.aware.Characteristics;
38 Characteristics getCharacteristics();
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCSectionCOFF.h 28 /// Characteristics - This is the Characteristics field of a section,
30 unsigned Characteristics;
33 /// it is a COMDAT section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
38 MCSectionCOFF(StringRef Section, unsigned Characteristics,
41 Characteristics(Characteristics), Selection (Selection) {
42 assert ((Characteristics & 0x00F00000) == 0 &&
53 unsigned getCharacteristics() const { return Characteristics; }
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
Capabilities.java 19 import android.net.wifi.aware.Characteristics;
44 * characteristics bundle. Only some of the information is exposed.
46 public Characteristics toPublicCharacteristics() {
48 bundle.putInt(Characteristics.KEY_MAX_SERVICE_NAME_LENGTH, maxServiceNameLen);
49 bundle.putInt(Characteristics.KEY_MAX_SERVICE_SPECIFIC_INFO_LENGTH,
51 bundle.putInt(Characteristics.KEY_MAX_MATCH_FILTER_LENGTH, maxMatchFilterLen);
52 return new Characteristics(bundle);
  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 31 /// This is the Characteristics field of a section, drawn from the enums
33 mutable unsigned Characteristics;
47 /// section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
52 MCSectionCOFF(StringRef Section, unsigned Characteristics,
56 Characteristics(Characteristics), COMDATSymbol(COMDATSymbol),
58 assert((Characteristics & 0x00F00000) == 0 &&
70 unsigned getCharacteristics() const { return Characteristics; }
  /libcore/ojluni/src/main/java/java/util/stream/
Collector.java 59 * <p>Collectors also have a set of characteristics, such as
60 * {@link Characteristics#CONCURRENT}, that provide hints that can be used by a
135 * {@link Characteristics#UNORDERED} characteristics or if the
140 * static factory methods {@link #of(Supplier, BiConsumer, BinaryOperator, Characteristics...)}
236 * Returns a {@code Set} of {@code Collector.Characteristics} indicating
237 * the characteristics of this Collector. This set should be immutable.
239 * @return an immutable set of collector characteristics
241 Set<Characteristics> characteristics(); method in interface:Collector
    [all...]
Collectors.java 106 static final Set<Collector.Characteristics> CH_CONCURRENT_ID
107 = Collections.unmodifiableSet(EnumSet.of(Collector.Characteristics.CONCURRENT,
108 Collector.Characteristics.UNORDERED,
109 Collector.Characteristics.IDENTITY_FINISH));
110 static final Set<Collector.Characteristics> CH_CONCURRENT_NOID
111 = Collections.unmodifiableSet(EnumSet.of(Collector.Characteristics.CONCURRENT,
112 Collector.Characteristics.UNORDERED));
113 static final Set<Collector.Characteristics> CH_ID
114 = Collections.unmodifiableSet(EnumSet.of(Collector.Characteristics.IDENTITY_FINISH));
115 static final Set<Collector.Characteristics> CH_UNORDERED_I
152 private final Set<Characteristics> characteristics; field in class:CollectorImpl
194 public Set<Characteristics> characteristics() { method in class:CollectorImpl
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
CameraProvider.java 20 import com.android.ex.camera2.portability.CameraDeviceInfo.Characteristics;
61 * Get the {@link Characteristics} of the given camera.
64 * @return The static characteristics of that camera.
66 public Characteristics getCharacteristics(int cameraId);
  /external/llvm/test/MC/ARM/Windows/
multiple-text-sections.s 32 @ CHECK: Characteristics [
41 @ CHECK: Characteristics [
50 @ CHECK: Characteristics [
text-attributes.s 21 @ CHECK: Characteristics [
  /external/llvm/lib/ObjectYAML/
COFFYAML.cpp 193 void ScalarBitSetTraits<COFF::Characteristics>::bitset(
194 IO &IO, COFF::Characteristics &Value) {
266 : Characteristics(COFFYAML::WeakExternalCharacteristics(0)) {}
268 : Characteristics(COFFYAML::WeakExternalCharacteristics(C)) {}
269 uint32_t denormalize(IO &) { return Characteristics; }
270 COFFYAML::WeakExternalCharacteristics Characteristics;
275 : Characteristics(COFF::SectionCharacteristics(0)) {}
277 : Characteristics(COFF::SectionCharacteristics(C)) {}
278 uint32_t denormalize(IO &) { return Characteristics; }
279 COFF::SectionCharacteristics Characteristics;
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraDeviceInfo.java 33 * @return The static characteristics of the specified device, or {@code null} on error.
35 Characteristics getCharacteristics(int cameraId);
55 * Device characteristics for a single camera.
57 public abstract class Characteristics {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_LOAD_IMAGE.h 35 ULONG Characteristics;
  /external/llvm/include/llvm/ObjectYAML/
COFFYAML.h 24 inline Characteristics operator|(Characteristics a, Characteristics b) {
26 return static_cast<Characteristics>(Ret);
151 struct ScalarBitSetTraits<COFF::Characteristics> {
152 static void bitset(IO &IO, COFF::Characteristics &Value);
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 384 coff_section->Header.Characteristics = Sec.getCharacteristics();
386 uint32_t &Characteristics = coff_section->Header.Characteristics;
388 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
389 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
390 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
391 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
392 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
393 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
394 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
COFFObjectFile.cpp 222 uint32_t Characteristics = 0;
227 Characteristics = Section->Characteristics;
247 if (Characteristics & COFF::IMAGE_SCN_CNT_CODE)
249 else if ( Characteristics & COFF::IMAGE_SCN_MEM_READ
250 && ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only.
252 else if (Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
254 else if (Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
256 else if (Characteristics & COFF::IMAGE_SCN_LNK_INFO)
344 Res = uint64_t(1) << (((sec->Characteristics & 0x00F00000) >> 20) - 1)
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 288 coff_section->Header.Characteristics = Sec.getCharacteristics();
290 uint32_t &Characteristics = coff_section->Header.Characteristics;
293 Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES;
296 Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES;
299 Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES;
302 Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES;
305 Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES;
308 Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES;
311 Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES
    [all...]
MCSectionCOFF.cpp 37 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
RawTypes.h 37 support::ulittle32_t Characteristics;
  /external/swiftshader/src/Reactor/
DLL.cpp 130 COFFheader32.FileHeader.Characteristics = IMAGE_FILE_EXECUTABLE_IMAGE |
184 COFFheader64.FileHeader.Characteristics = IMAGE_FILE_EXECUTABLE_IMAGE |
238 textSection.Characteristics = IMAGE_SCN_CNT_CODE |
252 exportsSection.Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA |
265 relocSection.Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA |
279 constSection.Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA |
283 exportDirectory.Characteristics = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntimage.h 80 ULONG Characteristics;
176 ULONG Characteristics;
210 ULONG Characteristics;
214 // Section Characteristics
242 USHORT Characteristics;
246 // File Characteristics
425 // Dll Characteristics
518 ULONG Characteristics;
527 ULONG Characteristics;
550 ULONG Characteristics;
    [all...]
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 99 YAMLObj.Header.Characteristics = Obj.getCharacteristics();
108 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics;
168 YAMLWE.Characteristics = ObjWE->Characteristics;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/IndustryStandard/
PeImage.h 105 UINT16 Characteristics;
325 UINT32 Characteristics;
564 UINT32 Characteristics;
599 UINT32 Characteristics;
612 UINT32 Characteristics;
680 UINT32 Characteristics;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
EfiImage.h 100 UINT16 Characteristics;
332 UINT32 Characteristics;
545 UINT32 Characteristics;
579 UINT32 Characteristics;
592 UINT32 Characteristics;
630 UINT32 Characteristics;

Completed in 660 milliseconds

1 2 3 4 5