HomeSort by relevance Sort by last modified time
    Searched refs:Endif (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 74 /// directive. if a \#if/\#endif block is fully contained within the range,
98 void Endif(SourceLocation Loc, SourceLocation IfLoc) override;
103 #endif // LLVM_CLANG_LEX_PPCONDITIONALDIRECTIVERECORD_H
PPCallbacks.h 266 /// \#if/\#else directive and ends after the \#endif/\#else directive.
316 /// \brief Hook called whenever an \#endif is seen.
319 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
500 /// \brief Hook called whenever an \#endif is seen.
501 void Endif(SourceLocation Loc, SourceLocation IfLoc) override {
502 First->Endif(Loc, IfLoc);
503 Second->Endif(Loc, IfLoc);
509 #endif
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 113 void PPConditionalDirectiveRecord::Endif(SourceLocation Loc,
PPDirectives.cpp 360 /// file. Lex the rest of the file, until we see an \#endif. If
483 if (Sub == "ndif") { // "endif"
495 CheckEndOfDirective("endif");
498 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
569 // Finally, if we are out of the conditional (saw an #endif or ran off the end
585 // Skip to the next '#else', '#elif', or #endif.
587 // We have reached an #endif. Both the '#' and 'endif' tokens
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 60 int Endif;
552 branch->Endif = -1;
557 /* actual instruction is filled in at ENDIF time */
569 /* actual instruction is filled in at ENDIF time */
579 branch->Endif = newip;
581 s->Code->inst[branch->Endif].inst2 = R500_FC_OP_JUMP
588 s->Code->inst[branch->Endif].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1);
608 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1);
612 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1)
    [all...]

Completed in 660 milliseconds