/external/iputils/ |
SNAPSHOT.h | 1 static char SNAPSHOT[] = "s20121221";
|
/external/iproute2/include/ |
SNAPSHOT.h | 1 static const char SNAPSHOT[] = "160111";
|
/external/autotest/client/tests/sparse/ |
sparse-2006-04-28.tar.gz | |
/external/robolectric/v3/ |
update_robolectric.sh | 1 # Script to update robolectric with an up to date snapshot. 14 cp $MVN_ROOT/org/robolectric/robolectric/3.1-SNAPSHOT/robolectric-3.1-SNAPSHOT.jar $ROBOLECTRIC_DIR/. 15 cp $MVN_ROOT/org/robolectric/robolectric-annotations/3.1-SNAPSHOT/robolectric-annotations-3.1-SNAPSHOT.jar $ROBOLECTRIC_DIR/. 16 cp $MVN_ROOT/org/robolectric/robolectric-processor/3.1-SNAPSHOT/robolectric-processor-3.1-SNAPSHOT.jar $ROBOLECTRIC_DIR/. 17 cp $MVN_ROOT/org/robolectric/robolectric-resources/3.1-SNAPSHOT/robolectric-resources-3.1-SNAPSHOT.jar $ROBOLECTRIC_DIR/. 18 cp $MVN_ROOT/org/robolectric/robolectric-utils/3.1-SNAPSHOT/robolectric-utils-3.1-SNAPSHOT.jar $ROBOLECTRIC_DIR/ [all...] |
/external/testng/gradle/ |
uploadSnapshot.sh | 7 echo "Uploading snapshot" 10 echo "Current JDK is ${TRAVIS_JDK_HOME}, not uploading snapshot"
|
/sdk/ |
release.md | 3 By default builds use the -SNAPSHOT version. 4 To run a release build that remove the SNAPSHOT qualifier, run:
|
/frameworks/base/libs/hwui/ |
BakedOpState.h | 23 #include "Snapshot.h" 51 * Holds the resolved clip, transform, and bounds of a recordedOp, when replayed with a snapshot 55 ResolvedRenderState(LinearAllocator& allocator, Snapshot& snapshot, 59 ResolvedRenderState(LinearAllocator& allocator, Snapshot& snapshot, 63 ResolvedRenderState(LinearAllocator& allocator, Snapshot& snapshot); 107 Snapshot& snapshot, const RecordedOp& recordedOp) [all...] |
BakedOpState.cpp | 33 ResolvedRenderState::ResolvedRenderState(LinearAllocator& allocator, Snapshot& snapshot, 36 transform.loadMultiply(*snapshot.transform, recordedOp.localMatrix); 53 clipState = snapshot.serializeIntersectedClip(allocator, 54 recordedOp.localClip, *(snapshot.transform)); 70 if (CC_UNLIKELY(snapshot.projectionPathMask)) { 79 snapshot.projectionPathMask->transform(skInverseTransform, localMask); 85 ResolvedRenderState::ResolvedRenderState(LinearAllocator& allocator, Snapshot& snapshot, 87 transform.loadMultiply(*snapshot.transform, localTransform) [all...] |
Snapshot.cpp | 17 #include "Snapshot.h" 28 Snapshot::Snapshot() 44 * Copies the specified snapshot/ The specified snapshot is stored as 45 * the previous snapshot. 47 Snapshot::Snapshot(Snapshot* s, int saveFlags) 74 if (s->flags & Snapshot::kFlagFboTarget) [all...] |
/external/v8/src/snapshot/ |
snapshot-external.cc | 7 #include "src/snapshot/snapshot.h" 10 #include "src/snapshot/serialize.h" 11 #include "src/snapshot/snapshot-source-sink.h" 16 #error snapshot-external.cc is used only for the external snapshot build. 33 DCHECK(Snapshot::SnapshotIsValid(snapshot_blob)); 38 const v8::StartupData* Snapshot::DefaultSnapshotBlob() {
|
snapshot-empty.cc | 7 #include "src/snapshot/snapshot.h" 15 // These are meant for use with snapshot-external.cc. Should this file 25 const v8::StartupData* Snapshot::DefaultSnapshotBlob() { return NULL; }
|
snapshot.h | 8 #include "src/snapshot/serialize.h" 18 class Snapshot : public AllStatic { 35 // Initialize the Isolate from the internal snapshot. Returns false if no 36 // snapshot could be found. 38 // Create a new context using the internal partial snapshot. 49 // To be implemented by the snapshot source. 54 const PartialSerializer& context_ser, Snapshot::Metadata metadata); 65 // Snapshot blob layout: 84 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
|
/external/testng/ |
README-publish | 3 - ./gradlew bintrayUpload will upload the release to JCenter. It will fail if the version is a SNAPSHOT 5 - the snapshot to https://oss.sonatype.org/content/repositories/snapshots 9 Note that `./gradlew uploadArchives` is run by Travis after each new push to deploy the latest HEAD to the snapshot directory. As such, the version number of `build.gradle` in the git repo should always be -SNAPSHOT.
|
/external/valgrind/gdbserver_tests/ |
mssnapshot.stdinB.gdb | 16 # test non detailed and detailed snapshot 17 monitor snapshot
|
/frameworks/base/core/tests/coretests/src/android/os/ |
PerformanceCollectorTest.java | 51 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local 52 assertNotNull(snapshot); 53 assertEquals(2, snapshot.size()); 60 Bundle snapshot = mPerfCollector.endSnapshot(); local 62 verifySnapshotBundle(snapshot); 111 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); local 112 assertNotNull(snapshot); 113 assertEquals(2, snapshot.size()); 348 * by staggering calls to snapshot and timing functions. 399 private void verifySnapshotBundle(Bundle snapshot) { [all...] |
/external/chromium-trace/catapult/tracing/tracing/extras/chrome/ |
layout_object_test.html | 24 var snapshot = new FakeSnapshot(); 25 var layoutObject = new tr.e.chrome.LayoutObject(snapshot, { 37 snapshot.layoutObjectsById[layoutObject.id] = layoutObject; 39 assert.strictEqual(snapshot, layoutObject.snapshot); 61 nextSnapshot.previousSnapshot = snapshot; 62 snapshot.nextSnapshot = nextSnapshot;
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/system_stats/ |
system_stats_snapshot_view.html | 18 * Displays a system stats snapshot in a human readable form. @constructor 21 'tr-ui-e-system-stats-snapshot-view', tr.ui.analysis.ObjectSnapshotView); 27 this.classList.add('tr-ui-e-system-stats-snapshot-view'); 31 var snapshot = this.objectSnapshot_; 32 if (!snapshot || !snapshot.getStats()) { 33 this.textContent = 'No system stats snapshot found.'; 36 // Clear old snapshot view. 39 var stats = snapshot.getStats();
|
system_stats_snapshot_view.css | 6 .tr-ui-e-system-stats-snapshot-view .subhead { 11 .tr-ui-e-system-stats-snapshot-view ul { 21 .tr-ui-e-system-stats-snapshot-view li {
|
/external/v8/src/profiler/ |
heap-snapshot-generator-inl.h | 8 #include "src/profiler/heap-snapshot-generator.h" 15 return &snapshot()->entries()[from_index()]; 20 return snapshot()->profiler()->isolate(); 24 HeapSnapshot* HeapGraphEdge::snapshot() const { function in class:v8::internal::HeapGraphEdge 25 return to_entry_->snapshot();
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArrayList.java | 67 * Holds the latest snapshot of the list's data. This field is volatile so 129 Object[] snapshot = elements; local 130 return containsAll(collection, snapshot, 0, snapshot.length); 133 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to) { 135 if (indexOf(o, snapshot, from, to) == -1) { 149 Object[] snapshot = elements; local 150 return indexOf(object, snapshot, from, snapshot.length); 154 Object[] snapshot = elements local 165 Object[] snapshot = elements; local 170 Object[] snapshot = elements; local 187 Object[] snapshot = elements; local 201 Object[] snapshot = elements; local 214 Object[] snapshot = elements; local 219 Object[] snapshot = elements; local 233 Object[] snapshot = elements; local 249 Object[] snapshot = elements; local 548 Object[] snapshot = elements; local 564 Object[] snapshot = elements; local 574 Object[] snapshot = elements; local 582 Object[] snapshot = elements; local 594 Object[] snapshot = elements; local 763 private final Object[] snapshot; field in class:CopyOnWriteArrayList.CowIterator 834 Object[] snapshot = elements; local 845 Object[] snapshot = new Object[in.readInt()]; local [all...] |
/external/jsr305/sampleUses/ |
pom.xml | 9 <version>0.1-SNAPSHOT</version>
16 <version>0.1-SNAPSHOT</version>
22 <version>0.1-SNAPSHOT</version>
|
/external/jsr305/tcl/ |
pom.xml | 10 <version>0.1-SNAPSHOT</version>
17 <version>0.1-SNAPSHOT</version>
24 <version>0.1-SNAPSHOT</version>
|
/art/tools/ahat/src/ |
DominatedList.java | 35 * @param snapshot the snapshot where the instances reside 41 public static void render(final AhatSnapshot snapshot, 44 Collections.sort(insts, Sort.defaultInstanceCompare(snapshot)); 45 HeapTable.render(doc, query, id, new TableConfig(snapshot), snapshot, insts); 51 public TableConfig(AhatSnapshot snapshot) { 52 mSnapshot = snapshot;
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/gpu/ |
state_view.css | 6 .tr-ui-e-chrome-gpu-state-snapshot-view { 12 .tr-ui-e-chrome-gpu-state-snapshot-view img {
|
/external/dagger2/util/ |
publish-snapshot-on-commit.sh | 7 echo -e "Publishing maven snapshot...\n" 11 echo -e "Published maven snapshot"
|