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

1 2

  /external/clang/include/clang/Sema/
CXXFieldCollector.h 27 /// Fields - Contains all FieldDecls collected during parsing of a C++
28 /// class. When a nested class is entered, its fields are appended to the
29 /// fields of its parent class, when it is exited its fields are removed.
30 SmallVector<FieldDecl*, 32> Fields;
32 /// FieldCount - Each entry represents the number of fields collected during
43 // // At this point, Fields contains [x,y,q] decls and FieldCount contains
47 // // At this point, Fields contains [x,y,z] decls and FieldCount contains
57 Fields.push_back(D);
61 /// getCurNumField - The number of fields added to the currently parsed class
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
MetaData.java 38 * These fields are updated atomically with the database.
39 * If fields are added or removed from the CalendarMetaData table, those
42 public class Fields {
49 * The cached copy of the meta-data fields from the database.
51 private Fields mFields = new Fields();
74 * Returns a copy of all the MetaData fields. This method grabs a
75 * database lock to read all the fields atomically.
77 * @return a copy of all the MetaData fields.
79 public Fields getFields()
80 Fields fields = new Fields(); local
110 Fields fields = new Fields(); local
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 13 import javax.jmdns.ServiceInfo.Fields;
36 final Map<Fields, String> _qualifiedNameMap;
48 String domain = _qualifiedNameMap.get(Fields.Domain);
49 String protocol = _qualifiedNameMap.get(Fields.Protocol);
50 String application = _qualifiedNameMap.get(Fields.Application);
51 String instance = _qualifiedNameMap.get(Fields.Instance).toLowerCase();
96 String subtype = this.getQualifiedNameMap().get(Fields.Subtype);
146 public Map<Fields, String> getQualifiedNameMap() {
151 return _qualifiedNameMap.get(Fields.Application).equals("dns-sd") && _qualifiedNameMap.get(Fields.Instance).equals("_services")
    [all...]
ServiceInfoImpl.java 169 public ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, Map<String, ?> props) {
173 ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, String text) {
185 ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, byte text[]) {
186 Map<Fields, String> map = ServiceInfoImpl.checkQualifiedNameMap(qualifiedNameMap);
188 this._domain = map.get(Fields.Domain);
189 this._protocol = map.get(Fields.Protocol);
190 this._application = map.get(Fields.Application);
191 this._name = map.get(Fields.Instance);
192 this._subtype = map.get(Fields.Subtype);
236 public static Map<Fields, String> decodeQualifiedNameMap(String type, String name, String subtype)
    [all...]
DNSQuestion.java 13 import javax.jmdns.ServiceInfo.Fields;
104 String ipValue = this.getQualifiedNameMap().get(Fields.Instance);
DNSRecord.java 21 import javax.jmdns.ServiceInfo.Fields;
496 Map<Fields, String> map = ServiceInfoImpl.decodeQualifiedNameMapForType(this.getAlias());
504 Map<Fields, String> map = ServiceInfoImpl.decodeQualifiedNameMapForType(this.getAlias());
505 map.put(Fields.Subtype, this.getQualifiedNameMap().get(Fields.Subtype));
    [all...]
  /external/llvm/include/llvm/IR/
MDBuilder.h 148 MDNode *createTBAAStructNode(ArrayRef<TBAAStructField> Fields) {
149 SmallVector<Value *, 4> Vals(Fields.size() * 3);
151 for (unsigned i = 0, e = Fields.size(); i != e; ++i) {
152 Vals[i * 3 + 0] = ConstantInt::get(Int64, Fields[i].Offset);
153 Vals[i * 3 + 1] = ConstantInt::get(Int64, Fields[i].Size);
154 Vals[i * 3 + 2] = Fields[i].TBAA;
162 ArrayRef<std::pair<MDNode*, uint64_t> > Fields) {
163 SmallVector<Value *, 4> Ops(Fields.size() * 2 + 1);
166 for (unsigned i = 0, e = Fields.size(); i != e; ++i) {
167 Ops[i * 2 + 1] = Fields[i].first
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 181 Fields,
203 if (!CollectFields(Offset, FieldQTy, Fields,
216 Fields.push_back(llvm::MDBuilder::TBAAStructField(Offset, Size, TBAATag));
227 SmallVector<llvm::MDBuilder::TBAAStructField, 4> Fields;
228 if (CollectFields(0, QTy, Fields, TypeHasMayAlias(QTy)))
229 return MDHelper.createTBAAStructNode(Fields);
261 SmallVector <std::pair<llvm::MDNode*, uint64_t>, 4> Fields;
273 Fields.push_back(std::make_pair(
285 MDHelper.createTBAAStructTypeNode(OutName, Fields);
CGRTTI.cpp 29 /// Fields - The fields of the RTTI descriptor currently being built.
30 SmallVector<llvm::Constant *, 16> Fields;
508 Fields.push_back(VTable);
548 Fields.push_back(llvm::ConstantExpr::getBitCast(TypeName, CGM.Int8PtrTy));
598 // We don't need to emit any fields.
628 // No fields, at least for the moment.
632 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Fields);
699 // extra fields.
712 Fields.push_back(BaseTypeInfo)
    [all...]
CGObjCGNU.cpp 245 /// Push the property attributes into two structure fields.
246 void PushPropertyAttributes(std::vector<llvm::Constant*> &Fields,
258 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
266 // The second field is the next four fields left shifted by two, with the
268 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
269 // Two padding fields
270 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
271 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
587 /// the extended form of the class structure, and the extra fields are simply
1182 std::vector<llvm::Constant*> fields; local
2022 llvm::Constant *fields[2] = { local
    [all...]
MicrosoftCXXABI.cpp 195 llvm::SmallVectorImpl<llvm::Constant *> &fields);
218 /// \brief Emits a full member pointer with the fields common to data and
659 // multiple fields. Polymorphic classes have a vfptr at offset zero, so we can
660 // use zero for null. If there are multiple fields, we can use zero even if it
662 // fields.
686 llvm::SmallVector<llvm::Type *, 4> fields; local
688 fields.push_back(CGM.VoidPtrTy); // FunctionPointerOrVirtualThunk
690 fields.push_back(CGM.IntTy); // FieldOffset
694 fields.push_back(CGM.IntTy);
696 fields.push_back(CGM.IntTy)
732 llvm::SmallVector<llvm::Constant *, 4> fields; local
908 llvm::SmallVector<llvm::Constant *, 4> fields; local
    [all...]
CodeGenTBAA.h 82 /// CollectFields - Collect information about the fields of a type for
86 SmallVectorImpl<llvm::MDBuilder::TBAAStructField> &Fields,
CGRecordLayoutBuilder.cpp 58 llvm::DenseMap<const FieldDecl *, unsigned> Fields;
117 /// LayoutField - try to layout all fields in the record decl.
164 /// ResizeLastBaseFieldIfNecessary - Fields and bases can be laid out in the
220 Fields.clear();
311 // We must use packed structs for packed fields, and also unnamed bit
312 // fields since they don't affect the struct alignment.
343 // If there are more fields to be laid out, the offset at the end of the
369 Fields[FD] = FieldIndex;
433 Fields[D] = FieldTypes.size();
443 Fields[Field] = 0
    [all...]
  /external/smali/
README.md 16 - [Types, Methods and Fields wiki page](https://code.google.com/p/smali/wiki/TypesMethodsAndFields)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesf.h 74 // Set the fields f fieldtype to this one.
199 // Retrieve info about the fields dynamic properties.
232 // Retrieve the fields justification
241 // Retrieve the fields foreground attribute
251 // Retrieve the fields background attribute
261 // Retrieve the fields padding character
266 // Switch on the fields options
271 // Switch off the fields options
276 // Retrieve the fields options
281 // Set the fields option
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesf.h 74 // Set the fields f fieldtype to this one.
199 // Retrieve info about the fields dynamic properties.
232 // Retrieve the fields justification
241 // Retrieve the fields foreground attribute
251 // Retrieve the fields background attribute
261 // Retrieve the fields padding character
266 // Switch on the fields options
271 // Switch off the fields options
276 // Retrieve the fields options
281 // Set the fields option
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursesf.h 74 // Set the fields f fieldtype to this one.
199 // Retrieve info about the fields dynamic properties.
232 // Retrieve the fields justification
241 // Retrieve the fields foreground attribute
251 // Retrieve the fields background attribute
261 // Retrieve the fields padding character
266 // Switch on the fields options
271 // Switch off the fields options
276 // Retrieve the fields options
281 // Set the fields option
    [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorJava.h 174 VideoEditJava_Field g##m_class##Fields [] =
179 &g##m_class##Fields[0], \
180 (sizeof(g##m_class##Fields) / sizeof(VideoEditJava_Field)), \
184 videoEditJava_init##m_class##Fields( \
224 videoEditJava_init##m_class##Fields( \
  /frameworks/opt/net/voip/src/java/android/net/sip/
SimpleSessionDescription.java 27 * ("b="), encryption keys ("k="), and attribute fields ("a="). Currently this
58 private final Fields mFields = new Fields("voscbtka");
84 Fields fields = mFields; local
100 fields = media;
102 fields.parse(line);
237 public static class Media extends Fields {
383 * This class acts as a set of fields, and the size of the set is expected
390 private static class Fields {
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 41 * Fields for the fully qualified map.
43 public enum Fields {
395 public static ServiceInfo create(final Map<Fields, String> qualifiedNameMap, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) {
711 public abstract Map<Fields, String> getQualifiedNameMap();
  /external/mockito/src/org/mockito/internal/util/reflection/
Fields.java 18 * Small fluent reflection tools to work with fields.
23 public abstract class Fields {
26 * Instance fields declared in the class and superclasses of the given instance.
28 * @param instance Instance from which declared fields will be retrieved.
40 * Instance fields declared in the class of the given instance.
42 * @param instance Instance from which declared fields will be retrieved.
51 private static List<InstanceField> instanceFieldsIn(Object instance, Field[] fields) {
53 for (Field field : fields) {
61 * Accept fields annotated by the given annotations.
82 * Accept fields with non null value
    [all...]
  /external/clang/test/SemaCXX/
conditional-expr.cpp 41 struct Fields {
154 Fields flds;
  /external/clang/lib/Sema/
SemaLambda.cpp 793 SmallVector<Decl*, 4> Fields;
796 Fields.push_back(*i);
797 ActOnFields(0, Class->getLocation(), Class, Fields,
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 338 /// The largest number of fields a struct can have and still be
432 /// Attempt to extract the fields of \p LCV and bind them to the struct region
767 void getSymbolicOffsetFields(BindingKey K, FieldVector &Fields) {
776 Fields.push_back(FR->getDecl());
782 static bool isCompatibleWithFields(BindingKey K, const FieldVector &Fields) {
785 if (Fields.empty())
791 ptrdiff_t Delta = FieldsInBindingKey.size() - Fields.size();
795 Fields.begin());
798 Fields.begin() - Delta);
    [all...]
  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 200 enum Fields {
223 enum Fields {

Completed in 1437 milliseconds

1 2