HomeSort by: relevance | last modified time | path
    Searched defs:After (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearchOptions.h 59 /// Like System, but searched after the system directories.
60 After
158 /// The time (in seconds) after which an unused module file will be
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 52 // Suggest fixit for "<::" after a cast.
133 /// the nested-name-specifier after parsing it.
269 // 'identifier <' after it.
398 // If the token after the colon isn't an identifier, it's still an
759 const Token After = GetLookAheadToken(2);
764 After.isOneOf(tok::r_square, tok::comma)) ||
766 After.is(tok::r_square)) ||
773 if (Next.is(tok::identifier) && After.is(tok::identifier))
1042 // Back out the lexing of the token after the initializer.
1074 // after the identifier otherwise
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
StandardInstrumentations.h 37 /// Instrumentation to print IR before/after passes.
39 /// Needs state to be able to print module after pass that invalidates IR unit
61 /// Stack of Module description, enough to print the module after a given
143 const CFG &After);
166 // 4. When a pass changes the IR (given both before and after representations
182 // Compare the IR from before the pass after the pass.
204 // Called before and after a pass to get the representation of the IR.
211 const IRUnitT &Before, const IRUnitT &After,
219 // Called to compare the before and after representations of the IR.
220 virtual bool same(const IRUnitT &Before, const IRUnitT &After) = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 38 // pack constant values compactly before and after each virtual table.
87 // The bits that will be stored before and after a particular vtable.
101 // The bit vector that will be laid out after the vtable.
102 AccumBitVector After;
149 // The minimum byte offset after the address point. This covers the bytes in
150 // the vtable object after the address point (e.g. the vtable for the current
162 // The number of bytes allocated (for the vtable plus the byte array) after
165 return minAfterBytes() + TM->Bits->After.Bytes.size();
174 // Set the bit at position Pos after the address point to RetVal.
177 TM->Bits->After.setBit(Pos - 8 * minAfterBytes(), RetVal)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 173 /// \returns The insertion point after the barrier.
184 /// \returns The insertion point after the barrier.
200 /// \returns The insertion position *after* the parallel.
268 /// \param Step Loop counter increment after each iteration; negative
308 /// After collapsing with Loops={i,j}, the loop is changed to
359 /// loop and calls to an OpenMP runtime finalization function after the loop.
366 /// \param NeedsBarrier Indicates whether a barrier must be inserted after
391 /// \param NeedsBarrier Indicates whether a barrier must be insterted after
396 /// \returns Point where to insert code after the loop.
411 /// loop and calls to an OpenMP runtime finalization function after the loop
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
ELFObjHandler.cpp 362 /// @param After Text to append at the end of Err's error message.
363 Error appendToError(Error Err, StringRef After) {
367 Stream << " " << After;
373 /// After populating the struct, the members are validated with
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 113 // We are not after parsing a #.
116 // We are not after parsing #include.
324 /// after trigraph expansion and escaped-newline folding. In particular, this
365 /// after trigraph expansion and escaped-newline folding. In particular, this
417 // NOTE: this can be checked even after testing for an IdentifierInfo.
771 /// is generally used when a diagnostic needs to point just after a
1156 /// GetTrigraphCharForLetter - Given a character that occurs after a ?? pair,
1269 /// Checks that the given token is the first token that occurs after the
1271 /// immediately after the specified token. If the token is not found or the
1311 /// the char after it
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml 365 | After of 'b
795 | After bb ->
806 | After bb -> fold_right_global_range f (global_pred bb) e (f bb init)
862 | After fn ->
873 | After fn -> fold_right_function_range f (function_pred fn) e (f fn init)
929 | After p ->
940 | After p -> fold_right_param_range f (f p init) (param_pred p) e
997 | After bb ->
1008 | After bb -> fold_right_block_range f (f bb init) (block_pred bb) e
1053 | After i -
    [all...]
llvm.mli 392 (** [After b] and [At_start a] specify positions from the end of the ['b] list
397 | After of 'b
415 The handler will receive the reason for termination as a string. After
1493 [After gv].
1616 (** [function_pred gv] returns the function list position preceding [After gv].
1706 (** [param_pred gv] returns the function list position preceding [After gv].
1741 (** [move_block_after pos bb] moves the basic block [bb] after [pos].
1784 (** [block_pred bb] returns the basic block list position preceding [After bb].
1845 (** [instr_pred i] returns the instruction list position preceding [After i].
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 176 LLVM_DEBUG(dbgs() << "After outlining: " << *OuterFn << "\n");
181 // For compability with the clang CG we move the outlined function after the
187 // made our own entry block after all.
597 LLVM_DEBUG(dbgs() << "After body codegen: " << *OuterFn << "\n");
793 // Configure it to insert immediately after the fake use of zero address so
816 LLVM_DEBUG(dbgs() << "After privatization: " << *OuterFn << "\n");
923 // section_loop.after:
944 // terminators after switch/case
960 // ExitBB after LoopAfterBB because LoopAfterBB is used for FinalizationCB,
1080 BasicBlock *After
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 5996 // These are valid if SecondArgIsLastNamedArgument is false after the next
8012 // the format string after this point, however, as we will like just get
8966 SourceLocation After = S.getLocForEndOfToken(E->getEndLoc());
8967 Hints.push_back(FixItHint::CreateInsertion(After, ")"));
10560 // Maybe the cast was important, check after the other cases.
13480 // We then visit the children of the current node. After that notePostUse or
13633 // [...] the assignment is sequenced after the value computation
13798 // as side effect in the true and false expressions after the visition
14556 // It is possible that the type of the base expression after
14592 // computing the next address after the end of the array is legal an
    [all...]

Completed in 52 milliseconds