HomeSort by relevance Sort by last modified time
    Searched full:startgroup (Results 1 - 25 of 30) sorted by null

1 2

  /development/tools/bugreport/src/com/android/bugreport/util/
Utils.java 84 * @param startGroup the index of the first group to use
90 public static GregorianCalendar parseCalendar(Matcher matcher, int startGroup,
94 if (matcher.group(startGroup+0) != null) {
95 result.set(Calendar.YEAR, Integer.parseInt(matcher.group(startGroup + 0)));
97 result.set(Calendar.MONTH, Integer.parseInt(matcher.group(startGroup + 1)));
98 result.set(Calendar.DAY_OF_MONTH, Integer.parseInt(matcher.group(startGroup + 2)));
99 result.set(Calendar.HOUR_OF_DAY, Integer.parseInt(matcher.group(startGroup + 3)));
100 result.set(Calendar.MINUTE, Integer.parseInt(matcher.group(startGroup + 4)));
101 result.set(Calendar.SECOND, Integer.parseInt(matcher.group(startGroup + 5)));
103 result.set(Calendar.MILLISECOND, Integer.parseInt(matcher.group(startGroup + 6)))
    [all...]
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
MediaDeviceInfo.java 47 store.startGroup();
54 store.startGroup();
60 store.startGroup();
71 store.startGroup("supported_resolutions");
FeatureDeviceInfo.java 103 store.startGroup();
116 store.startGroup();
PackageDeviceInfo.java 41 store.startGroup();
PropertyDeviceInfo.java 58 store.startGroup();
VintfDeviceInfo.java 58 store.startGroup();
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostDeviceInfo.java 33 store.startGroup("product");
44 store.startGroup("version");
  /cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
CameraDeviceInfo.java 70 mStore.startGroup(); // per camera chars
85 mStore.startGroup();
87 mStore.startGroup(protoName);
97 mStore.startGroup();
99 mStore.startGroup(protoName);
109 mStore.startGroup();
111 mStore.startGroup(protoName);
121 mStore.startGroup();
123 mStore.startGroup(protoName);
135 mStore.startGroup();
    [all...]
SampleDeviceInfo.java 39 store.startGroup("foo");
43 store.startGroup("bar");
VulkanDeviceInfo.java 361 store.startGroup();
377 store.startGroup();
380 store.startGroup(convertName(KEY_PROPERTIES));
391 store.startGroup(convertName(KEY_LIMITS));
    [all...]
SensorDeviceInfo.java 72 store.startGroup();
  /cts/common/device-side/device-info/tests/src/com/android/compatibility/common/deviceinfo/
TestDeviceInfo.java 54 store.startGroup("test_group");
70 store.startGroup();
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
InfoStore.java 43 abstract void startGroup() throws IOException;
48 abstract void startGroup(String name) throws IOException;
  /cts/hostsidetests/edi/src/android/edi/cts/
LibraryDeviceInfo.java 70 store.startGroup();
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 442 output.WriteTag(2, WireFormat.WireType.StartGroup);
448 output.WriteTag(3, WireFormat.WireType.StartGroup);
466 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag());
486 output.WriteTag(2, WireFormat.WireType.StartGroup);
497 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag());
523 output.WriteTag(1, WireFormat.WireType.StartGroup);
524 output.WriteTag(2, WireFormat.WireType.StartGroup);
543 output.WriteTag(1, WireFormat.WireType.StartGroup);
554 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.StartGroup), input.ReadTag());
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
DeviceInfoStore.java 67 public void startGroup() throws IOException {
75 public void startGroup(String name) throws IOException {
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
HostInfoStore.java 66 public void startGroup() throws IOException {
74 public void startGroup(String name) throws IOException {
  /external/protobuf/csharp/src/Google.Protobuf/
WireFormat.cs 66 StartGroup = 3,
CodedInputStream.cs 404 case WireFormat.WireType.StartGroup:
    [all...]
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 134 /// StartGroup - Add an opening tag of group.
140 bool StartGroup();
  /frameworks/compile/mclinker/tools/mcld/
Options.td 303 def StartGroup : Flag<["--"], "start-group">,
308 Alias<StartGroup>;
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 1486 unsigned int startgroup; local
    [all...]
  /external/aac/libSBRdec/src/
env_calc.cpp 436 int startGroup = groupVector[2 * group];
441 for (k = startGroup; k < stopGroup; k++) {
459 for (k = startGroup; k < stopGroup; k++) {
489 for (k = startGroup; k < stopGroup; k++) {
    [all...]
  /external/v8/src/inspector/
v8-console-message.cc 46 return protocol::Runtime::ConsoleAPICalled::TypeEnum::StartGroup;
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 222 bool IRBuilder::StartGroup() {

Completed in 532 milliseconds

1 2