HomeSort by relevance Sort by last modified time
    Searched defs:Source (Results 101 - 125 of 173) sorted by null

1 2 3 45 6 7

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/
BiosVideo.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/
EbcExecute.c     [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c     [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 5 // This file is distributed under the University of Illinois Open Source
58 // Find the source location of the first statement in the block, if the block
73 // Find the source location of the last statement in the block, if the block
301 const BinaryOperator *Source;
328 PropagationInfo(const BinaryOperator *Source, EffectiveOp EOp,
332 BinTest.Source = Source;
338 PropagationInfo(const BinaryOperator *Source, EffectiveOp EOp,
343 BinTest.Source = Source;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 5 // This file is distributed under the University of Illinois Open Source
215 NullabilityState(Nullability Nullab, const Stmt *Source = nullptr)
216 : Nullab(Nullab), Source(Source) {}
218 const Stmt *getNullabilitySource() const { return Source; }
224 ID.AddPointer(Source);
233 // Source is the expression which determined the nullability. For example in a
235 // the receiver is nullable. Here the receiver will be the source of the
237 const Stmt *Source;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 5 // This file is distributed under the University of Illinois Open Source
228 // Check the source ranges.
505 // source code, so find an enclosing statement and use its location.
544 CFGElement Source = Block[SFC->getIndex()];
546 switch (Source.getKind()) {
548 return PathDiagnosticLocation(Source.castAs<CFGStmt>().getStmt(),
551 const CFGInitializer &Init = Source.castAs<CFGInitializer>();
556 const CFGAutomaticObjDtor &Dtor = Source.castAs<CFGAutomaticObjDtor>();
561 const CFGDeleteDtor &Dtor = Source.castAs<CFGDeleteDtor>();
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestCLDRFile.java 574 Output<Map<String, Multimap<LdmlDir, Source>>> localeToDirToSource = new Output<>();
575 Map<LdmlDir, Multimap<String, Source>> dirToLocaleToSource = getFiles(localeToDirToSource);
577 for (Entry<String, Multimap<LdmlDir, Source>> e : localeToDirToSource.value.entrySet()) {
582 Map<LdmlDir, Collection<Source>> value = e.getValue().asMap();
583 for (Entry<LdmlDir, Collection<Source>> e2 : value.entrySet()) {
585 Collection<Source> sources = e2.getValue();
594 for (Entry<LdmlDir, Multimap<String, Source>> dirAndLocaleToSource : dirToLocaleToSource.entrySet()) {
596 Multimap<String, Source> localesToDirs = dirAndLocaleToSource.getValue();
597 for (Entry<String, Source> localeAndDir : localesToDirs.entries()) {
602 Source source = localeAndDir.getValue() local
650 Source source; local
718 String source = af.getSourceLocaleID(xpath, status); local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
Iso639Data.java 46 static Map<String, Source> toSource;
136 * This indicates the source of the language subtag.
141 public enum Source {
149 public static Source getSource(String languageSubtag) {
156 Source result = toSource.get(languageSubtag);
158 return Source.ISO_639_3;
303 toSource = new HashMap<String, Source>();
304 toSource.put("sh", Source.ISO_639_1); // add deprecated language
444 toSource.put(languageSubtag, Source.ISO_639_2);
456 toSource.put(languageSubtag, languageSubtag.length() == 2 ? Source.ISO_639_1 : Source.ISO_639_2)
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcRobustBufferAccessBehaviorTests.cpp 315 * @param compute_shader Compute shader source code
316 * @param fragment_shader Fragment shader source code
317 * @param geometry_shader Geometry shader source code
318 * @param tesselation_control_shader Tesselation control shader source code
319 * @param tesselation_evaluation_shader Tesselation evaluation shader source code
320 * @param vertex_shader Vertex shader source code
485 * @param source Source code
487 void Shader::Init(glw::GLenum stage, const std::string& source)
489 if (true == source.empty()
1206 const char* source = "${VERSION}\\n" local
1221 const char* source = "${VERSION}\\n" local
1549 const GLchar* source = "${VERSION}\\n" local
1602 static const GLchar* source = "${VERSION}\\n" local
1636 static const GLchar* source = "${VERSION}\\n" local
1804 static const GLchar* source = local
2028 static const GLchar* source = local
2273 static const GLchar* source = local
2552 static const GLchar* source = local
3297 static const GLchar* source = "${VERSION}\\n" local
3568 static const GLchar* source = "${VERSION}\\n" local
    [all...]
  /external/libtextclassifier/annotator/
types.h 2 * Copyright (C) 2018 The Android Open Source Project
258 enum class Source { OTHER, KNOWLEDGE, DURATION, DATETIME };
266 // The source of the annotation, used in conflict resolution.
267 Source source = Source::OTHER; member in struct:libtextclassifier3::AnnotatedSpan
  /external/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 5 // This file is distributed under the University of Illinois Open Source
111 /// source). This is important and must not be violated (or we have to
164 /// \brief Index of the source of the dependence in the InstMap vector.
165 unsigned Source;
171 Dependence(unsigned Source, unsigned Destination, DepType Type)
172 : Source(Source), Destination(Destination), Type(Type) {}
174 /// \brief Return the source instruction of the dependence.
794 return LAI.getDepChecker().getMemoryInstructions()[Source];
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 5 // This file is distributed under the University of Illinois Open Source
444 // Handle Cast instructions. Only see through Cast when the source operand is
445 // PHI or Cmp and the source type is i1 to save the compilation time.
447 Value *Source = CI->getOperand(0);
448 if (!Source->getType()->isIntegerTy(1))
450 if (!isa<PHINode>(Source) && !isa<CmpInst>(Source))
452 ComputeValueKnownInPredecessors(Source, BB, Result, Preference, CxtI);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCDwarf.h 5 // This file is distributed under the University of Illinois Open Source
61 /// The source code of the file. Non-owning reference to data allocated in
63 Optional<StringRef> Source;
228 Optional<StringRef> &Source,
260 MD5::MD5Result *Checksum, Optional<StringRef> Source) {
267 Header.RootFile.Source = Source;
269 Header.HasSource = Source.hasValue();
273 MD5::MD5Result *Checksum, Optional<StringRef> Source) {
274 return cantFail(Header.tryGetFile(Directory, FileName, Checksum, Source));
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/IndustryStandard/
Acpi2_0.h 308 // Interrupt Source Override Structure
314 UINT8 Source;
320 // Non-Maskable Interrupt Source Structure
Acpi3_0.h 326 // Interrupt Source Override Structure
332 UINT8 Source;
362 // Non-Maskable Interrupt Source Structure
435 // Platform Interrupt Source Flags.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
Acpi2_0.h 295 // Interrupt Source Override Structure
301 UINT8 Source;
307 // Non-Maskable Interrupt Source Structure
Acpi3_0.h 333 // Interrupt Source Override Structure
339 UINT8 Source;
369 // Non-Maskable Interrupt Source Structure
442 // Platform Interrupt Source Flags.
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Acpi10.h 568 /// Interrupt Source Override Structure.
574 UINT8 Source;
580 /// Non-Maskable Interrupt Source Structure.
Acpi20.h 321 /// Interrupt Source Override Structure
327 UINT8 Source;
333 /// Non-Maskable Interrupt Source Structure
Acpi30.h 366 /// Interrupt Source Override Structure
372 UINT8 Source;
402 /// Non-Maskable Interrupt Source Structure
475 /// Platform Interrupt Source Flags.
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 5 // This file is distributed under the University of Illinois Open Source
1057 /// The destination is a pointer to a field, the source is the value to store.
1062 Store(SExpr *P, SExpr *V) : SExpr(COP_Store), Dest(P), Source(V) {}
1063 Store(const Store &S, SExpr *P, SExpr *V) : SExpr(S), Dest(P), Source(V) {}
1068 SExpr *source() { return Source; } // Value to store function in class:clang::threadSafety::Store
1069 const SExpr *source() const { return Source; } function in class:clang::threadSafety::Store
1074 auto Nv = Vs.traverse(Source, Vs.subExprCtx(Ctx));
1083 return Cmp.compare(source(), E->source())
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 5 // This file is distributed under the University of Illinois Open Source
1106 /// external source.
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 5 // This file is distributed under the University of Illinois Open Source
205 /// errors in the source that occurs in the preamble), the number of
614 // Only record the diagnostic if it's part of the source manager we know
616 // FIXME: In the long run, ee don't want to drop source managers from modules.
722 // source, so that declarations will be deserialized from the
724 // We need the external source to be set up before we read the AST, because
755 // Tell the diagnostic client that we have started a source file.
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cBufferStorageTests.cpp 223 void Init(glw::GLenum stage, const std::string& source);
232 static void Source(const glw::Functions& gl, glw::GLuint id, const std::string& source);
979 * @param compute_shader Compute shader source code
980 * @param fragment_shader Fragment shader source code
981 * @param geometry_shader Geometry shader source code
982 * @param tesselation_control_shader Tesselation control shader source code
983 * @param tesselation_evaluation_shader Tesselation evaluation shader source code
984 * @param vertex_shader Vertex shader source code
1146 * @param source Source cod
    [all...]
gl4cMultiBindTests.cpp 55 * @param source As specified in GL spec.
63 void GLW_APIENTRY debug_proc(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei /* length */,
72 switch (source)
250 void Init(glw::GLenum stage, const std::string& source);
259 static void Source(const glw::Functions& gl, glw::GLuint id, const std::string& source);
665 * @param compute_shader Compute shader source code
666 * @param fragment_shader Fragment shader source code
667 * @param geometry_shader Geometry shader source code
668 * @param tesselation_control_shader Tesselation control shader source cod
1518 std::string source = cs; local
    [all...]

Completed in 1938 milliseconds

1 2 3 45 6 7