HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 201 - 225 of 5728) sorted by null

1 2 3 4 5 6 7 891011>>

  /bionic/libc/kernel/uapi/linux/
ivtvfb.h 11 *** source file (e.g. under external/kernel-headers/original/) then
24 void __user * source; member in struct:ivtvfb_dma_frame
  /external/antlr/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
Main.java 66 public static void parse(File source) throws Exception
76 if (source.isDirectory())
78 System.out.println("Directory: " + source.getAbsolutePath());
79 String files[] = source.list();
83 parse(new File(source, files[i]));
93 String sourceFile = source.getName();
103 parseSource(source.getAbsolutePath());
116 public static void parseSource(String source) throws Exception
123 // and tell the lexer that that is the character source.
127 lexer.setCharStream(new ANTLRFileStream(source, "UTF8"))
    [all...]
  /external/brotli/java/org/brotli/wrapper/dec/
BrotliDecoderChannel.java 26 * @param source underlying source
30 public BrotliDecoderChannel(ReadableByteChannel source, int bufferSize) throws IOException {
31 super(source, bufferSize);
34 public BrotliDecoderChannel(ReadableByteChannel source) throws IOException {
35 this(source, DEFAULT_BUFFER_SIZE);
  /external/cldr/tools/java/org/unicode/cldr/draft/
CompoundTransform.java 21 public String transform(String source) {
23 source = transforms.get(i).transform(source);
25 return source;
  /external/deqp/modules/gles31/functional/
es31fNegativePreciseTests.cpp 5 * Copyright 2016 The Android Open Source Project
67 std::ostringstream source; local
69 source << glu::getGLSLVersionDeclaration(version) << "\n"
74 case TEST_PRECISE_AS_MACRO_NAME: source << "#define precise 0\n"; break;
78 case TEST_PRECISE_MACRO_AND_ARGUMENT: source << "#define precise aName\n"; break;
86 source << (supportsES32 ? "" : "#extension GL_EXT_geometry_shader : enable\n")
91 source << (supportsES32 ? "" : "#extension GL_EXT_tessellation_shader : enable\n")
96 source << (supportsES32 ? "" : "#extension GL_EXT_tessellation_shader : enable\n")
108 source << "\n"
116 source << "\n
147 const char* const source = shaderSource.c_str(); local
    [all...]
  /external/freetype/include/freetype/
ftbzip2.h 65 * source ::
66 * The source stream.
72 * The source stream must be opened _before_ calling this function.
75 * *not* call `FT_Stream_Close' on the source stream. None of the stream
92 FT_Stream source );
ftlzw.h 64 * source ::
65 * The source stream.
71 * The source stream must be opened _before_ calling this function.
74 * *not* call `FT_Stream_Close' on the source stream. None of the stream
91 FT_Stream source );
  /external/guava/guava/src/com/google/common/eventbus/
SubscriberFindingStrategy.java 30 * Finds all suitable event subscriber methods in {@code source}, organizes them
33 * @param source object whose subscribers are desired.
37 * @throws IllegalArgumentException if {@code source} is not appropriate for
40 Multimap<Class<?>, EventSubscriber> findAllSubscribers(Object source);
  /external/guice/core/src/com/google/inject/internal/
ErrorHandler.java 29 void handle(Object source, Errors errors);
  /external/icu/icu4c/source/tools/toolutil/
pkg_gencmn.h 15 createCommonDataFile(const char *destDir, const char *name, const char *entrypointName, const char *type, const char *source, const char *copyRight,
  /external/junit-params/src/main/java/junitparams/
Parameters.java 18 * Whitespace characters are trimmed (use source class or method if You need to provide such parameters)
33 * Example: <code>@Parameters(source = PeopleProvider.class)</code>
35 Class<?> source() default Void.class;
40 * format of the data returned by the method is the same as for the source
  /external/kernel-headers/original/uapi/linux/
ivtvfb.h 31 void __user *source; member in struct:ivtvfb_dma_frame
  /external/libvpx/libvpx/vpx_scale/generic/
gen_scalers.c 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
21 * INPUTS : const unsigned char *source : Pointer to source data.
22 * unsigned int source_width : Stride of source.
30 * FUNCTION : Copies horizontal line of pixels from source to
36 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source,
43 const unsigned char *src = source;
64 void vp8_vertical_band_5_4_scale_c(unsigned char *source,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/tgsi/
invocation.hpp 30 module compile_program(const std::string &source,
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 15 public LogRecord createLogRecord(String message, String source,
18 return new MessageLog(message, source, destination, timeStamp,
22 public LogRecord createLogRecord(String message, String source,
25 return new MessageLog(message, source, destination, timeStamp,
  /external/python/cpython3/Python/clinic/
_warnings.c.h 6 "warn($module, /, message, category=None, stacklevel=1, source=None)\n"
16 Py_ssize_t stacklevel, PyObject *source);
22 static const char * const _keywords[] = {"message", "category", "stacklevel", "source", NULL};
27 PyObject *source = Py_None; local
30 &message, &category, &stacklevel, &source)) {
33 return_value = warnings_warn_impl(module, message, category, stacklevel, source);
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/fakes/
RoboExtendedResponseCache.java 2 * Copyright (C) 2012 The Android Open Source Project
30 * Track an HTTP response being satisfied by {@code source}.
32 * @param source Response source.
34 void trackResponse(RoboResponseSource source);
  /external/skia/src/core/
SkSpriteBlitter.h 2 * Copyright 2006 The Android Open Source Project
4 * Use of this source code is governed by a BSD-style license that can be
22 SkSpriteBlitter(const SkPixmap& source);
35 static SkSpriteBlitter* ChooseL32(const SkPixmap& source, const SkPaint&, SkArenaAlloc*);
36 static SkSpriteBlitter* ChooseL565(const SkPixmap& source, const SkPaint&, SkArenaAlloc*);
37 static SkSpriteBlitter* ChooseLA8(const SkPixmap& source, const SkPaint&, SkArenaAlloc*);
  /external/skqp/src/core/
SkSpriteBlitter.h 2 * Copyright 2006 The Android Open Source Project
4 * Use of this source code is governed by a BSD-style license that can be
22 SkSpriteBlitter(const SkPixmap& source);
35 static SkSpriteBlitter* ChooseL32(const SkPixmap& source, const SkPaint&, SkArenaAlloc*);
36 static SkSpriteBlitter* ChooseL565(const SkPixmap& source, const SkPaint&, SkArenaAlloc*);
37 static SkSpriteBlitter* ChooseLA8(const SkPixmap& source, const SkPaint&, SkArenaAlloc*);
  /external/swiftshader/src/Main/
FrameBufferGDI.hpp 29 void flip(sw::Surface *source) override;
30 void blit(sw::Surface *source, const Rect *sourceRect, const Rect *destRect) override;
32 void flip(HWND windowOverride, sw::Surface *source) override;
33 void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *destRect) override;
FrameBufferWin.hpp 36 void flip(sw::Surface *source) override = 0;
37 void blit(sw::Surface *source, const Rect *sourceRect, const Rect *destRect) override = 0;
39 virtual void flip(HWND windowOverride, sw::Surface *source) = 0;
40 virtual void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *destRect) = 0;
  /external/swiftshader/src/WSI/
FrameBufferGDI.hpp 29 void flip(sw::Surface *source) override;
30 void blit(sw::Surface *source, const Rect *sourceRect, const Rect *destRect) override;
32 void flip(HWND windowOverride, sw::Surface *source) override;
33 void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *destRect) override;
FrameBufferWin.hpp 36 void flip(sw::Surface *source) override = 0;
37 void blit(sw::Surface *source, const Rect *sourceRect, const Rect *destRect) override = 0;
39 virtual void flip(HWND windowOverride, sw::Surface *source) = 0;
40 virtual void blit(HWND windowOverride, sw::Surface *source, const Rect *sourceRect, const Rect *destRect) = 0;
  /external/turbine/java/com/google/turbine/parse/
Lexer.java 32 /** Returns the source file for diagnostics. */
33 SourceFile source(); method in interface:Lexer
  /external/v8/src/torque/
source-positions.h 2 // Use of this source code is governed by a BSD-style license that can be
22 SourceId source; member in struct:v8::internal::torque::SourcePosition
33 static const std::string& GetSource(SourceId source) {
34 return Get().sources_[source.id_];
47 return SourceFileMap::GetSource(pos.source) + ":" +

Completed in 830 milliseconds

1 2 3 4 5 6 7 891011>>