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

1 2 3 4

  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
ICoverageNode.java 37 /** Bundle of Packages */
38 BUNDLE,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/
PlDebugSupport.c 26 BUNDLE OrigBundles[NUM_BUNDLES_IN_STUB];
185 IN BUNDLE NewBundles[NUM_BUNDLES_IN_STUB],
189 BUNDLE *B0Ptr;
194 // Get address of bundle 0
259 IN BUNDLE NewBundles[4],
263 BUNDLE *FixupBundle;
264 BUNDLE *B0Ptr;
267 // Get address of bundle 0
277 sizeof (BUNDLE) * NUM_BUNDLES_IN_STUB
282 CopyMem (B0Ptr, NewBundles, sizeof (BUNDLE) * NUM_BUNDLES_IN_STUB);
    [all...]
PlDebugSupport.h 36 } BUNDLE;
257 IN BUNDLE NewBundles[4],
273 IN BUNDLE NewBundles[4],
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
Rule.java 38 this.element = ElementType.BUNDLE;
BundleChecker.java 56 case BUNDLE:
82 checkRules(bundleCoverage, bundleRules, "bundle", name);
  /external/libchrome/base/
native_library.h 31 BUNDLE,
44 CFBundleRef bundle;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Resources.java 81 case BUNDLE:
105 copyResource("bundle.gif");
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
RuleTest.java 40 assertEquals(ElementType.BUNDLE, rule.getElement());
BundleCheckerTest.java 55 addRule(ElementType.BUNDLE);
58 assertMessage("Rule violated for bundle Test: instructions covered ratio is 0.50, but expected minimum is 0.75");
104 rule.setElement(ElementType.BUNDLE);
115 addRule(ElementType.BUNDLE).setExcludes("*");
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/
ResourcesTest.java 56 output.assertFile("jacoco-resources/bundle.gif");
77 assertEquals("el_bundle", Resources.getElementStyle(ElementType.BUNDLE));
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
BundleCoverageImpl.java 37 * Creates a new instance of a bundle with the given name.
40 * name of this bundle
42 * collection of all packages contained in this bundle
46 super(ElementType.BUNDLE, name);
52 * Creates a new instance of a bundle with the given name. The packages are
56 * name of this bundle
58 * all classes in this bundle
60 * all source files in this bundle
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
BundleCoverageImplTest.java 40 BundleCoverageImpl bundle = new BundleCoverageImpl("testbundle", local
42 assertEquals(ICoverageNode.ElementType.BUNDLE, bundle.getElementType());
43 assertEquals("testbundle", bundle.getName());
44 assertEquals(packages, bundle.getPackages());
71 BundleCoverageImpl bundle = new BundleCoverageImpl("testbundle", local
73 assertEquals(CounterImpl.getInstance(2, 0), bundle.getClassCounter());
74 assertEquals(CounterImpl.getInstance(4, 0), bundle.getMethodCounter());
75 assertEquals(CounterImpl.getInstance(6, 0), bundle.getBranchCounter());
77 bundle.getInstructionCounter())
89 BundleCoverageImpl bundle = new BundleCoverageImpl("bundle", local
    [all...]
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
R600MCCodeEmitter.cpp 93 MI.getOpcode() == AMDGPU::BUNDLE ||
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCELFStreamer.cpp 10 // This file is a stub that parses a MCInst bundle and passes the
43 if (MCK.getOpcode() != Hexagon::BUNDLE) {
50 // end-loop is in the bundle.
71 // At this point, MCB is a bundle
72 // Iterate through the bundle and assign addends for the instructions
HexagonMCInstrInfo.cpp 66 // Check the bundle for errors.
80 // end-loop is in the bundle.
109 Result.setOpcode(Hexagon::BUNDLE);
422 auto Result = Hexagon::BUNDLE == MCI.getOpcode();
  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 56 // Remove BUNDLE instruction and the InsideBundle flags from bundled
107 /// finalizeBundle - Finalize a machine instruction bundle which includes
109 /// This routine adds a BUNDLE instruction to represent the bundle, it adds
111 /// bundle, and it copies externally visible defs and uses to the BUNDLE
116 assert(FirstMI != LastMI && "Empty bundle?");
117 MIBundleBuilder Bundle(MBB, FirstMI, LastMI);
124 BuildMI(MF, FirstMI->getDebugLoc(), TII->get(TargetOpcode::BUNDLE));
125 Bundle.prepend(MIB)
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
NotificationPresets.java 52 public static final NotificationPreset BUNDLE = new NotificationBundlePreset();
66 BUNDLE,
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
NotificationPresets.java 52 public static final NotificationPreset BUNDLE = new NotificationBundlePreset();
66 BUNDLE,
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
NotificationPresets.java 52 public static final NotificationPreset BUNDLE = new NotificationBundlePreset();
66 BUNDLE,
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 195 /// Return true if MI is in a bundle (but not the first MI in a bundle).
197 /// A bundle looks like this before it's finalized:
209 /// In this case, the first MI starts a bundle but is not inside a bundle, the
210 /// next 2 MIs are considered "inside" the bundle.
212 /// After a bundle is finalized, it looks like this:
214 /// | Bundle |
228 /// The first instruction has the special opcode "BUNDLE". It's not "inside"
229 /// a bundle, but the next three MIs are
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineInstr.h 182 /// Return true if MI is in a bundle (but not the first MI in a bundle).
184 /// A bundle looks like this before it's finalized:
196 /// In this case, the first MI starts a bundle but is not inside a bundle, the
197 /// next 2 MIs are considered "inside" the bundle.
199 /// After a bundle is finalized, it looks like this:
201 /// | Bundle |
215 /// The first instruction has the special opcode "BUNDLE". It's not "inside"
216 /// a bundle, but the next three MIs are
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineInstr.h 189 /// Return true if MI is in a bundle (but not the first MI in a bundle).
191 /// A bundle looks like this before it's finalized:
203 /// In this case, the first MI starts a bundle but is not inside a bundle, the
204 /// next 2 MIs are considered "inside" the bundle.
206 /// After a bundle is finalized, it looks like this:
208 /// | Bundle |
222 /// The first instruction has the special opcode "BUNDLE". It's not "inside"
223 /// a bundle, but the next three MIs are
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
MachineInstr.h 189 /// Return true if MI is in a bundle (but not the first MI in a bundle).
191 /// A bundle looks like this before it's finalized:
203 /// In this case, the first MI starts a bundle but is not inside a bundle, the
204 /// next 2 MIs are considered "inside" the bundle.
206 /// After a bundle is finalized, it looks like this:
208 /// | Bundle |
222 /// The first instruction has the special opcode "BUNDLE". It's not "inside"
223 /// a bundle, but the next three MIs are
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
MachineInstr.h 200 /// Return true if MI is in a bundle (but not the first MI in a bundle).
202 /// A bundle looks like this before it's finalized:
214 /// In this case, the first MI starts a bundle but is not inside a bundle, the
215 /// next 2 MIs are considered "inside" the bundle.
217 /// After a bundle is finalized, it looks like this:
219 /// | Bundle |
233 /// The first instruction has the special opcode "BUNDLE". It's not "inside"
234 /// a bundle, but the next three MIs are
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
MachineInstr.h 200 /// Return true if MI is in a bundle (but not the first MI in a bundle).
202 /// A bundle looks like this before it's finalized:
214 /// In this case, the first MI starts a bundle but is not inside a bundle, the
215 /// next 2 MIs are considered "inside" the bundle.
217 /// After a bundle is finalized, it looks like this:
219 /// | Bundle |
233 /// The first instruction has the special opcode "BUNDLE". It's not "inside"
234 /// a bundle, but the next three MIs are
    [all...]

Completed in 367 milliseconds

1 2 3 4