/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...] |
JDBCPreparedStatement.java | 27 private ArrayList<BatchArg> batch; field in class:JDBCPreparedStatement 35 this.batch = null; 386 if (batch == null) { 387 batch = new ArrayList<BatchArg>(args.length); 390 batch.add(new BatchArg(args[i], blobs[i])); 395 if (batch == null) { 398 int[] ret = new int[batch.size() / args.length]; 406 BatchArg b = (BatchArg) batch.get(index++); 418 throw new BatchUpdateException("batch failed", ret); 424 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
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SelectionManager.java | 155 int batch = 50; local 159 int count = index + batch < total 160 ? batch 166 index += batch;
|
/external/webkit/Tools/BuildSlaveSupport/gtk/crashmon/ |
crashmon | 63 gdb -ex "thread apply all bt" --batch "${fullprogrampath}" "${coredump}" 2>&1 \
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsTransaction.java | 31 * transaction is involved in, and whether the operation being performed is a batch operation. 36 * Whether this transaction is encompassing a batch of operations. If we're in batch mode, 37 * transactional operations from non-batch callers are ignored. 64 * Creates a new transaction object, optionally marked as a batch transaction. 65 * @param batch Whether the transaction is in batch mode. 67 public ContactsTransaction(boolean batch) { 68 mBatch = batch; 145 * @param callerIsBatch Whether this is being performed in the context of a batch operation [all...] |
/frameworks/base/libs/androidfw/ |
InputTransport.cpp | 412 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u", 440 Batch& batch = mBatches.editItemAt(batchIndex); local 441 if (canAddSample(batch, &mMsg)) { 442 batch.samples.push(mMsg); 444 ALOGD("channel '%s' consumer ~ appended to batch event", 449 // We cannot append to the batch in progress, so we need to consume 450 // the previous batch right now and defer the new message until later. 453 batch, batch.samples.size(), outSeq, outEvent) 471 Batch& batch = mBatches.editTop(); local 507 Batch& batch = mBatches.editItemAt(i); local 854 const Batch& batch = mBatches.itemAt(i); local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppService.java | 562 * Add info into a batch. The logic is 564 * 2) If there is no batch, create a batch and insert this transfer into batch, 565 * then run the batch 566 * 3) If there is existing batch and timestamp match, insert transfer into batch 567 * 4) If there is existing batch and timestamp does not match, create a new batch and 600 if (V) Log.v(TAG, "Service create new Batch " + newBatch.mI 700 BluetoothOppBatch batch = mBatchs.get(i); local 708 BluetoothOppBatch batch = mBatchs.get(i); local 753 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 \
|
grub-install.in | 339 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file 429 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file 454 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
|
/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 | 31 batch \
|
/frameworks/base/include/androidfw/ |
InputTransport.h | 276 * to determine whether a pending batch is available to be consumed. 323 /* Returns true if there is a pending batch. 345 struct Batch { 348 Vector<Batch> mBatches; 404 // a batch, we append a record here that associates the last sequence number in the 405 // batch with the previous one. When the finished signal is sent, we traverse the 406 // chain to individually finish all input messages that were part of the batch. 416 Batch& batch, size_t count, uint32_t* outSeq, InputEvent** outEvent); 431 static bool canAddSample(const Batch& batch, const InputMessage* msg) [all...] |