Searched refs:def (Results 1 - 25 of 398) sorted by relevance

1234567891011>>

/external/zlib/src/examples/
H A Dfitblk.c70 /* compress from file to def until provided buffer is full or end of
73 local int partcompress(FILE *in, z_streamp def) argument
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
86 ret = deflate(def, flush);
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
92 /* recompress from inf's input to def's output; the input for inf and
93 the output for def are set in those structures before calling;
96 local int recompress(z_streamp inf, z_streamp def) argument
113 def
134 z_stream def, inf; /* zlib deflate and inflate states */ local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb17 def test_group
21 def test_directory
25 def local_path( *parts )
29 def output_directory( name = test_group )
43 def import( ruby_file )
49 def import_grammar_targets( grammar )
62 def add_default_compile_option( name, value )
80 def const_missing( name )
101 def grammars
105 def grammar_coun
[all...]
H A Dgrammar.rb23 def dependencies
27 def depends_on( path )
33 def stale?
53 def self.global_dependency( path )
59 def self.inline( source, *args )
66 def initialize( path, options = {} )
83 def lexer_class_name
87 def lexer_file_name
95 def parser_class_name
99 def parser_file_nam
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb9 def snake_case( str )
17 def parse_version( version_string )
23 def tidy( here_doc, flow = false )
32 def silence_warnings
45 def shared_attribute( name, *additional_members )
54 def #{ name }= value
66 def abstract( name, message = nil )
70 def #{ name }( * )
76 def deprecate( name, extra_message = nil )
87 def #{ nam
[all...]
H A Dtemplate.rb15 def template_library
19 def return_scope_members
23 def load_templates( group_file )
28 def define_template( name, source, &block )
33 def self.included( klass )
38 def initialize( input, options = {} )
48 def create_template( source, values = {} )
52 def fetch_template( name, values = {} )
60 def self.included( klass )
67 def cast_inpu
[all...]
H A Ddebug.rb105 def initialize
117 def reset!
146 def self.included( klass )
149 def klass.debug?
158 def initialize( stream, options = {} )
171 def rule_level
175 def cyclic_decision?
179 def cyclic_decision=( flag )
186 def debug_listener=( dbg )
191 def begin_resyn
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dast-builder.rb10 def self.included( klass )
11 def klass.return_scope_members
16 def initialize( input, options = {} )
28 def subtree_stream( desc, element = nil )
32 def token_stream( desc, element = nil )
36 def node_stream( desc, element = nil )
/external/doclava/res/assets/templates/components/
H A Dmasthead.cs1 <?cs def:custom_masthead() ?>
12 <?cs /def ?
/external/libvpx/
H A Dargs.c36 a.def = NULL;
40 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv) argument
49 if (def->short_name
50 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
51 && !strcmp(arg.argv[0] + 1, def->short_name))
55 arg.val = def->has_val ? arg.argv[1] : NULL;
56 arg.argv_step = def->has_val ? 2 : 1;
58 else if (def->long_name)
60 int name_len = strlen(def->long_name);
64 && !strncmp(arg.argv[0] + 2, def
118 const struct arg_def *def = *defs; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb18 def initialize( *listeners )
23 def add( *listeners )
27 def add_child( root, child )
33 def backtrack( level )
39 def become_root( new_root, old_root )
45 def begin_backtrack( level )
51 def begin_resync()
57 def commence()
63 def consume_hidden_token( tree )
69 def consume_nod
[all...]
H A Dsocket.rb24 def initialize( recognizer, options = {} )
34 def log!( message, *interpolation_arguments )
38 def handshake
70 def write( message, *interpolation_arguments )
77 def ack
83 def transmit( event, *interpolation_arguments )
91 def commence
95 def terminate
101 def enter_rule( grammar_file_name, rule_name )
105 def enter_alternativ
[all...]
H A Dtrace-event-listener.rb17 def initialize( adaptor = nil, device = $stderr )
23 def record( event_message, *interpolation_arguments )
28 def enter_alternative( alt_number )
32 def enter_rule( grammar_file_name, rule_name )
36 def exit_rule( grammar_file_name, rule_name )
40 def enter_subrule( decision_number )
44 def exit_subrule( decision_number )
48 def location( line, position )
52 def consume_node( tree )
57 def loo
[all...]
/external/webkit/Tools/Scripts/
H A Dmake-gypi42 def find_source_code():
54 def build_file_line(file_name, indent):
57 def build_file_list(source_code, indent):
60 def build_gypi(project):
65 def main():
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb13 def self.wrap( adaptor, debug_listener = nil )
21 def create_with_payload( payload )
27 def create_from_token( token_type, from_token, text = nil )
33 def create_from_type( token_type, text )
39 def create_error_node( input, start, stop, exc )
45 def copy_tree( tree )
51 def simulate_tree_construction( tree )
60 def copy_node( tree_node )
66 def create_flat_list
72 def add_chil
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DTechnique.java49 private TechniqueDef def; field in class:Technique
61 * @param def The technique definition being implemented.
63 public Technique(Material owner, TechniqueDef def) { argument
65 this.def = def;
66 if (def.isUsingShaders()) {
86 return def;
115 String defineName = def.getShaderParamDefine(paramName);
128 String defineName = def.getShaderParamDefine(paramName);
186 if (def
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-recognizers.rb16 def initialize
21 def next_token
26 def test_iterator_interface
41 def test_init
51 def testGetRuleInvocationStack(self) | 10 | [x]
53 def testIteratorInterface(self) | 24 | [x]
55 def testInit(self) | 56 | [x
H A Dtest-streams.rb12 def setup
16 def test_size
20 def test_index
24 def test_consume
76 def test_reset
85 def test_look
102 def test_substring
109 def test_seek_forward
117 def test_mark
128 def test_release_las
[all...]
H A Dtest-tree-wizard.rb16 def test_open
24 def test_close
32 def test_percent
40 def test_dot
48 def test_eof
56 def test_id
64 def test_arg
72 def test_error
87 def setup
94 def test_single_nod
[all...]
H A Dtest-scope.rb9 def setup
15 def test_members
21 def test_defaults_without_arguments
27 def test_C_defaults_with_arguments
34 def test_B_defaults_with_arguments
39 def test_A_defaults_with_arguments
/external/webkit/Source/gyp/
H A Dconfigure36 def chdir_to_source():
40 def gyp():
45 def __init__(self, name):
48 def name(self):
51 def _gyp_directory(self):
54 def _gyp_file_for_port(self, port):
60 def inputs(self, port):
67 def _output_for_port(self, port):
74 def output(self, port):
77 def should_generat
[all...]
/external/webkit/Tools/BuildSlaveSupport/win/
H A Dkill-old-processes28 def main():
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
H A DSAXUtil.java47 * def.
50 * @param def
54 public static int parseInt(String i, int def) throws SAXException{ argument
56 return def;
78 public static float parseFloat(String f, float def) throws SAXException{ argument
80 return def;
102 public static boolean parseBool(String bool, boolean def) throws SAXException{ argument
104 return def;
112 public static String parseString(String str, String def){ argument
114 return def;
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DRemoteObjectDefMessage.java55 for (ObjectDef def : objects){
56 sb.append("\t").append(def).append("\n");
/external/webkit/Tools/DumpRenderTree/
H A Dwscript49 def set_options(opt):
52 def configure(conf):
55 def build(bld):
/external/webkit/Tools/wx/browser/
H A Dwscript35 def set_options(opt):
38 def configure(conf):
41 def build(bld):

Completed in 316 milliseconds

1234567891011>>