| /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/ |
| SimpleFile.java | 2 * Copyright (C) 2011 The Android Open Source Project 45 public String source; field in class:SimpleFile.FileOp 66 if (fileArg.getName().equals("source")) //$NON-NLS-1$ 67 op.source = fileArg.getSimpleValue(); 71 if (op.source == null || op.destination == null) 84 // Find bundle to find source files 99 URL sourceURL = FileLocator.find(bundle, new Path(op.source), null); 102 + op.source);
|
| /prebuilts/tools/common/m2/repository/org/jboss/forge/roaster/roaster-api/2.18.7.Final/ |
| roaster-api-2.18.7.Final.jar | |
| /dalvik/dx/src/com/android/dx/ssa/ |
| DeadCodeRemover.java | 2 * Copyright (C) 2007 The Android Open Source Project 100 RegisterSpec source = sources.get(i); local 101 useList[source.getReg()].remove(insnS); 105 source.getReg()))) { 110 worklist.set(source.getReg()); 146 RegisterSpec source = sources.get(j); local 147 useList[source.getReg()].remove(insn);
|
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| CanonicalIterator.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 50 * @param source string to get results for 52 public CanonicalIterator(String source) { 56 setSource(source); 60 * Gets the NFD form of the current source we are iterating over. 61 * @return gets the source: NOTE: it is the NFD form of the source originally passed in 64 return source; 109 * Set a new source for this iterator. Allows object reuse. 110 * @param newSource the source string to iterate against. This allows the same iterator to be use 233 private String source; field in class:CanonicalIterator [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
| TestIDNARef.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 128 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 143 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 158 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 185 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 199 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 214 errln("Did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 240 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 255 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 270 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()) 492 StringBuffer source = new StringBuffer(www); local 627 StringBuffer source = new StringBuffer(www); local [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| CanonicalIterator.java | 49 * @param source string to get results for 52 public CanonicalIterator(String source) { 56 setSource(source); 60 * Gets the NFD form of the current source we are iterating over. 61 * @return gets the source: NOTE: it is the NFD form of the source originally passed in 65 return source; 112 * Set a new source for this iterator. Allows object reuse. 113 * @param newSource the source string to iterate against. This allows the same iterator to be used 114 * while changing the source string, saving object creation 237 private String source; field in class:CanonicalIterator [all...] |
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
| TestIDNARef.java | 127 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 142 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 157 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 184 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 198 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 213 errln("Did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 239 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 254 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 269 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 295 errln("convertToIDNAReferenceASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString()) 491 StringBuffer source = new StringBuffer(www); local 626 StringBuffer source = new StringBuffer(www); local [all...] |
| /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
| MetadataManager.java | 185 InputStream source = metadataLoader.loadMetadata(fileName); local 186 if (source == null) { 190 PhoneMetadataCollection metadataCollection = loadMetadataAndCloseInput(source); 202 * @param source the non-null stream from which metadata is to be read 205 private static PhoneMetadataCollection loadMetadataAndCloseInput(InputStream source) { 209 ois = new ObjectInputStream(source); 223 // This will close all underlying streams as well, including source. 226 source.close();
|
| /external/mockito/src/main/java/org/mockito/internal/creation/ |
| MockSettingsImpl.java | 165 private static <T> CreationSettings<T> validatedSettings(Class<T> typeToMock, CreationSettings<T> source) { 169 validator.validateExtraInterfaces(typeToMock, source.getExtraInterfaces()); 170 validator.validateMockedType(typeToMock, source.getSpiedInstance()); 175 validator.validateConstructorUse(source.isUsingConstructor(), source.getSerializableMode()); 178 CreationSettings<T> settings = new CreationSettings<T>(source); 179 settings.setMockName(new MockNameImpl(source.getName(), typeToMock)); 181 settings.setExtraInterfaces(prepareExtraInterfaces(source));
|
| /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/ |
| OkUrlFactoryTest.java | 28 import static okio.Okio.source; 179 BufferedSource source = buffer(source(connection.getInputStream())); local 180 String actual = source.readString(US_ASCII); 181 source.close();
|
| /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/ |
| WebSocketReader.java | 27 import okio.Source; 62 private final BufferedSource source; field in class:WebSocketReader 65 private final Source framedMessageSource = new FramedMessageSource(); 81 public WebSocketReader(boolean isClient, BufferedSource source, FrameCallback frameCallback) { 82 if (source == null) throw new NullPointerException("source == null"); 85 this.source = source; 110 int b0 = source.readByte() & 0xff; 129 int b1 = source.readByte() & 0xff 226 final BufferedSource source = Okio.buffer(framedMessageSource); local [all...] |
| /external/okhttp/okio/okio/src/test/java/okio/ |
| GzipSourceTest.java | 204 GzipSource source = new GzipSource(gzipped); local 205 while (source.read(result, Integer.MAX_VALUE) != -1) { 210 /** This source keeps track of whether its read has returned -1. */ 211 static class ExhaustableSource implements Source { 212 private final Source source; field in class:GzipSourceTest.ExhaustableSource 215 ExhaustableSource(Source source) { 216 this.source = source; [all...] |
| /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
| ParallaxEffect.java | 2 * Copyright (C) 2016 The Android Open Source Project 34 * values that source variables can take. The main function is 57 * source variables can take. 79 * source variables can take. 163 * Creates a {@link ParallaxTarget} using direct mapping from source property into target 199 public final void performMapping(Parallax source) { 204 source.verifyIntProperties(); 206 source.verifyFloatProperties(); 215 directValue = calculateDirectValue(source); 221 fraction = calculateFraction(source); [all...] |
| /tools/tradefederation/core/prod-tests/src/com/android/graphics/tests/ |
| SkiaTest.java | 2 * Copyright (C) 2014 The Android Open Source Project 192 FileInputStreamSource source = new FileInputStreamSource(localFile); local 194 listener.testLog(remoteFile.getName(), type, source); local 195 source.cancel();
|
| /tools/tradefederation/core/tests/src/com/android/tradefed/config/ |
| OptionCopierTest.java | 2 * Copyright (C) 2012 The Android Open Source Project 63 * Option source with an option with same name as OptionSource, but a different type. 72 * Option source with an option with same name as OptionSource, but a different type. 109 OptionSource source = new OptionSource(); local 111 OptionCopier.copyOptions(source, dest); 112 assertEquals(source.mMyOption, dest.mDestOption); 119 OptionSource source = new OptionSource(); local 121 OptionCopier.copyOptions(source, dest); 122 assertEquals(source.mMyIntOption, dest.mDestIntOption); 129 OptionSource source = new OptionSource() local 143 OptionSource source = new OptionSource(); local 153 OptionSource source = new OptionSource(); local 167 OptionSource source = new OptionSource(); local 180 OptionSource source = new OptionSource(); local [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar | |
| /cts/hostsidetests/aadb/src/android/aadb/cts/ |
| TestDeviceFuncTest.java | 2 * Copyright (C) 2013 The Android Open Source Project 342 InputStreamSource source = getDevice().getScreenshot(); local 343 assertNotNull(source); 344 InputStream inputStream = source.createInputStream(); 352 StreamUtil.cancel(source); 373 InputStreamSource source = getDevice().getLogcat(100 * 1024); local 374 assertNotNull(source); 377 FileUtil.writeToFile(source.createInputStream(), tmpTxtFile); 386 source.cancel();
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
| Http1xStream.java | 2 * Copyright (C) 2012 The Android Open Source Project 35 import okio.Source; 51 * <li>Open a source to read the response body. Either {@link 54 * <li>Read from and close that source. 59 * closing that source. 72 private final BufferedSource source; field in class:Http1xStream 77 public Http1xStream(StreamAllocation streamAllocation, BufferedSource source, BufferedSink sink) { 79 this.source = source; 131 Source source = getTransferStream(response) local [all...] |
| /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
| DocumentBuilderImpl.java | 2 * Copyright (C) 2007 The Android Open Source Project 91 public Document parse(InputSource source) throws SAXException, IOException { 92 if (source == null) { 93 throw new IllegalArgumentException("source == null"); 99 String inputEncoding = source.getEncoding(); 100 String systemId = source.getSystemId(); 110 if (source.getByteStream() != null) { 111 parser.setInput(source.getByteStream(), inputEncoding); 112 } else if (source.getCharacterStream() != null) { 113 parser.setInput(source.getCharacterStream()) [all...] |
| /art/compiler/optimizing/ |
| parallel_move_resolver.cc | 2 * Copyright (C) 2014 The Android Open Source Project 26 // moves to perform, ignoring any move that is redundant (the source is 104 // Update the source of `move`, knowing that `updated_location` has been swapped 108 Location source = move->GetSource(); local 109 if (LowOf(updated_location).Equals(source)) { 111 } else if (HighOf(updated_location).Equals(source)) { 114 DCHECK(updated_location.Equals(source)) << updated_location << " " << source; local 124 // which means that a call to PerformMove could change any source operand 143 // dependencies. Any unperformed, unpending move with a source the sam 220 Location source = move->GetSource(); local 330 Location source = move->GetSource(); local 448 Location source = move->GetSource(); local [all...] |
| /bionic/libc/kernel/uapi/linux/ |
| fsl_hypervisor.h | 11 *** source file (e.g. under external/kernel-headers/original/) then 49 __u32 source; member in struct:fsl_hv_ioctl_memcpy
|
| /bionic/libc/kernel/uapi/xen/ |
| gntdev.h | 11 *** source file (e.g. under external/kernel-headers/original/) then 75 } source, dest; member in struct:gntdev_grant_copy_segment
|
| /cts/tests/leanbackjank/src/android/leanbackjank/cts/ |
| CtsJankTestBase.java | 2 * Copyright (C) 2015 The Android Open Source Project 36 private void printIntValueWithKey(String source, Bundle metrics, String key, 41 mLog.addValue(source, formatKeyForTestMetrics(key), metrics.getInt(key), resultType, resultUnit); 44 private void printDoubleValueWithKey(String source, Bundle metrics, String key, 49 mLog.addValue(source, formatKeyForTestMetrics(key), metrics.getDouble(key), resultType, 59 String source = String.format("%s#%s", getClass().getCanonicalName(), getName()); local 60 printDoubleValueWithKey(source, metrics, WindowContentFrameStatsMonitor.KEY_AVG_FPS, 62 printDoubleValueWithKey(source, metrics, 65 printIntValueWithKey(source, metrics, WindowContentFrameStatsMonitor.KEY_MAX_NUM_JANKY, 71 printDoubleValueWithKey(source, metrics, GfxMonitor.KEY_AVG_NUM_JANKY [all...] |
| /cts/tests/tests/sax/src/android/sax/cts/ |
| ElementTest.java | 2 * Copyright (C) 2010 The Android Open Source Project 124 InputSource source = new InputSource(new StringReader(XMLFILE)); local 125 xmlReader.parse(source);
|
| /cts/tests/tests/text/src/android/text/style/cts/ |
| ImageSpanTest.java | 2 * Copyright (C) 2008 The Android Open Source Project 102 String source = "cts test."; local 103 imageSpan = new ImageSpan(d, source); 104 assertEquals(source, imageSpan.getSource()); 106 source = "content://user/a/b"; 107 imageSpan = new ImageSpan(mContext, Uri.parse(source)); 108 assertEquals(source, imageSpan.getSource());
|