HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 176 - 200 of 4045) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/brotli/java/org/brotli/wrapper/dec/
Decoder.java 18 private final ReadableByteChannel source; field in class:Decoder
26 * @param source underlying source
29 public Decoder(ReadableByteChannel source, int inputBufferSize)
34 if (source == null) {
35 throw new NullPointerException("source can not be null");
37 this.source = source;
76 int bytesRead = source.read(inputBuffer);
115 source.close()
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
SourceHighlighterTest.java 46 private SourceNodeImpl source; field in class:SourceHighlighterTest
51 source = new SourceNodeImpl(ElementType.SOURCEFILE, "Foo.java");
62 sourceHighlighter.render(parent, source, new StringReader(src));
72 sourceHighlighter.render(parent, source, new StringReader(""));
75 assertEquals("source lang-java linenums",
82 sourceHighlighter.render(parent, source, new StringReader(""));
85 assertEquals("source lang-scala linenums",
92 source.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 1);
93 source.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 2);
94 source.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 2)
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
GzipSource.java 24 * A source that uses <a href="http://www.ietf.org/rfc/rfc1952.txt">GZIP</a> to
25 * decompress data read from another source.
27 public final class GzipSource implements Source {
42 * Our source should yield a GZIP header (which we consume directly), followed
46 private final BufferedSource source; field in class:GzipSource
52 * The inflater source takes care of moving data between compressed source and
60 public GzipSource(Source source) {
61 if (source == null) throw new IllegalArgumentException("source == null")
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
MembershipKeyImpl.java 44 private final InetAddress source; field in class:MembershipKeyImpl
52 // set of source addresses that are blocked
58 InetAddress source)
63 this.source = source;
77 InetAddress source,
82 super(ch, group, interf, source);
96 int source() { method in class:MembershipKeyImpl.Type4
112 InetAddress source,
117 super(ch, group, interf, source);
131 byte[] source() { method in class:MembershipKeyImpl.Type6
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/source/
TsDataSourceManager.java 2 * Copyright (C) 2016 The Android Open Source Project
17 package com.android.tv.tuner.source;
84 TsDataSource source = streamer.createDataSource(); local
85 sTsStreamers.put(source, streamer);
86 return source;
97 * @param source to release
99 public void releaseDataSource(TsDataSource source) {
100 if (source instanceof TunerTsStreamer.TunerDataSource) {
101 mTunerStreamerManager.releaseDataSource(source, mId, !mIsRecording && mKeepTuneStatus);
102 } else if (source instanceof FileTsStreamer.FileDataSource)
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/androidTest/java/com/example/android/autofill/service/data/source/local/
LocalDataSourceTest.java 2 * Copyright (C) 2017 The Android Open Source Project
17 package com.example.android.autofill.service.data.source.local;
26 import com.example.android.autofill.service.data.source.local.dao.AutofillDao;
27 import com.example.android.autofill.service.data.source.local.db.AutofillDatabase;
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/
AutofillDataSource.java 2 * Copyright (C) 2017 The Android Open Source Project
16 package com.example.android.autofill.service.data.source;
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/
DefaultFieldTypesLocalJsonSource.java 2 * Copyright (C) 2018 The Android Open Source Project
17 package com.example.android.autofill.service.data.source.local;
22 import com.example.android.autofill.service.data.source.DefaultFieldTypesSource;
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/db/
Converters.java 2 * Copyright (C) 2017 The Android Open Source Project
17 package com.example.android.autofill.service.data.source.local.db;
  /external/adhd/scripts/mic_testing/frontend/
source.js 3 * Use of this source code is governed by a BSD-style license that can be
176 this.source = this.audioContext.createBufferSource();
177 this.source.buffer = this.buffer;
178 this.source.onended = function(e) { method in class:play
185 this.source.connect(this.node);
186 this.source.start(0);
195 this.source.stop();
196 this.source.disconnect();
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/util/
ASMifierTest$Compiler.class 
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 5 // This file is distributed under the University of Illinois Open Source
72 const char *source = local
92 llvm::MemoryBuffer::getMemBuffer(source);
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.hpp 57 std::string source; //!< Source snippet to be executed. member in struct:vkt::shaderexecutor::ShaderSpec
  /external/deqp/modules/glshared/
glsShaderExecUtil.hpp 7 * Copyright 2014 The Android Open Source Project
64 std::string source; //!< Source snippet to be executed. member in struct:deqp::gls::ShaderExecUtil::ShaderSpec
  /external/flatbuffers/android/jni/
include.mk 181 # Override the default behavior of local-source-file-path to workaround
184 local-source-file-path=\
205 # set your source files to be dependent on the generated headers. For example:
222 $(eval $(call local-source-file-path,$(src)): \
231 $(eval $(call local-source-file-path,$(src)): $(strip $(7)))),)\
  /external/guice/core/src/com/google/inject/internal/
FactoryProxy.java 33 private final Object source; field in class:FactoryProxy
37 FactoryProxy(InjectorImpl injector, Key<T> key, Key<? extends T> targetKey, Object source) {
41 this.source = source;
46 targetFactory = injector.getInternalFactory(targetKey, errors.withSource(source), JitLimitation.NEW_OR_EXISTING_JIT);
54 context.pushState(targetKey, source);
  /external/guice/core/src/com/google/inject/spi/
MembersInjectorLookup.java 38 private final Object source; field in class:MembersInjectorLookup
42 public MembersInjectorLookup(Object source, TypeLiteral<T> type) {
43 this.source = checkNotNull(source, "source");
48 return source;
ProviderLookup.java 41 private final Object source; field in class:ProviderLookup
45 public ProviderLookup(Object source, Key<T> key) {
46 this(source, Dependency.get(checkNotNull(key, "key")));
50 public ProviderLookup(Object source, Dependency<T> dependency) {
51 this.source = checkNotNull(source, "source");
56 return source;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TestUtility.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
43 public static String replace(String source, String toBeReplaced, String replacement) {
46 for (int i = 0; i < source.length(); ++i) {
47 if (source.regionMatches(false, i, toBeReplaced, 0, len)) {
51 results.append(source.charAt(i));
57 public static String replaceAll(String source, UnicodeSet set, String replacement) {
60 for (int i = 0; i < source.length(); i += UTF16.getCharCount(cp)) {
61 cp = UTF16.charAt(source,i);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TestUtility.java 40 public static String replace(String source, String toBeReplaced, String replacement) {
43 for (int i = 0; i < source.length(); ++i) {
44 if (source.regionMatches(false, i, toBeReplaced, 0, len)) {
48 results.append(source.charAt(i));
54 public static String replaceAll(String source, UnicodeSet set, String replacement) {
57 for (int i = 0; i < source.length(); i += UTF16.getCharCount(cp)) {
58 cp = UTF16.charAt(source,i);
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
InstrumentMojo.java 75 final File source = new File(classesDir, fileName); local
80 FileUtils.copyFile(source, backup);
82 output = new FileOutputStream(source);
83 instrumenter.instrument(input, output, source.getPath());
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepFindVisitor.java 30 public DepFindVisitor(Map<String, String> classes, String source, DepHandler handler) throws IOException {
31 super(null, new DepFindRemapper(classes, source, handler));
42 private final String source; field in class:DepFindVisitor.DepFindRemapper
46 public DepFindRemapper(Map<String, String> classes, String source, DepHandler handler) throws IOException {
48 this.source = source;
53 curPathClass = new PathClass(source, name);
60 if (!source.equals(otherSource)) {
  /external/libdrm/nouveau/nvif/
if0002.h 34 __u32 source; member in struct:nvif_perfmon_query_source_v0
if0003.h 11 __u64 source[4][8]; member in struct:nvif_perfdom_v0::__anon24681
  /external/libmojo/mojo/edk/system/
request_context.h 2 // Use of this source code is governed by a BSD-style license that can be
33 // Identifies the source of the current stack frame's RequestContext.
34 enum class Source {
39 // Constructs a RequestContext with a LOCAL_API_CALL Source.
42 explicit RequestContext(Source source);
48 Source source() const { return source_; } function in class:mojo::edk::RequestContext
90 const Source source_;

Completed in 1605 milliseconds

1 2 3 4 5 6 78 91011>>