Searched defs:source (Results 251 - 275 of 1548) sorted by relevance

<<11121314151617181920>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DSumOfLogs.java153 * Copies source to dest.
154 * <p>Neither source nor dest can be null.</p>
156 * @param source SumOfLogs to copy
158 * @throws NullPointerException if either source or dest is null
160 public static void copy(SumOfLogs source, SumOfLogs dest) { argument
161 dest.setData(source.getDataRef());
162 dest.n = source.n;
163 dest.value = source.value;
H A DSumOfSquares.java141 * Copies source to dest.
142 * <p>Neither source nor dest can be null.</p>
144 * @param source SumOfSquares to copy
146 * @throws NullPointerException if either source or dest is null
148 public static void copy(SumOfSquares source, SumOfSquares dest) { argument
149 dest.setData(source.getDataRef());
150 dest.n = source.n;
151 dest.value = source.value;
/external/apache-http/android/src/com/android/internal/http/multipart/
H A DFilePart.java79 private PartSource source; field in class:FilePart
85 * @param partSource the source for this part
103 this.source = partSource;
110 * @param partSource the source for this part
193 String filename = this.source.getFileName();
203 * Write the data in "source" to the specified stream.
221 InputStream instream = source.createInputStream();
234 * Returns the source of the file part.
236 * @return The source.
240 return this.source;
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorInclude.java198 Source source = null;
212 source = handler.peekSourceFromURIResolver();
214 if (null != source && source instanceof DOMSource)
216 Node node = ((DOMSource)source).getNode();
221 // from either the source.getSystemId(), if non-null
247 if(null == source)
252 source = new StreamSource(absURL);
256 source = processSource(handler, source);
338 processSource(StylesheetHandler handler, Source source) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOM2Helper.java119 * source (a character stream, a byte stream, or a URI).</p>
125 * different input source.</p>
127 * @param source The input source for the top-level of the
133 public void parse(InputSource source) throws TransformerException argument
173 setDocument(parser.parse(source));
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTreeManager.java40 * This class bottlenecks all management of source trees. The methods
41 * in this class should allow easy garbage collection of source
42 * trees (not yet!), and should centralize parsing for those source trees.
59 /** The TrAX URI resolver used to obtain source trees. */
123 Source source = null;
127 source = m_uriResolver.resolve(urlString, base);
130 if (null == source)
134 source = new StreamSource(uri);
137 return source;
163 * Put the source tre
169 putDocumentInCache(int n, Source source) argument
196 getNode(Source source) argument
272 getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) argument
300 parseToNode(Source source, SourceLocator locator, XPathContext xctxt) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathExpressionImpl.java255 *<p>If <code>source</code> or <code>returnType</code> is <code>null</code>,
258 * @param source The <code>InputSource</code> of the document to evaluate
269 * @throws NullPointerException If <code>source</code> or
272 public Object evaluate(InputSource source, QName returnType) argument
274 if ( ( source == null ) || ( returnType == null ) ) {
295 Document document = db.parse( source );
306 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
313 * <p>If <code>source</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
315 * @param source The <code>InputSource</code> of the document to evaluate over.
321 * @throws NullPointerException If <code>source</cod
323 evaluate(InputSource source) argument
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DServerSocketService.java166 * <li>The id and source are recorded in {@link #connectionState}
176 private SettableFuture<OpenedSocket> getConnectionImpl(UUID id, Source source) { argument
179 checkState(connectionState.put(source, id), "Connection for %s has already been %s",
180 id, source);
/external/deqp/framework/egl/
H A DegluGLUtil.cpp40 glw::GLenum getImageGLTarget (EGLenum source) argument
42 switch (source)
/external/deqp/modules/glshared/
H A DglsShaderExecUtil.hpp64 std::string source; //!< Source snippet to be executed. member in struct:deqp::gls::ShaderExecUtil::ShaderSpec
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DRSSFeedUtil.java115 * Copies all bytes in the given source stream to the given destination
120 * @param source
121 * the given source stream
125 public static void transferData(InputStream source, OutputStream destination) throws IOException argument
130 bytesRead = source.read(buffer, 0, buffer.length);
/external/eigen/bench/btl/libs/BLAS/
H A Dc_interface_base.h58 static inline void copy_vector(const gene_vector & source, gene_vector & cible, int N){ argument
60 cible[i]=source[i];
63 static inline void copy_matrix(const gene_matrix & source, gene_matrix & cible, int N){ argument
66 cible[i+N*j] = source[i+N*j];
/external/emma/core/java12/com/vladium/util/
H A DFiles.java245 * Renames 'source' to 'target' [intermediate directories are created if necessary]. If
252 * @param source file descriptor [file must exist]
257 * @throws IllegalArgumentException if 'source' is null or file does not exist
260 public static boolean renameFile (final File source, final File target, final boolean overwrite) argument
262 if ((source == null) || ! source.exists ())
263 throw new IllegalArgumentException ("invalid input source: [" + source + "]");
279 if ((targetDir != null) && ! targetDir.equals (source.getParentFile ()))
285 return source
[all...]
/external/google-breakpad/src/processor/
H A Dsimple_serializer-inl.h4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
64 static const char *Read(const char *source, bool *value) { argument
65 *value = ((*source) == 0 ? false : true);
66 return ++source;
/external/guava/guava/src/com/google/common/io/
H A DFileBackedOutputStream.java45 private final ByteSource source; field in class:FileBackedOutputStream
97 source = new ByteSource() {
112 source = new ByteSource() {
128 return source;
/external/guice/core/src/com/google/inject/internal/
H A DAbstractBindingProcessor.java66 InjectorImpl injector, Key<T> key, Object source) {
67 return new UntargettedBindingImpl<T>(injector, key, source);
129 private <T> void validateKey(Object source, Key<T> key) { argument
131 key.getTypeLiteral().getRawType(), source, errors);
139 final Object source; field in class:AbstractBindingProcessor.Processor
145 source = binding.getSource();
152 validateKey(source, key);
160 binding.getInjector().initializeBinding(binding, errors.withSource(source));
65 invalidBinding( InjectorImpl injector, Key<T> key, Object source) argument
H A DBindingBuilder.java46 public BindingBuilder(Binder binder, List<Element> elements, Object source, Key<T> key) { argument
47 super(binder, elements, source, key);
H A DBindingImpl.java34 private final Object source; field in class:BindingImpl
38 public BindingImpl(InjectorImpl injector, Key<T> key, Object source, argument
42 this.source = source;
47 protected BindingImpl(Object source, Key<T> key, Scoping scoping) { argument
50 this.source = source;
60 return source;
112 .add("source", source)
[all...]
H A DInitializer.java53 /** Maps instances that need injection to a source that registered them */
62 * @param source the source location that this injection was requested
65 Object source, Set<InjectionPoint> injectionPoints) {
66 checkNotNull(source);
79 injector, instance, binding == null ? null : binding.getKey(), provisionCallback, source);
124 private final Object source; field in class:Initializer.InjectableReference
129 ProvisionListenerStackCallback<T> provisionCallback, Object source) {
134 this.source = checkNotNull(source, "sourc
64 requestInjection(InjectorImpl injector, T instance, Binding<T> binding, Object source, Set<InjectionPoint> injectionPoints) argument
128 InjectableReference(InjectorImpl injector, T instance, Key<T> key, ProvisionListenerStackCallback<T> provisionCallback, Object source) argument
[all...]
H A DInstanceBindingImpl.java39 public InstanceBindingImpl(InjectorImpl injector, Key<T> key, Object source, argument
42 super(injector, key, source, internalFactory, Scoping.EAGER_SINGLETON);
48 public InstanceBindingImpl(Object source, Key<T> key, Scoping scoping, argument
50 super(source, key, scoping);
94 .add("source", getSource())
H A DInternalContext.java73 public Dependency<?> pushDependency(Dependency<?> dependency, Object source) { argument
76 state.add(dependency, source);
87 public void pushState(Key<?> key, Object source) { argument
88 state.add(key, source);
123 public void add(Object dependencyOrKey, Object source) { argument
128 elements[size++] = source;
H A DLinkedBindingImpl.java34 public LinkedBindingImpl(InjectorImpl injector, Key<T> key, Object source, argument
37 super(injector, key, source, internalFactory, scoping);
41 public LinkedBindingImpl(Object source, Key<T> key, Scoping scoping, Key<? extends T> targetKey) { argument
42 super(source, key, scoping);
73 .add("source", getSource())
H A DLinkedProviderBindingImpl.java36 private LinkedProviderBindingImpl(InjectorImpl injector, Key<T> key, Object source, argument
40 super(injector, key, source, internalFactory, scoping);
45 public LinkedProviderBindingImpl(InjectorImpl injector, Key<T> key, Object source, argument
48 this(injector, key, source, internalFactory, scoping, providerKey, null);
51 LinkedProviderBindingImpl(Object source, Key<T> key, Scoping scoping, argument
53 super(source, key, scoping);
59 Object source, InternalFactory<? extends T> internalFactory, Scoping scoping,
62 return new LinkedProviderBindingImpl<T>(injector, key, source, internalFactory, scoping,
100 .add("source", getSource())
58 createWithInitializer(InjectorImpl injector, Key<T> key, Object source, InternalFactory<? extends T> internalFactory, Scoping scoping, Key<? extends javax.inject.Provider<? extends T>> providerKey, DelayedInitialize delayedInitializer) argument
H A DMembersInjectorImpl.java74 final Object source,
83 context.pushState(key, source);
70 injectAndNotify(final T instance, final Errors errors, final Key<T> key, final ProvisionListenerStackCallback<T> provisionCallback, final Object source, final boolean toolableOnly) argument
H A DPrivateElementsImpl.java51 private final Object source; field in class:PrivateElementsImpl
63 public PrivateElementsImpl(Object source) { argument
64 this.source = checkNotNull(source, "source");
68 return source;
115 PrivateBinder privateBinder = binder.withSource(source).newPrivateBinder();
129 Object source = exposedKeysToSources.get(key);
130 checkArgument(source != null, "%s not exposed by %s.", key, this);
131 return source;
[all...]

Completed in 585 milliseconds

<<11121314151617181920>>