Searched refs:initializer (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10.1/JavaScriptCore-7600.1.17/llvm/
H A DInitializeLLVMWin.cpp48 InitializerFunction initializer = bitwise_cast<InitializerFunction>(GetProcAddress(library, symbolName)); local
49 if (initializer)
50 llvm = initializer(WTFLogAlwaysAndCrash);
H A DInitializeLLVMPOSIX.cpp59 InitializerFunction initializer = bitwise_cast<InitializerFunction>( local
61 if (!initializer) {
67 llvm = initializer(WTFLogAlwaysAndCrash);
/macosx-10.10.1/vim-55/runtime/indent/
H A Docaml.vim19 setlocal indentkeys+=0=and,0=class,0=constraint,0=done,0=else,0=end,0=exception,0=external,0=if,0=in,0=include,0=inherit,0=initializer,0=let,0=method,0=open,0=then,0=type,0=val,0=with,0;;,0>\],0\|\],0>},0\|,0},0\],0)
38 let s:beflet = '^\s*\(initializer\|method\|try\)\|\(\<\(begin\|do\|else\|in\|then\|try\)\|->\|<-\|=\|;\|(\)\s*$'
43 let s:obj = '^\s*\(constraint\|inherit\|initializer\|method\|val\)\>\|\<\(object\|object\s*(.*)\)\s*$'
189 return indent(search('^\s*\(\(exception\|include\|initializer\|method\|open\|type\|val\)\>\|external\>.*:\)', 'bW'))
192 " Indent if current line begins with 'constraint', 'inherit', 'initializer'
194 elseif line =~ '^\s*\(constraint\|inherit\|initializer\|method\)\>'
202 if lline =~ '\(:\|=\|->\|<-\|(\|\[\|{\|{<\|\[|\|\[<\|\<\(begin\|do\|else\|fun\|function\|functor\|if\|initializer\|object\|parser\|private\|sig\|struct\|then\|try\)\|\<object\s*(.*)\)\s*$'
H A Dsml.vim41 let s:beflet = '^\s*\(initializer\|method\|try\)\|\(\<\(begin\|do\|else\|in\|then\|try\)\|->\|;\)\s*$'
46 let s:obj = '^\s*\(constraint\|inherit\|initializer\|method\|val\)\>\|\<\(object\|object\s*(.*)\)\s*$'
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dtty.c178 char *initializer = NULL; /* Script to initialize physical link */ variable
241 { "init", o_string, &initializer,
743 * If we have a non-null connection or initializer script,
753 || initializer != NULL);
756 || initializer != NULL));
817 if ((connector && connector[0]) || initializer) {
827 if (initializer && initializer[0]) {
832 if (device_script(initializer, ttyfd, ttyfd, 0, -1, 0, 0) != 0) {
834 if (device_script(initializer, ttyf
[all...]
H A Dpppd.h440 extern char *initializer; /* Script to initialize physical link */
/macosx-10.10.1/CPANInternal-159.1/Class-Std-Utils-v0.0.3/lib/Class/Std/
H A DUtils.pm31 croak "$class_name initializer must be a nested hash" if ref $specific_inits_ref ne 'HASH';
102 its C<caller> package) in the argument hash, to see if an initializer
104 returns the flattened set of key/value pairs for the class's initializer
105 set, by appending the class-specific initializer subhash to the end of
106 the original generic initializer hash. Appending the specific
187 =item C<< %s initializer must be a nested hash >>
/macosx-10.10.1/configd-699.1.5/libSystemConfiguration/
H A DlibSystemConfiguration_server.c86 static dispatch_once_t initializer = 0; local
90 dispatch_once(&initializer, ^{
/macosx-10.10.1/ncurses-44/ncurses/progs/
H A Dinfocmp.c993 ," -e format output for C initializer"
1034 static char *initializer; local
1037 if (initializer == 0)
1038 initializer = (char *) malloc(strlen(entries->tterm.term_names) +
1041 (void) strcpy(initializer, entries->tterm.term_names);
1042 for (s = initializer; *s != 0 && *s != '|'; s++) {
1048 return initializer;
1548 /* dump as C initializer for the terminal type */
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml246 (* Register all variables and emit their initializer. *)
248 (* Emit the initializer before adding the variable to scope, this
249 * prevents the initializer from referencing the variable itself, and
H A Dparser.ml147 (* read in the optional initializer. *)
/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DParser.cpp472 TreeExpression initializer = parseAssignmentExpression(context); local
474 lastInitializer = initializer;
475 failIfFalse(initializer, "Expected expression as the intializer for the variable '", name->impl(), "'");
477 node = context.createAssignResolve(location, *name, initializer, varStart, varDivot, lastTokenEndPosition());
693 TreeExpression initializer = 0; local
696 initializer = parseAssignmentExpression(context);
697 failIfFalse(!!initializer, "Unable to parse initializer");
699 tail = context.appendConstDecl(location, tail, name, initializer);
H A DASTBuilder.h370 StatementNode* createForLoop(const JSTokenLocation& location, ExpressionNode* initializer, ExpressionNode* condition, ExpressionNode* iter, StatementNode* statements, int start, int end) argument
372 ForNode* result = new (m_vm) ForNode(location, initializer, condition, iter, statements);
535 ConstDeclNode* appendConstDecl(const JSTokenLocation& location, ConstDeclNode* tail, const Identifier* name, ExpressionNode* initializer) argument
537 ConstDeclNode* result = new (m_vm) ConstDeclNode(location, *name, initializer);
653 ExpressionNode* createDeconstructingAssignment(const JSTokenLocation& location, PassRefPtr<DeconstructionPatternNode> pattern, ExpressionNode* initializer) argument
655 return new (m_vm) DeconstructingAssignmentNode(location, pattern.get(), initializer);
H A DNodeConstructors.h904 inline DeconstructingAssignmentNode::DeconstructingAssignmentNode(const JSTokenLocation& location, PassRefPtr<DeconstructionPatternNode> bindings, ExpressionNode* initializer) argument
907 , m_initializer(initializer)
/macosx-10.10.1/CPANInternal-159.1/Class-Std-0.011/lib/Class/
H A DStd.pm448 # Get arg from initializer list...
469 "Missing initializer label for $base_class: "
1187 The solution is to allow initializer values to be partitioned into
1245 Now each class's C<BUILD()> method picks out only the initializer sub-hash
1247 different, the top-level keys of this multi-level initializer hash are
1250 unique as well. If two classes in the hierarchy both need an initializer
1273 these class-specific initializer values. Before each C<BUILD()> is
1275 flattened back into the initializer hash itself. That is, C<Client::BUILD()>
1301 correct class-specific initializer values will available at the top level of
1319 Both classes use the C<< $arg_ref->{client_num} >> initializer valu
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DCommandLine.h287 struct initializer { struct in namespace:llvm::cl
289 initializer(const Ty &Val) : Init(Val) {} function in struct:llvm::cl::initializer
296 initializer<Ty> init(const Ty &Val) {
297 return initializer<Ty>(Val);
/macosx-10.10.1/vim-55/runtime/syntax/
H A Docaml.vim157 syn keyword ocamlKeyword in inherit initializer
/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm.mli745 as the initializer for a global variable. See the method
751 value can in turn be used as the initializer for a global variable.
757 This value can in turn be used as the initializer for a global variable.
763 in the context [context]. This value can in turn be used as the initializer
769 This value can in turn be used as the initializer
776 the initializer for a global variable. See the method
1177 initializer [init] in module [m] in the default address space (0). If the
1184 name [name] and initializer [init] in module [m] in the address space
1254 (** [global_initializer gv] returns the initializer for the global variable
1258 (** [set_initializer c gv] sets the initializer fo
[all...]
/macosx-10.10.1/CPANInternal-159.1/Parse-Yapp-1.05/t/
H A Dstress.t669 /* The %prec EMPTY's here are required by the = init initializer
721 /* GNU extension so people can use initializer lists. Note that
1174 initializer yet. */
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dmamake.c1734 * return 1 if name is an initializer
1738 initializer(char* name) function
1815 if (initializer(r->name))
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DNodesCodegen.cpp2398 RefPtr<RegisterID> initializer = generator.tempDestination(dst);
2399 generator.emitNode(initializer.get(), m_initializer);
2400 m_bindings->bindValue(generator, initializer.get());
2401 return generator.moveToDestinationIfNeeded(dst, initializer.get());
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Docaml.vim166 if getline(a:l) =~ '^\s*\%(\<val\>\|\<module\>\|\<class\>\|\<type\>\|\<method\>\|\<initializer\>\|\<inherit\>\|\<exception\>\|\<external\>\)'
/macosx-10.10.1/swig-12/Source/CParse/
H A Dparser.y1550 %type <dtype> initializer cpp_const ;
2943 c_decl : storage_class type declarator initializer c_decl_tail {
3008 | COMMA declarator initializer c_decl_tail {
3036 initializer : def_args { label
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/scripts/
H A DCodeGeneratorInspector.py2280 initializer = raw_type.get_c_initializer()
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn.tex514 Another less common initializer is mp\_init\_size() which allows the user to initialize an mp\_int with a given

Completed in 225 milliseconds

12