HomeSort by relevance Sort by last modified time
    Searched full:includer (Results 1 - 25 of 47) sorted by null

1 2

  /external/clang/test/VFS/Inputs/
public_header.h 2 #import "public_header3.h" // includer-relative
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
counting_includer.h 24 // An Includer that counts how many #include directives it saw.
25 class CountingIncluder : public glslang::TShader::Includer {
41 glslang::TShader::Includer::IncludeResult* include(
42 const char* requested_source, glslang::TShader::Includer::IncludeType type,
51 void releaseInclude(glslang::TShader::Includer::IncludeResult* result) final {
59 // glslang::TShader::Includer::include.
60 virtual glslang::TShader::Includer::IncludeResult* include_delegate(
61 const char* requested_source, glslang::TShader::Includer::IncludeType type,
66 glslang::TShader::Includer::IncludeResult* result) = 0;
compiler.h 142 // includer.
169 CountingIncluder& includer, OutputType output_type,
190 // Any #include directives are processed with the given includer.
199 CountingIncluder& includer) const;
  /external/parameter-framework/upstream/schemas/
FileIncluder.xsd 11 This path may be absolute or relative to the path of the includer file.</xs:documentation>
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/src/
shaderc.cc 161 // A bridge between the libshaderc includer and libshaderc_util includer.
181 glslang::TShader::Includer::IncludeType type) {
183 case glslang::TShader::Includer::EIncludeRelative:
185 case glslang::TShader::Includer::EIncludeStandard:
201 virtual glslang::TShader::Includer::IncludeResult* include_delegate(
203 glslang::TShader::Includer::IncludeType type,
208 return new glslang::TShader::Includer::IncludeResult{
218 return new glslang::TShader::Includer::IncludeResult{
227 glslang::TShader::Includer::IncludeResult* result) override
380 InternalFileIncluder includer; local
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Public/
ShaderLang.h 310 // 2. Call parse with an Includer.
313 // the Includer's include method with the requested include name
319 class Includer {
332 // include. For example, in a file system-based includer, full resolution
337 // Includer producing this IncludeResult retains ownership of the
355 // file_data field. The Includer retains ownership of the contents
367 virtual ~Includer() {} // Pacify -Werror=non-virtual-dtor
372 class ForbidInclude : public Includer {
388 TShader::ForbidInclude includer; local
389 return parse(res, defaultVersion, defaultProfile, forceDefaultVersionAndProfile, forwardCompatible, messages, includer);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/include/shaderc/
shaderc.hpp 166 // A C++ version of the libshaderc includer interface.
179 // Sets the includer instance for libshaderc to call during compilation, as
181 // are routed to this includer's methods.
182 void SetIncluder(std::unique_ptr<IncluderInterface>&& includer) {
183 includer_ = std::move(includer);
188 auto* includer = static_cast<IncluderInterface*>(user_data);
189 return includer->GetInclude(requested_source,
194 auto* includer = static_cast<IncluderInterface*>(user_data);
195 return includer->ReleaseInclude(include_result);
shaderc.h 168 // to an "includer" on the client side. The first callback processes an
169 // inclusion request, and returns an include result. The includer owns
178 // includer. For example, if the includer maps source names to files in
195 // An includer callback type for mapping an #include request to an include
200 // the #include request. The includer owns the result object and its contents,
207 // An includer callback type for destroying an include result.
211 // Sets includer callback functions.
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpContext.h 126 TPpContext(TParseContextBase&, const std::string& rootFileName, TShader::Includer&);
295 TShader::Includer& includer; member in class:glslang::TPpContext
444 TShader::Includer::IncludeResult* includedFile,
499 TShader::Includer::IncludeResult* includedFile_;
524 void push_include(TShader::Includer::IncludeResult* result)
532 TShader::Includer::IncludeResult* include = includeStack.top();
534 includer.releaseInclude(include);
552 std::stack<TShader::Includer::IncludeResult*> includeStack;
PpContext.cpp 86 TPpContext::TPpContext(TParseContextBase& pc, const std::string& rootFileName, TShader::Includer& inclr) :
87 preamble(0), strings(0), parseContext(pc), includer(inclr), inComment(false),
  /toolchain/binutils/binutils-2.25/include/cgen/
basic-modes.h 27 It also provides access to stdint.h (*1) so the includer doesn't have
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 151 * @param includer the resource name to return included layouts for
154 private List<String> getIncludesFrom(String includer) {
157 return mIncludes.get(includer);
398 String includer = entry.getKey(); local
401 setIncludedBy(includer, included);
620 * @param includer the layout including other layouts
625 /* package */ void setIncluded(String includer, List<String> included, boolean detectCycles) {
627 List<String> oldIncludes = mIncludes.get(includer);
632 includers.remove(includer);
637 mIncludes.put(includer, included)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/src/
compiler.cc 76 CountingIncluder& includer, OutputType output_type,
108 PreprocessShader(error_tag, input_source_string, preamble, includer);
126 includer.num_include_directives(), is_for_next_line);
164 kNotForwardCompatible, message_rules_, includer);
230 const string_piece& shader_preamble, CountingIncluder& includer) const {
250 &preprocessed_shader, includer);
  /build/make/core/
aux_executable.mk 40 # The includer of this file will define a rule to build this target.
dynamic_binary.mk 25 # The includer of this file will define a rule to build this target.
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 254 /** \class Includer
255 * \brief class Includer moves the iterator downward.
257 struct Includer : public Mover {
267 static Includer Downward;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
errno.h 25 /* The includer defined __need_Emath if he wants only the definitions
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
errno.h 25 /* The includer defined __need_Emath if he wants only the definitions
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
ShaderLang.cpp 178 TShader::ForbidInclude includer;
179 TPpContext ppContext(parseContext, "", includer);
562 TShader::Includer& includer
686 TPpContext ppContext(*parseContext, names[numPre]? names[numPre]: "", includer);
    [all...]
  /external/bison/src/
state.h 206 /* When an includer (such as ielr.c) needs to store states in a list, the
207 includer can define struct state_list as the list node structure and can
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/stringlib/
localeutil.h 121 * This name won't be used, the includer of this file should define
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/stringlib/
localeutil.h 121 * This name won't be used, the includer of this file should define
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
localeutil.h 121 * This name won't be used, the includer of this file should define
  /external/clang/include/clang/Basic/
SourceManagerInternals.h 46 /// If this is 0 then there is no virtual \#includer.
  /external/python/cpython2/Objects/stringlib/
localeutil.h 106 * This name won't be used, the includer of this file should define

Completed in 670 milliseconds

1 2