Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1697)

Unified Diff: src/trusted/validator_ragel/test_dfa.h

Issue 9348082: Move unreviewed files to unreviewed subdirectory (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/validator_ragel/system-instructions.def ('k') | src/trusted/validator_ragel/test_dfa.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_ragel/test_dfa.h
===================================================================
--- src/trusted/validator_ragel/test_dfa.h (revision 7794)
+++ src/trusted/validator_ragel/test_dfa.h (working copy)
@@ -1,36 +0,0 @@
-/*
- * Copyright (c) 2012 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/* Common definitions for the generator of all instructions and the definitions
- * of the DFA generated by the parse_dfa.py. */
-
-#ifndef _TEST_DFA_H
-#define _TEST_DFA_H
-
-#include <stdbool.h>
-#include <stdint.h>
-
-struct state {
- uint16_t transitions[256];
- bool is_final;
- bool anyfield_begin;
- bool anyfield_end;
-};
-
-extern struct state states[];
-
-uint16_t NumStates();
-
-void AddRange(int state_idx,
- uint8_t byte_begin,
- uint8_t byte_end,
- uint16_t target);
-
-void InitTransitions();
-
-extern uint16_t start_state;
-
-#endif /* _TEST_DFA_H */
« no previous file with comments | « src/trusted/validator_ragel/system-instructions.def ('k') | src/trusted/validator_ragel/test_dfa.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698