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

1 2

  /external/clang/include/clang/Sema/
CXXFieldCollector.h 26 /// Fields - Contains all FieldDecls collected during parsing of a C++
27 /// class. When a nested class is entered, its fields are appended to the
28 /// fields of its parent class, when it is exited its fields are removed.
29 SmallVector<FieldDecl*, 32> Fields;
31 /// FieldCount - Each entry represents the number of fields collected during
42 // // At this point, Fields contains [x,y,q] decls and FieldCount contains
46 // // At this point, Fields contains [x,y,z] decls and FieldCount contains
56 Fields.push_back(D);
60 /// 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...]
JmDNSImpl.java 38 import javax.jmdns.ServiceInfo.Fields;
765 Map<Fields, String> map = cachedInfo.getQualifiedNameMap();
    [all...]
  /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...]
  /external/llvm/test/Scripts/
coff-dump.py 237 Fields = {}
362 return Fields[token]
383 Fields['this'] = value
450 global Fields
470 Fields[name] = value
  /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( \
  /external/clang/lib/CodeGen/
CGRTTI.cpp 29 /// Fields - The fields of the RTTI descriptor currently being built.
30 SmallVector<llvm::Constant *, 16> Fields;
492 Fields.push_back(VTable);
585 Fields.push_back(llvm::ConstantExpr::getBitCast(TypeName, CGM.Int8PtrTy));
632 // We don't need to emit any fields.
662 // No fields, at least for the moment.
666 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Fields);
733 // extra fields.
746 Fields.push_back(BaseTypeInfo)
    [all...]
CGObjCGNU.cpp 528 /// the extended form of the class structure, and the extra fields are simply
1019 std::vector<llvm::Constant*> fields; local
1860 llvm::Constant *fields[2] = { local
    [all...]
CodeGenModule.cpp 798 llvm::Constant *Fields[4] = {
804 return llvm::ConstantStruct::getAnon(Fields);
    [all...]
CGRecordLayoutBuilder.cpp 58 llvm::DenseMap<const FieldDecl *, unsigned> Fields;
118 /// LayoutField - try to layout all fields in the record decl.
165 /// ResizeLastBaseFieldIfNecessary - Fields and bases can be laid out in the
224 Fields.clear();
260 // in big-endian machines the first fields are in higher bit positions,
334 // on big-endian machines we reverted the bit offset because first fields are
433 // We must use packed structs for unnamed bit fields since they
490 Fields[D] = FieldTypes.size();
503 // Ignore zero sized bit fields.
522 Fields[Field] = 0
    [all...]
  /frameworks/base/voip/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/clang/test/SemaCXX/
conditional-expr.cpp 41 struct Fields {
152 Fields flds;
  /external/clang/lib/Sema/
SemaLambda.cpp 594 SmallVector<Decl*, 4> Fields;
597 Fields.push_back(*i);
598 ActOnFields(0, Class->getLocation(), Class, Fields,
    [all...]
  /external/llvm/unittests/VMCore/
TypeBuilderTest.cpp 201 enum Fields {
224 enum Fields {
  /frameworks/base/docs/html/design/
design_toc.cs 57 <li><a href="<?cs var:toroot ?>design/building-blocks/text-fields.html">Text Fields</a></li>
  /build/tools/droiddoc/templates-sdk/
class.cs 26 <?cs if:subcount(cl.fields) ?>
62 <?cs if:subcount(class.fields) ?>
63 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lfields">Fields</a>
67 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhfields">Inherited Fields</a>
203 <?cs def:write_field_summary(fields, included) ?>
205 <?cs each:field=fields ?>
219 <?cs def:write_constant_summary(fields, included) ?>
221 <?cs each:field=fields ?>
278 || subcount(class.fields)
380 <?cs if:subcount(class.fields) ?
    [all...]
  /external/doclava/res/assets/templates/
class.cs 20 <?cs if:subcount(cl.fields) ?>
56 <?cs if:subcount(class.fields) ?>
57 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lfields">Fields</a>
61 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhfields">Inherited Fields</a>
193 <?cs def:write_field_summary(fields, included) ?>
195 <?cs each:field=fields ?>
209 <?cs def:write_constant_summary(fields, included) ?>
211 <?cs each:field=fields ?>
268 || subcount(class.fields)
370 <?cs if:subcount(class.fields) ?
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 46 std::vector<EncodingField> Fields;
53 Fields.push_back(EncodingField(Base, Width, Offset));
56 unsigned numFields() const { return Fields.size(); }
60 const_iterator begin() const { return Fields.begin(); }
61 const_iterator end() const { return Fields.end(); }
    [all...]

Completed in 1641 milliseconds

1 2