HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 801 - 825 of 4117) sorted by null

<<31323334353637383940>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.9.0/
okio-1.9.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.8.0/
okio-1.8.0.jar 
  /external/okhttp/okio/okio/src/test/java/okio/
BufferTest.java 163 Buffer source = new Buffer(); local
164 source.writeUtf8(s);
165 buffer.writeAll(source);
173 /** The big part of source's first segment is being moved. */
180 Buffer source = new Buffer(); local
181 source.writeUtf8(repeat('a', Segment.SIZE * 2));
182 sink.write(source, writeSize);
185 assertEquals(asList(Segment.SIZE - writeSize, Segment.SIZE), source.segmentSizes());
188 /** The big part of source's first segment is staying put. */
195 Buffer source = new Buffer() local
207 Buffer source = new Buffer(); local
222 Buffer source = new Buffer(); local
233 Buffer source = new Buffer(); local
306 Buffer source = new Buffer(); local
319 Buffer source = new Buffer(); local
368 Buffer source = new Buffer(); local
454 Buffer source = new Buffer(); local
467 Buffer source = new Buffer(); local
492 Buffer source = new Buffer().writeUtf8("" local
505 Buffer source = new Buffer().writeUtf8(TestUtil.repeat('a', Segment.SIZE * 3)); local
514 Buffer source = new Buffer(); local
530 Buffer source = new Buffer(); local
548 Buffer source = new Buffer(); local
564 Buffer source = new Buffer(); local
573 Buffer source = new Buffer(); local
581 Buffer source = new Buffer().writeUtf8("aaa"); local
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
TestDeviceFuncTest.java 2 * Copyright (C) 2010 The Android Open Source Project
667 InputStreamSource source = getDevice().getScreenshot(); local
668 assertNotNull(source);
671 FileUtil.writeToFile(source.createInputStream(), tmpPngFile);
681 source.cancel();
698 InputStreamSource source = getDevice().getLogcatDump(); local
699 assertNotNull(source);
702 FileUtil.writeToFile(source.createInputStream(), tmpTxtFile);
713 source.cancel();
    [all...]
  /prebuilts/sdk/current/support/percent/libs/
android-support-percent.jar 
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetLMBCS.java 590 private int LMBCS_SimpleGetNextUChar(UConverterSharedData cnv, ByteBuffer source, int positionOffset, int length) {
597 oldSourceLimit = source.limit();
598 oldSourcePos = source.position();
600 source.position(oldSourcePos + positionOffset);
601 source.limit(source.position() + length);
603 uniChar = extraInfo.decoder.simpleGetNextUChar(source, false);
605 source.limit(oldSourceLimit);
606 source.position(oldSourcePos);
616 private int LMBCSGetNextUCharWorker(ByteBuffer source, CoderResult[] err)
    [all...]
  /external/javassist/src/main/javassist/
ClassPool.java 138 protected ClassPoolTail source; field in class:ClassPool
182 this.source = new ClassPoolTail();
267 return source.toString();
337 source.recordInvalidClassName(name);
416 * Reads a class file from the source and returns a reference
447 * Reads a class file from the source and returns a reference
579 return source.find(classname);
631 return source.openClassfile(classname);
637 source.writeClassfile(classname, out);
641 * Reads class files from the source and returns an array o
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FramedStream.java 2 * Copyright (C) 2011 The Android Open Source Project
29 import okio.Source;
64 private final FramedDataSource source; field in class:FramedStream
84 this.source = new FramedDataSource(
87 this.source.finished = inFinished;
110 if ((source.finished || source.closed)
194 /** Returns a source that reads data from the peer. */
195 public Source getSource() {
196 return source;
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InputStreamReaderTest.java 99 private final String source = "This is a test message with Unicode character. \u4e2d\u56fd is China's name in Chinese"; field in class:InputStreamReaderTest
108 in = new ByteArrayInputStream(source.getBytes("UTF-8"));
331 reader.read(new char[source.length() - 5], 0, source.length() - 5);
416 assertEquals(source, sb.deleteCharAt(0).toString());
427 assertEquals(source, sb.toString());
455 bis = new ByteArrayInputStream(source.getBytes("UTF-8"));
457 char[] chars = new char[source.length()];
458 assertEquals(source.length() - 3, isr.read(chars, 0, chars.length - 3));
505 char[] chars = new char[source.length()]
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SinkChannelTest.java 44 private Pipe.SourceChannel source; field in class:SinkChannelTest
54 source = pipe.source();
78 source.configureBlocking(sourceBlockingMode[i]);
79 // if sink and source both are blocking mode, source only needs read
89 int count = source.read(readBuf);
131 long count = source.read(readBuf);
161 source.close();
187 source.configureBlocking(sourceBlockingMode[i])
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.6.0/
okio-1.6.0.jar 
  /art/compiler/optimizing/
register_allocation_resolver.cc 2 * Copyright (C) 2016 The Android Open Source Project
126 Location source = current->ToLocation(); local
131 locations->SetInAt(0, source);
133 DCHECK(locations->InAt(0).Equals(source));
136 locations->UpdateOut(source);
138 DCHECK(source.Equals(location));
189 Location source = input->GetLiveInterval()->GetLocationAt( local
192 InsertParallelMoveAtExitOf(predecessor, phi, source, destination);
238 Location source = current->ToLocation(); local
244 switch (source.GetKind())
317 Location source = current->ToLocation(); local
425 LiveInterval* source = interval->GetSiblingAt(source_position); local
    [all...]
  /art/runtime/mirror/
dex_cache-inl.h 2 * Copyright (C) 2013 The Android Open Source Project
298 DexCachePair<T> source = pairs[i].load(std::memory_order_relaxed); local
304 T* const before = source.object.template Read<kReadBarrierOption>();
305 visitor.VisitRootIfNonNull(source.object.AddressWithoutBarrier());
306 if (source.object.template Read<kReadBarrierOption>() != before) {
307 pairs[i].store(source, std::memory_order_relaxed);
341 StringDexCachePair source = src[i].load(std::memory_order_relaxed); local
342 String* ptr = source.object.Read<kReadBarrierOption>();
344 source.object = GcRoot<String>(new_source);
345 dest[i].store(source, std::memory_order_relaxed)
353 TypeDexCachePair source = src[i].load(std::memory_order_relaxed); local
366 MethodTypeDexCachePair source = src[i].load(std::memory_order_relaxed); local
379 mirror::CallSite* source = src[i].Read<kReadBarrierOption>(); local
    [all...]
  /bionic/libc/include/netinet/
tcp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
56 uint16_t source; member in struct:tcphdr::__anon255::__anon257
  /bionic/libc/kernel/uapi/linux/
if_arcnet.h 11 *** source file (e.g. under external/kernel-headers/original/) then
77 __u8 source; member in struct:arc_hardware
  /build/make/core/
droiddoc.mk 2 # Copyright (C) 2008 The Android Open Source Project
113 define prepare-doc-source-list
173 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \
210 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \
  /build/make/tools/droiddoc/templates-ndk/assets/js/
android_3p-bundle.js 25 * file that came with this source. At a minimum, the lexer should work on a
32 * <li> include this source file in an html page via
35 * <li> mark the {@code <pre>} and {@code <code>} tags in your source with
169 /** token style for embedded source. */
368 } else if (/[a-z]/i.test(regex.source.replace(
483 var parts = regex.source.match(
677 * @return {Object} source code and extracted tags.
739 return { source: sourceBuf.join(''), tags: extractedTags };
755 * @param {number} basePos the index of sourceCode within the chunk of source
761 source: sourceCode
760 var job = { property in class:appendDecorations.job
    [all...]
  /build/make/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js 25 * file that came with this source. At a minimum, the lexer should work on a
32 * <li> include this source file in an html page via
35 * <li> mark the {@code <pre>} and {@code <code>} tags in your source with
169 /** token style for embedded source. */
368 } else if (/[a-z]/i.test(regex.source.replace(
483 var parts = regex.source.match(
677 * @return {Object} source code and extracted tags.
739 return { source: sourceBuf.join(''), tags: extractedTags };
755 * @param {number} basePos the index of sourceCode within the chunk of source
761 source: sourceCode
760 var job = { property in class:appendDecorations.job
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioRecordHelper.java 18 private static final int[] SOURCE = {
29 private final int source; field in class:AudioRecordHelper
39 for (int source : SOURCE) {
42 AudioRecord testAudioRecord = new AudioRecord(source, rate, CHANNEL, ENCODING,
47 tmpSource = source;
57 source = tmpSource;
58 Log.d(TAG, "Sample rate = " + sampleRate + "Hz, Source = "
59 + source + " (VOICE_RECOGNITION = 6 , MIC = 1)");
76 audioRecord = new AudioRecord(source, sampleRate, CHANNEL, ENCODING, bufferSize)
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
CtsKeyEventUtil.java 2 * Copyright (C) 2016 The Android Open Source Project
178 int source = event.getSource(); local
180 if (source == InputDevice.SOURCE_UNKNOWN) {
181 source = InputDevice.SOURCE_KEYBOARD;
191 metaState, deviceId, scanCode, flags, source);
  /cts/common/util/tests/src/com/android/compatibility/common/util/
ReportLogTest.java 2 * Copyright (C) 2015 The Android Open Source Project
30 private static final String SOURCE = "Source";
38 " <Metric source=\"com.android.compatibility.common.util.ReportLogTest#%s\" "
110 // Should pass with a short source.
111 Metric metric = new Metric(SOURCE, MESSAGE, 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
112 assertEquals("Expected message to be ok", SOURCE, metric.getSource());
113 // Make a long source.
115 // 40 x "Source" = 240 character string
116 for (int i = 0; i < 40; i++) sb.append(SOURCE);
117 String source = sb.toString(); local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
ExternalStorageTest.java 2 * Copyright (C) 2012 The Android Open Source Project
107 final Uri source = Uri.parse("http://www.example.com"); local
110 dm.enqueue(new Request(source).setDestinationUri(Uri.fromFile(target)));
126 final Uri source = Uri.parse("http://www.example.com"); local
130 final long id = dm.enqueue(new Request(source).setDestinationUri(Uri.fromFile(target)));
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 2 * Copyright (C) 2010 The Android Open Source Project
169 String source = expectationsFile.toString(); local
170 parse(fileReader, source, mode);
174 private void parse(Reader reader, String source, ModeId mode) throws IOException {
185 Log.verbose("loaded " + count + " expectations from " + source);
  /cts/tests/tests/media/src/android/media/cts/
CodecUtils.java 2 * Copyright 2014 The Android Open Source Project
121 public native static void copyFlexYUVImage(CodecImage target, CodecImage source);
123 public static void copyFlexYUVImage(Image target, CodecImage source) {
124 copyFlexYUVImage(ImageWrapper.createFromImage(target), source); local
126 public static void copyFlexYUVImage(Image target, Image source) {
129 ImageWrapper.createFromImage(source));

Completed in 2139 milliseconds

<<31323334353637383940>>