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

1 2 3

  /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...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 364 Fields.setDateTime(expected, test.year2, test.month2, test.day2, test.hour2,
366 Fields.assertTimeEquals("day test index " + index + ", normalize():",
367 Fields.MAIN_DATE_TIME, expected, local);
377 Fields.setDateTime(expected, test.year2, test.month2, test.day2, test.hour2,
379 Fields.assertTimeEquals("day test index " + index + ", toMillis():",
380 Fields.MAIN_DATE_TIME, expected, local);
395 Fields.setDateTime(expected, test.year2, test.month2, test.day2, test.hour2,
397 Fields.setDst(expected, test.dst2 /* isDst */, PstPdt.getUtcOffsetSeconds(test.dst2));
398 Fields.assertTimeEquals("minute test index " + index + ", normalize():",
399 Fields.MAIN_DATE_TIME | Fields.DST_FIELDS, expected, local)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/
emrobject.py 32 Fields = set()
41 if name in self.Fields:
46 Fields = set(['JobFlowId'])
49 Fields = set(['InstanceGroupIds', 'JobFlowId'])
52 Fields = set(['RequestId'])
85 Fields = set([
99 Fields = set([
106 Fields = set([
132 Fields = set([
152 Fields = set(
    [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/lib/IR/
MDBuilder.cpp 130 MDNode *MDBuilder::createTBAAStructNode(ArrayRef<TBAAStructField> Fields) {
131 SmallVector<Metadata *, 4> Vals(Fields.size() * 3);
133 for (unsigned i = 0, e = Fields.size(); i != e; ++i) {
134 Vals[i * 3 + 0] = createConstant(ConstantInt::get(Int64, Fields[i].Offset));
135 Vals[i * 3 + 1] = createConstant(ConstantInt::get(Int64, Fields[i].Size));
136 Vals[i * 3 + 2] = Fields[i].TBAA;
144 StringRef Name, ArrayRef<std::pair<MDNode *, uint64_t>> Fields) {
145 SmallVector<Metadata *, 4> Ops(Fields.size() * 2 + 1);
148 for (unsigned i = 0, e = Fields.size(); i != e; ++i) {
149 Ops[i * 2 + 1] = Fields[i].first
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 111 // TODO: Recurse into the fields and base classes to see if any
131 // How do you reorder fields if you haven't got any?
171 for (const auto &FD : RD->fields()) {
175 // total because reordering fields won't fix that problem.
193 /// 3. If no fields can fit, pad by rounding the current offset up to the
194 /// smallest alignment requirement of our fields. Measure and track the
198 /// 6. Go back to 2 if there are still unplaced fields.
215 SmallVector<CharUnitPair, 20> Fields;
227 std::back_inserter(Fields), GatherSizesAndAlignments);
228 std::sort(Fields.begin(), Fields.end())
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 173 Fields,
195 if (!CollectFields(Offset, FieldQTy, Fields,
207 Fields.push_back(llvm::MDBuilder::TBAAStructField(Offset, Size, TBAATag));
218 SmallVector<llvm::MDBuilder::TBAAStructField, 4> Fields;
219 if (CollectFields(0, QTy, Fields, TypeHasMayAlias(QTy)))
220 return MDHelper.createTBAAStructNode(Fields);
252 SmallVector <std::pair<llvm::MDNode*, uint64_t>, 4> Fields;
264 Fields.push_back(std::make_pair(
278 MDHelper.createTBAAStructTypeNode(OutName, Fields);
CGObjCGNU.cpp 248 /// Push the property attributes into two structure fields.
249 void PushPropertyAttributes(std::vector<llvm::Constant*> &Fields,
261 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
269 // The second field is the next four fields left shifted by two, with the
271 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
272 // Two padding fields
273 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
274 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
583 /// the extended form of the class structure, and the extra fields are simply
1174 std::vector<llvm::Constant*> fields; local
2021 llvm::Constant *fields[2] = { local
    [all...]
CodeGenTBAA.h 82 /// CollectFields - Collect information about the fields of a type for
86 SmallVectorImpl<llvm::MDBuilder::TBAAStructField> &Fields,
  /external/llvm/include/llvm/IR/
MDBuilder.h 143 MDNode *createTBAAStructNode(ArrayRef<TBAAStructField> Fields);
149 ArrayRef<std::pair<MDNode *, uint64_t>> Fields);
  /external/smali/
README.md 18 - [Types, Methods and Fields wiki page](https://github.com/JesusFreke/smali/wiki/TypesMethodsAndFields)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/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/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...]
  /build/tools/droiddoc/templates-sdk/
page_info.cs 42 <?cs if:subcount(cl.fields) ?>
78 <?cs if:subcount(class.fields) ?>
79 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#lfields">Fields</a>
83 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhfields">Inherited Fields</a>
  /external/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_messages.py 43 Fields:
77 Fields:
101 Fields:
113 Fields:
121 Fields:
130 Fields:
159 Fields:
171 Fields:
182 Fields:
191 Fields
664 fields = messages.StringField(2) variable in class:StandardQueryParameters
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_messages.py 31 Fields:
65 Fields:
89 Fields:
101 Fields:
109 Fields:
118 Fields:
147 Fields:
159 Fields:
170 Fields:
179 Fields
656 fields = _messages.StringField(2) variable in class:StandardQueryParameters
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
emostore.h 92 virtual HRESULT WINAPI get_Fields(Fields **varFields) = 0;
118 HRESULT (WINAPI *get_Fields)(IExchangeServer *This,Fields **varFields);
164 HRESULT WINAPI IExchangeServer_get_Fields_Proxy(IExchangeServer *This,Fields **varFields);
201 virtual HRESULT WINAPI get_Fields(Fields **varFields) = 0;
227 HRESULT (WINAPI *get_Fields)(IStorageGroup *This,Fields **varFields);
273 HRESULT WINAPI IStorageGroup_get_Fields_Proxy(IStorageGroup *This,Fields **varFields);
310 virtual HRESULT WINAPI get_Fields(Fields **varFields) = 0;
348 HRESULT (WINAPI *get_Fields)(IPublicStoreDB *This,Fields **varFields);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 328 /// The largest number of fields a struct can have and still be
428 /// Attempt to extract the fields of \p LCV and bind them to the struct region
754 static void getSymbolicOffsetFields(BindingKey K, FieldVector &Fields) {
763 Fields.push_back(FR->getDecl());
769 static bool isCompatibleWithFields(BindingKey K, const FieldVector &Fields) {
772 if (Fields.empty())
778 ptrdiff_t Delta = FieldsInBindingKey.size() - Fields.size();
782 Fields.begin());
785 Fields.begin() - Delta);
    [all...]

Completed in 1041 milliseconds

1 2 3