Searched refs:variables (Results 1 - 25 of 399) sorted by relevance

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Drbt_data.cpp26 variables(0), variablesAreOwned(TRUE)
32 variables = 0;
57 variables = 0;
58 if (other.variables != 0) {
59 variables = (UnicodeFunctor **)uprv_malloc(variablesLength * sizeof(UnicodeFunctor *));
61 if (variables == 0) {
66 variables[i] = other.variables[i]->clone();
67 if (variables[i] == NULL) {
76 delete variables[
[all...]
H A Drbt_data.h62 * data.variables. The stand-in also represents the UnicodeMatcher in
74 * variables[i] represents character (variablesBase + i).
76 UnicodeFunctor** variables; member in class:TransliterationRuleData
79 * Flag that indicates whether the variables are owned (if a single
82 * the same variables list, so only the first one is considered to own
83 * the variables)
88 * The character that represents variables[0]. Characters
95 * The length of variables.
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_writeenv.c47 } variables[14] = variable in typeref:struct:__anon7170
83 for(i=0; variables[i].name; i++) {
84 switch (variables[i].type) {
86 if(curl_easy_getinfo(curl, variables[i].id, &string) == CURLE_OK)
87 internalSetEnv(variables[i].name, string);
89 internalSetEnv(variables[i].name, NULL);
93 if(curl_easy_getinfo(curl, variables[i].id, &longinfo) == CURLE_OK) {
95 internalSetEnv(variables[i].name, numtext);
98 internalSetEnv(variables[i].name, NULL);
101 if(curl_easy_getinfo(curl, variables[
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dxpath.rb21 # variables::
22 # If supplied, a Hash which maps $variables in the query
30 def XPath::first element, path=nil, namespaces=nil, variables={}
32 raise "The variables argument, if supplied, must be a hash object." unless variables.kind_of?(Hash)
35 parser.variables = variables
49 # variables::
50 # If supplied, a Hash which maps $variables in the query
59 def XPath::each element, path=nil, namespaces=nil, variables
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/gtk/
H A DExperimentalFeatures.cpp74 Vector<String> variables; local
75 String(data).split(',', false, variables);
76 for (unsigned i = 0; i < variables.size(); i++) {
78 variables[i].split('=', false, keyAndValue);
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_jaxen.rb55 variables = {}
56 XPath.each( ctxElement, "@*[namespace-uri() = 'http://jaxen.org/test-harness/var']") { |attrib| handleVariable(testCtx, variables, attrib) }
57 XPath.each( ctxElement, "valueOf") { |e| handleValueOf(testCtx, variables, namespaces, e) }
58 XPath.each( ctxElement, "test[not(@exception) or (@exception != 'true') ]") { |e| handleNominalTest(testCtx,variables, namespaces, e) }
59 XPath.each( ctxElement, "test[@exception = 'true']") { |e| handleExceptionalTest(testCtx,variables, namespaces, e) }
63 def handleValueOf(ctx,variables, namespaces, valueOfElement)
65 got = XPath.match( ctx, valueOfElement.attributes["select"], namespaces, variables )[0]
88 def handleNominalTest(ctx, variables, namespaces, testElement)
90 got = XPath.match( ctx, testElement.attributes["select"], namespaces, variables )
95 handleValueOf(got, variables, namespace
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/old/
H A Duplevel.test36 test {"uplevel" can access global variables (via relative level)} {
43 test {"uplevel" can access global variables (via "#0")} {
50 test {"uplevel" can access local variables (via relative level)} {
59 test {"uplevel" can access local variables (via relative level)} {
71 test {"uplevel" can access local variables (via explicit level)} {
83 test {"uplevel" can cross class interps to access global variables} {
92 test {"uplevel" can cross several class interps to access global variables} {
H A Dupvar.test41 local variables. This ensures that when control
43 Expect commands, etc., local variables will be
54 test {"upvar" can cross interp boundaries to access local variables} {
60 test {"upvar" can cross interp boundaries to access global variables} {
H A Dbasic.test59 test {Info: all public variables} {
104 test {Setting public variables via "config"} {
128 test {Public variables with "config" code} {
146 test {Info: all protected variables} {
180 test {Info: all protected variables} {
219 test {Common variables can be initialized within class definition} {
364 test {Formal arguments don't clobber public/protected variables} {
376 test {Formal arguments don't clobber common variables} {
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtw.color.c63 static Variable variables[] = { variable
96 #define nvariables (sizeof(variables)/sizeof(variables[0]))
186 variables[i].color = variables[i].defaultcolor;
237 if ((Char)variables[i].variable[0] == (v[0] & CHAR) &&
238 (Char)variables[i].variable[1] == (v[1] & CHAR))
242 getstring(&c, &v, &variables[i].color, ':');
286 Str *color = &variables[VFile].color;
291 color = &variables[VDi
[all...]
/macosx-10.10.1/ruby-106/ruby/test/win32ole/
H A Dtest_win32ole_variable.rb12 @var1 = ole_type.variables.find {|v| v.name == 'ssfDESKTOP'}
14 variables = WIN32OLE_TYPE.new("Microsoft Windows Installer Object Library", "Installer").variables
15 @var2 = variables.find {|v| v.name == 'UILevel'}
H A Dtest_win32ole_type.rb52 assert_equal([], ole_type.variables)
70 assert_equal(ole_type.variables.size, ole_type2.variables.size)
146 variables = @ole_type.variables
147 assert_instance_of(Array, variables)
148 assert(variables.size == 0)
151 variables = ole_type.variables
152 assert_instance_of(Array, variables)
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dsel-gram.y63 %type <expr> variable variables
107 variable: '%' '{' variables '}' { $$ = $3; }
110 variables: IDENTIFIER '.' variables { label
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/unix/tools/
H A Dtclmanpages23 {array.n tcl/variables/array}
54 {global.n tcl/variables/global}
74 {namespace.n tcl/variables/namespace}
92 {set.n tcl/variables/set}
100 {trace.n tcl/variables/trace}
102 {unset.n tcl/variables/unset}
104 {upvar.n tcl/variables/upvar}
106 {tclvars.n tcl/variables/stdvars}
109 {variable.n tcl/variables/variable}
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGAtTailAbstractState.h51 Operands<AbstractValue>& variables() { return m_block->valuesAtTail; } function in class:JSC::DFG::AtTailAbstractState
H A DDFGDCEPhase.cpp251 void cleanVariables(VariablesVectorType& variables) argument
253 for (unsigned i = variables.size(); i--;) {
254 Node* node = variables[i];
273 // only use the variable-at-tail of captured variables to get the
295 variables[i] = node;
299 variables[i] = 0;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/AppKit/
H A D__init__.py19 variables = sys._getframe(1).f_locals
22 nm: variables[nm]
/macosx-10.10.1/mail_cmds-30/mail/
H A Dvars.c69 vp->v_link = variables[h];
70 variables[h] = vp;
138 for (vp = variables[hash(name)]; vp != NULL; vp = vp->v_link)
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dprotection.test133 test protect-1.12a {object-specific variables require an access command} {
137 test protect-1.12b {public variables can be accessed from inside} {
141 test protect-1.13a {object-specific variables require an access command} {
145 test protect-1.13b {protected variables can be accessed from inside} {
149 test protect-1.14a {object-specific variables require an access command} {
153 test protect-1.14b {private variables can be accessed from inside} {
215 test protect-2.12 {public variables can be accessed from inside} {
219 test protect-2.13 {protected variables can be accessed from inside} {
223 test protect-2.14 {private variables are blocked} {
307 test protect-3.1 {define a base class with private variables} {
[all...]
H A Dbasic.test203 test basic-3.3 {built-in configure can query public variables} {
271 # Namespace variables
273 test basic-5.1 {define a simple class with variables in the namespace} {
297 test basic-5.3 {common variables live in the namespace} {
301 test basic-5.4 {common variables can be referenced transparently} {
305 test basic-5.5 {namespace variables require a declaration} {
309 test basic-5.6a {variable accesses variables within namespace} {
313 test basic-5.6a {variable accesses variables within namespace} {
334 # Array variables
336 test basic-6.1 {set up a class definition with array variables} {
[all...]
/macosx-10.10.1/apache-793/httpd/modules/lua/
H A Dlua_dbd.h49 int variables; member in struct:__anon5978
/macosx-10.10.1/CPANInternal-159.1/Readonly-XS-1.05/
H A DXS.pm4 scalar variables.
59 non-modifiable variables. However, it's relatively slow.
62 variables via tied objects. This mechanism is inherently slow. Perl
63 simply has to do a lot of work under the hood to make tied variables
67 scalar variables. When Readonly::XS is installed, Readonly uses it to
68 access the internals of scalar variables. Instead of creating a
/macosx-10.10.1/bc-21/bc/bc/
H A Dstorage.c68 /* Three functions for increasing the number of functions, variables, or
128 old_var = variables;
133 variables = (bc_var **) bc_malloc (v_count*sizeof(bc_var *));
136 /* Copy the old variables. */
138 variables[indx] = old_var[indx];
142 variables[indx] = NULL;
332 /* The following routines manipulate simple variables and
333 array variables. */
344 var_ptr = variables[var_name];
347 var_ptr = variables[var_nam
[all...]
/macosx-10.10.1/CPANInternal-159.1/Readonly-1.03/
H A DReadonly.pm174 # have to explicitly tie the variables themselves).
189 # Used to prevent reassignment of Readonly variables.
369 croak "Readonly only supports scalar, array, and hash variables.";
400 # You can use the read-only variables like any regular variables:
430 This is a facility for creating non-modifiable variables. This is
432 as a development and debugging tool, for catching updates to variables
518 This works fine, but it only works for global variables ("my"
519 variables have no symbol table entry). Also, the following similar
527 Readonly.pm, on the other hand, will work with global variables an
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/offlineasm/
H A Dtransform.rb142 unless @variables.include? key
218 raise "Argument count mismatch for call to #{item.name} at #{item.codeOriginString}" unless item.operands.size == myMacros[item.name].variables.size
222 myMyMacros[myMacros[item.name].variables[idx].name] = myMacros[item.operands[idx].name]
223 mapping[myMacros[item.name].variables[idx].name] = nil
225 myMyMacros[myMacros[item.name].variables[idx].name] = item.operands[idx]
226 mapping[myMacros[item.name].variables[idx].name] = nil
228 myMyMacros[myMacros[item.name].variables[idx]] = nil
229 mapping[myMacros[item.name].variables[idx]] = item.operands[idx]

Completed in 316 milliseconds

1234567891011>>