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

1 2 3

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
SimpleBatchNode.java 43 for (Batch batch : batches.values()) {
44 batch.geometry.setTransformRefresh();
53 public void batch() { method in class:SimpleBatchNode
BatchNode.java 57 * usage is like any other node except you have to call the {@link #batch()} method once all geoms have been attached to the sub scene graph and theire material set
62 * Sub geoms can be added after the batch() method has been called but won't be batched and will be rendered as normal geometries.
63 * To integrate them in the batch you have to call the batch() method again on the batchNode.
66 * TODO more automagic (batch when needed in the updateLigicalState)
75 protected Map<Material, Batch> batches = new HashMap<Material, Batch>();
120 for (Batch batch : batches.values()) {
121 if (batch.needMeshUpdate)
144 Batch batch = batches.get(bg.getMaterial()); local
174 public void batch() { method in class:BatchNode
204 Batch batch = new Batch(); local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNode.java 33 BatchNode batch; field in class:TestBatchNode
38 batch = new BatchNode("theBatchNode");
65 batch.attachChild(cube);
66 batch.attachChild(cube2);
67 // batch.setMaterial(mat);
68 batch.batch();
69 rootNode.attachChild(batch);
93 batch.setLocalRotation(new Quaternion().fromAngleAxis(time, Vector3f.UNIT_Z));
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BatchingNamedTaskExecutor.java 61 * Instructs the executor to submit the next batch of results.
65 NamedTask[] batch = new NamedTask[0]; local
69 batch = nextTasks.toArray(batch);
71 if (DBG) Log.d(TAG, "Dispatching batch of " + count);
74 for (NamedTask task : batch) {
  /system/core/fastboot/
genkey.sh 16 -batch -days 10000
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 12 private ArrayList<String> batch; field in class:JDBCStatement
18 this.batch = null;
177 if (batch == null) {
178 batch = new ArrayList<String>(1);
180 batch.add(sql);
184 if (batch == null) {
187 int[] ret = new int[batch.size()];
194 execute((String) batch.get(i));
201 throw new BatchUpdateException("batch failed", ret);
207 if (batch != null)
    [all...]
  /external/openssh/regress/
putty-transfer.sh 22 env HOME=$PWD ${PLINK} -load compression_$c -batch \
34 -batch -i putty.rsa$p 127.0.0.1 \
putty-kex.sh 20 env HOME=$PWD ${PLINK} -load kex_$k -batch -i putty.rsa2 \
putty-ciphers.sh 21 env HOME=$PWD ${PLINK} -load cipher_$c -batch -i putty.rsa2 \
sftp.sh 9 SFTPCMDFILE=${OBJ}/batch
ssh-com-sftp.sh 8 SFTPCMDFILE=${OBJ}/batch
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 33 void *batch[kSize]; member in struct:__sanitizer::QuarantineBatch
99 PREFETCH(b->batch[i]);
101 PREFETCH(b->batch[i + kPrefetch]);
102 cb.Recycle((Node*)b->batch[i]);
129 b->batch[b->count++] = ptr;
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 21 openssl req -config ${DIR}/default.cnf -new -nodes -batch > /tmp/cert-rsa-req.pem
36 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_extraLong_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-keyUsage-extraLong.der
38 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions extendedKeyUsage_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-extendedKeyUsage.der
40 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions ca_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-ca.der
42 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions userWithPathLen_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-userWithPathLen.der
44 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions caWithPathLen_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-caWithPathLen.der
46 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_other_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-alt-other.der
48 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_email_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-alt-email.der
50 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dns_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-alt-dns.der
52 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dirname_cert -req -signkey /tmp/privkey (…)
    [all...]
  /external/webkit/Tools/BuildSlaveSupport/gtk/crashmon/
crashmon 63 gdb -ex "thread apply all bt" --batch "${fullprogrampath}" "${coredump}" 2>&1 \
  /frameworks/base/libs/androidfw/
InputTransport.cpp 417 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
445 Batch& batch = mBatches.editItemAt(batchIndex); local
446 if (canAddSample(batch, &mMsg)) {
447 batch.samples.push(mMsg);
449 ALOGD("channel '%s' consumer ~ appended to batch event",
454 // We cannot append to the batch in progress, so we need to consume
455 // the previous batch right now and defer the new message until later.
458 batch, batch.samples.size(), outSeq, outEvent)
476 Batch& batch = mBatches.editTop(); local
512 Batch& batch = mBatches.editItemAt(i); local
859 const Batch& batch = mBatches.itemAt(i); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppService.java 597 * Add info into a batch. The logic is
599 * 2) If there is no batch, create a batch and insert this transfer into batch,
600 * then run the batch
601 * 3) If there is existing batch and timestamp match, insert transfer into batch
602 * 4) If there is existing batch and timestamp does not match, create a new batch and
624 if (V) Log.v(TAG, "Service create new Batch " + newBatch.mI
729 BluetoothOppBatch batch = mBatchs.get(i); local
737 BluetoothOppBatch batch = mBatchs.get(i); local
782 BluetoothOppBatch batch = mBatchs.get(i); local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
ModelBuilder.cpp 94 } else if (!caseOnly && ((root = doc.FirstChildElement("batch")) != NULL)) {
187 UniquePtr<TaskBatch> batch(
189 if (batch.get() == NULL) {
193 if (!parseAttributes(root, *batch.get())) {
199 LOGE("ModelBuilder::handleBatch no include inside batch");
218 if (!batch.get()->addChild(testCase.get())) {
231 return batch.release();
  /external/grub/util/
grub-md5-crypt 91 $grub_shell --batch --device-map=/dev/null <<EOF \
grub-md5-crypt.in 91 $grub_shell --batch --device-map=/dev/null <<EOF \
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsTransaction.java 32 * transaction is involved in, and whether the operation being performed is a batch operation.
37 * Whether this transaction is encompassing a batch of operations. If we're in batch mode,
38 * transactional operations from non-batch callers are ignored.
68 * Creates a new transaction object, optionally marked as a batch transaction.
69 * @param batch Whether the transaction is in batch mode.
71 public ContactsTransaction(boolean batch) {
72 mBatch = batch;
157 * @param callerIsBatch Whether this is being performed in the context of a batch operation
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 157 int batch = 50; local
161 int count = index + batch < total
162 ? batch
172 index += batch;
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapter/src/main/java/com/example/android/network/sync/basicsyncadapter/
SyncAdapter.java 186 * <p>As an additional optimization, we use a batch operation to perform all database writes at
209 ArrayList<ContentProviderOperation> batch = new ArrayList<ContentProviderOperation>(); local
249 batch.add(ContentProviderOperation.newUpdate(existingUri)
263 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
272 batch.add(ContentProviderOperation.newInsert(FeedContract.Entry.CONTENT_URI)
280 Log.i(TAG, "Merge solution ready. Applying batch update");
281 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /external/iproute2/ip/
ip.c 43 " ip [ -force ] -batch filename\n"
98 static int batch(const char *name) function
211 } else if (matches(opt, "-batch") == 0) {
244 return batch(batch_file);
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texi2dvi 47 -b, --batch no interaction
53 -q, --quiet no output unless errors (implies --batch)
78 batch=false # eval for batch mode
145 -b | --b*) batch=eval;;
146 -q | -s | --q* | --s*) quiet=t; batch=eval;;
576 $batch tex_args="\\${escape}nonstopmode\ \\${escape}input"
  /build/core/
legacy_prebuilts.mk 28 batch \

Completed in 1249 milliseconds

1 2 3