/prebuilts/gradle-plugin/com/android/tools/dvlib/22.7.3/ |
dvlib-22.7.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/22.8.0/ |
dvlib-22.8.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/internal/build/test/devicepool/0.1/ |
devicepool-0.1.jar | |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
ios_base.h | 358 * - out 378 static const openmode out = _S_out; member in class:ios_base
|
/prebuilts/tools/common/m2/repository/com/google/auto/service/auto-service/1.0-rc2/ |
auto-service-1.0-rc2.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-invoker/2.0.11/ |
maven-invoker-2.0.11.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
NinePatchedImage.java | 371 * @param out Add the found ticks. 374 private static boolean findPatches(int[] pixels, List<Tick> out) { 380 out.clear(); 392 out.add(patch); 404 out.add(patch); 492 private static void findContentArea(int[] pixels, List<Tick> out) { 497 out.clear(); 503 out.add(contents); 515 out.add(contents); 724 System.out.println(String.format("width:%d, height:%d", width, height)) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
BuildFileCreator.java | 455 mBuildFile.append(" // This moves them out of them default location under src/<type>/... which would\n"); //$NON-NLS-1$ 611 FileOutputStream out = null; local 613 out = new FileOutputStream(propertiesFile); 614 properties.store(out, null); 617 Closeables.close(out, true);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateHandlerTest.java | 162 System.out.println("Checked blank project successfully in " 247 System.out.println("Successfully checked " + sCount + " template permutations in " 263 System.out.println("Successfully checked " + sCount + " project permutations in " 276 System.out.println("Checked " + templateFile.getName() + " successfully in " 288 System.out.println("Checked " + templateFile.getName() + " successfully in " 384 System.out.println("checking base " + base); 496 System.out.println("checking base " + base); 609 public void out(@Nullable String line) { method in class:TemplateHandlerTest.OutputGrabber 745 System.out.println("Created project " + project + " : " + AdtUtils.getAbsolutePath(project)); 750 System.out.println("Begin build error check") [all...] |
/system/bt/audio_a2dp_hw/ |
audio_a2dp_hw.c | 588 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 591 DEBUG("write %zu bytes (fd %d)", bytes, out->common.audio_fd); 593 pthread_mutex_lock(&out->common.lock); 594 if (out->common.state == AUDIO_A2DP_STATE_SUSPENDED || 595 out->common.state == AUDIO_A2DP_STATE_STOPPING) { 601 if ((out->common.state == AUDIO_A2DP_STATE_STOPPED) || 602 (out->common.state == AUDIO_A2DP_STATE_STANDBY)) 604 if (start_audio_datapath(&out->common) < 0) 609 else if (out->common.state != AUDIO_A2DP_STATE_STARTED) 615 pthread_mutex_unlock(&out->common.lock) 648 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 657 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 674 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 689 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 698 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 713 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 738 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 799 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 828 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 849 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 1092 struct a2dp_stream_out *out; local 1168 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local 1190 struct a2dp_stream_out *out = a2dp_dev->output; local [all...] |
/system/keymaster/ |
ocb.c | 15 / ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 116 } in, out; local 118 out.u32[0] = bswap32(in.u32[1]); 119 out.u32[1] = bswap32(in.u32[0]); 120 return out.u64; 553 static inline void AES_encrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) { 561 _mm_store_si128((__m128i*)out, tmp); 564 static inline void AES_decrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) { 572 _mm_store_si128((__m128i*)out, tmp); [all...] |
/system/security/keystore/ |
IKeystoreService.cpp | 82 void OperationResult::writeToParcel(Parcel* out) const { 83 out->writeInt32(resultCode); 84 out->writeStrongBinder(token); 85 out->writeInt64(handle); 86 out->writeInt32(inputConsumed); 87 out->writeInt32(dataLength); 89 void* buf = out->writeInplace(dataLength); 96 outParams.writeToParcel(out); 125 void ExportResult::writeToParcel(Parcel* out) const { 126 out->writeInt32(resultCode) 1377 void* out = NULL; local 1544 void* out = NULL; local 1587 void* out = NULL; local [all...] |
key_store_service.cpp | 380 uint8_t** out, size_t* outLength) { 384 return doLegacySignVerify(name, data, length, out, outLength, NULL, 0, KM_PURPOSE_SIGN); 605 keymaster_key_characteristics_t out = {{nullptr, 0}, {nullptr, 0}}; local 626 device->generate_key(device, &inParams, &blob, outCharacteristics ? &out : nullptr); 643 outCharacteristics ? &out : nullptr); 648 outCharacteristics->characteristics = out; 694 keymaster_key_characteristics_t out = {}; local 699 rc = dev->get_key_characteristics(dev, &key, clientId, appData, &out); 713 rc = dev->get_key_characteristics(dev, &key, clientId, appData, &out); 719 outCharacteristics->characteristics = out; 736 keymaster_key_characteristics_t out = {{nullptr, 0}, {nullptr, 0}}; local [all...] |
/toolchain/binutils/binutils-2.25/bfd/doc/ |
chew.c | 67 outputdots - strip out lines without leading dots 512 string_type out; local 513 init_string (&out); 521 catstr (&out, tos); 549 catchar (&out, at (tos, idx)); 551 cattext (&out, "\n"); /* Insert a newline between type and fnname */ 561 catchar (&out, at (tos, idx)); 563 cattext (&out, " PARAMS ("); 566 catchar (&out, at (tos, idx)); 568 cattext (&out, ");\n\n") 582 string_type out; local 614 string_type out; local 662 string_type out; local 751 string_type out; local 805 string_type out; local 920 string_type out; local 1001 string_type out; local [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
oasys.c | 466 /* Work out the howto. */ 498 /* Work out the howto. */ 782 /* Write out all the symbols. */ 823 /* Sometime, the oasys tools give out a symbol with illegal 874 static oasys_section_record_type out; local 886 out.relb = RELOCATION_TYPE_REL | s->target_index; 887 H_PUT_32 (abfd, s->size, out.value); 888 H_PUT_32 (abfd, s->vma, out.vma); 892 (oasys_record_union_type *) & out, 893 sizeof (out))) [all...] |
tekhex.c | 42 TekHex may come out of order and there is no header, so an 47 them out from that whenever we need to. 66 The data can come out of order, and may be discontigous. This is a 762 out (bfd *abfd, int type, char *start, char *end) function 819 out (abfd, '6', buffer, dst); 833 out (abfd, '3', buffer, dst); 883 out (abfd, '3', buffer, dst);
|
/dalvik/dx/src/com/android/dx/merge/ |
DexMerger.java | 201 System.out.printf("Result compacted from %.1fKiB to %.1fKiB to save %.1fKiB%n", 209 System.out.printf("Merged dex #%d (%d defs/%.1fKiB)%n", 214 System.out.printf("Result is %d defs/%.1fKiB. Took %.1fs%n", 227 private final Dex.Section out; field in class:DexMerger.IdMerger 229 protected IdMerger(Dex.Section out) { 230 this.out = out; 255 getSection(contentsOut).off = out.getPosition(); 262 // Fetch the next value of the dexes we just polled out 293 getSection(contentsOut).off = out.getPosition() [all...] |
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
Demo.java | 385 // Flesh out the menu with the installed transliterators 407 //System.out.println("<" + source + "-" + target + "/" + variant + ">, <" + menuName + ">"); 493 System.out.println("Problem opening/reading: " + fileDirectory + ", " + fileName); 521 // ADD Factory since otherwise getInverse blows out 529 System.out.println("Registering: " + ID + ", " + t.toRules(true)); 545 System.out.println(pos); 547 System.out.println("Test" + num + ": " + result); 557 System.out.println("Test" + num + ": " + result); 566 System.out.println(list[i] + ": " + src.toPattern(true)); 569 System.out.println("All: " + all.toPattern(true)) 606 PrintWriter out = new PrintWriter( local 840 StringBuffer out = new StringBuffer(); local 1019 PrintWriter out = new PrintWriter( local [all...] |
/external/javassist/src/main/javassist/ |
CtClassType.java | 247 DataOutputStream out = new DataOutputStream(barray); local 249 classfile.write(out); 1426 classPool.writeClassfile(getName(), out); local [all...] |
/frameworks/base/core/java/android/app/assist/ |
AssistStructure.java | 115 ParcelTransferWriter(AssistStructure as, Parcel out) { 117 ComponentName.writeToParcel(as.mActivityComponent, out); 120 out.writeInt(mNumWindows); 122 out.writeInt(0); 126 void writeToParcel(AssistStructure as, Parcel out) { 127 int start = out.dataPosition(); 130 boolean more = writeToParcelInner(as, out); 132 + (out.dataPosition() - start) 137 boolean writeToParcelInner(AssistStructure as, Parcel out) { 141 if (DEBUG_PARCEL) Log.d(TAG, "Creating PooledStringWriter @ " + out.dataPosition()) [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsBackupAgent.java | 260 // Parse out all the key management regimes permitted for this network. The literal 339 // Parse out 'network=' decls so we can ignore duplicates 655 DataOutputStream out = new DataOutputStream(bufstream); local 658 out.writeInt(FULL_BACKUP_VERSION); 661 out.writeInt(systemSettingsData.length); 662 out.write(systemSettingsData); 666 out.writeInt(secureSettingsData.length); 667 out.write(secureSettingsData); 671 out.writeInt(globalSettingsData.length); 672 out.write(globalSettingsData) 906 DataOutputStream out = new DataOutputStream(baos); local 1185 OutputStreamWriter out = new OutputStreamWriter(bos); local 1281 DataOutputStream out = new DataOutputStream(baos); local [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
ShortcutManagerTest1.java | 879 final FileOutputStreamWithPath out = local [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
PanoramaActivity.java | 1087 ByteArrayOutputStream out = new ByteArrayOutputStream(); local [all...] |
/prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.5.1/ |
javawriter-2.5.1.jar | |
/prebuilts/tools/common/m2/repository/org/jvnet/staxex/stax-ex/1.7.7/ |
stax-ex-1.7.7.jar | |