HomeSort by relevance Sort by last modified time
    Searched full:variable (Results 776 - 800 of 6598) sorted by null

<<31323334353637383940>>

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkingIterator.java 174 // If the variable stack position is not -1, we'll have to
175 // set our position in the variable stack, so our variable access
177 // expression need to reset the variable stack, while iterators
281 * corresponds to the variable reference qname. The position of the
  /external/chromium/chrome/browser/prefs/
pref_member_unittest.cc 110 // Try changing through the member variable.
131 // Try changing through the member variable.
152 // Try changing through the member variable.
173 // Try changing through the member variable.
201 // Try changing through the member variable.
  /external/chromium/webkit/glue/media/
buffered_data_source.h 196 // Stop signal to suppressing activities. This variable is set on the pipeline
200 // This variable is set by CleanupTask() that indicates this object is stopped
204 // This variable is true when we are in a paused state and false when we
208 // This variable is true when the user has requested the video to play at
212 // This variable holds the value of the preload attribute for the video
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 12 // analysis to see if a developer might have intended a variable to be const.
55 // Returns true if the variable was used (self assignments don't count)
105 // Self-assignments don't count as use of a variable
201 // Case 4: Block variable references
212 // Case 5: Variable references
  /external/icu4c/test/intltest/
transtst.h 116 * Test zero length and > 1 char length variable values. Test
117 * use of variable refs in UnicodeSets.
208 * Test undefined variable.
281 * Test the use variable range pragma, making sure that use of
282 * variable range characters is detected and flagged as an error.
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscostask.c 167 there is a variable set up in the form SDL$<name>$TaskName
168 in which case the value of this variable will be used.
214 if (q == 0) q = SDL_strchr(p,'>'); /* Use variable name if not */
222 len = SDL_strlen(p) + 18; /* 18 is larger than the biggest variable name */
228 /* See if a variable of form SDL$<dirname>$TaskName exists */
  /external/v8/src/
rewriter.cc 41 explicit Processor(Variable* result)
52 Variable* result_;
92 // An initializer block is the rewritten form of a variable declaration
96 // a variable declaration with initialization expression is 'undefined'
344 Variable* result = scope->NewTemporary(
hydrogen.h 336 void Bind(Variable* variable, HValue* value) {
337 Bind(IndexFor(variable), value);
342 HValue* Lookup(Variable* variable) const {
343 return Lookup(IndexFor(variable));
421 // Map a variable to an environment index. Parameter indices are shifted
424 int IndexFor(Variable* variable) const {
425 Slot* slot = variable->AsSlot()
    [all...]
  /external/webkit/Examples/NetscapeCoreAnimationPlugin/
main.m 67 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
68 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
220 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
224 switch (variable) {
243 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value)
  /external/llvm/docs/tutorial/
LangImpl7.html 93 <p>In this case, we have the variable "X", whose value depends on the path
158 With this in mind, the high-level idea is that we want to make a stack variable
167 variable is defined as "i32". What this means is that @G defines <em>space</em>
170 being declared with global variable definitions, they are declared with the
187 variable in the LLVM IR. Stack memory allocated with the alloca instruction is
223 <li>Each mutable variable becomes a stack allocation.</li>
224 <li>Each read of the variable becomes a load from the stack.</li>
225 <li>Each update of the variable becomes a store to the stack.</li>
226 <li>Taking the address of a variable just uses the stack address directly.</li>
311 Debug information in LLVM</a> relies on having the address of the variable
    [all...]
  /external/bison/m4/
po_gl.m4 156 # environment variable.
216 # - LINGUAS is the value of the environment variable LINGUAS at configure
249 # A sed script that extracts the value of VARIABLE from a Makefile.
256 # Yes it was empty. Look if we have the expected variable definition.
257 /^[ ]*VARIABLE[ ]*=/{
258 # Seen the first line of the variable definition.
259 s/^[ ]*VARIABLE[ ]*=//
264 # Here we are processing a line from the variable definition.
274 # There was no trailing backslash. The end of the variable definition is
280 # A trailing backslash means that the variable definition continues in th
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 70 const MDNode *Variable;
87 : Begin(0), End(0), Variable(0), Merged(false),
91 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
94 : Begin(B), End(E), Variable(0), Merged(false),
97 : Begin(B), End(E), Variable(0), Merged(false),
100 : Begin(B), End(E), Variable(0), Merged(false),
123 /// DbgVariable - This class is used to track local variable information.
126 DIVariable Var; // Variable Descriptor.
127 DIE *TheDIE; // Variable DIE.
129 DbgVariable *AbsVar; // Corresponding Abstract variable, if any
    [all...]
  /ndk/sources/host-tools/make-3.81/config/
po.m4 153 # environment variable.
213 # - LINGUAS is the value of the environment variable LINGUAS at configure
246 # A sed script that extracts the value of VARIABLE from a Makefile.
253 # Yes it was empty. Look if we have the expected variable definition.
254 /^[ ]*VARIABLE[ ]*=/{
255 # Seen the first line of the variable definition.
256 s/^[ ]*VARIABLE[ ]*=//
261 # Here we are processing a line from the variable definition.
271 # There was no trailing backslash. The end of the variable definition is
277 # A trailing backslash means that the variable definition continues in th
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/m4/
po.m4 163 # environment variable.
223 # - LINGUAS is the value of the environment variable LINGUAS at configure
256 # A sed script that extracts the value of VARIABLE from a Makefile.
263 # Yes it was empty. Look if we have the expected variable definition.
264 /^[ ]*VARIABLE[ ]*=/{
265 # Seen the first line of the variable definition.
266 s/^[ ]*VARIABLE[ ]*=//
271 # Here we are processing a line from the variable definition.
281 # There was no trailing backslash. The end of the variable definition is
287 # A trailing backslash means that the variable definition continues in th
    [all...]
  /system/core/sh/
TOUR 81 so I implement it using setjmp and longjmp. The global variable
160 CTLVAR Variable substitution
161 CTLENDVAR End of variable substitution
166 A variable substitution contains the following elements:
184 variable is enclosed in double quotes. The name of the variable
202 variable and command substitution, the parser doesn't insert any
217 var.c Maintains the variable symbol table. Called from expand.c.
220 status is returned in the global variable exitstatus. The alter-
252 (performed by the routine argstr) performs variable and comman
    [all...]
  /external/clang/test/Analysis/
plist-output.m 77 // CHECK: <string>Variable &apos;p&apos; initialized to a null pointer value</string>
79 // CHECK: <string>Variable &apos;p&apos; initialized to a null pointer value</string>
139 // CHECK: <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
141 // CHECK: <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
144 // CHECK: <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
277 // CHECK: <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
279 // CHECK: <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
282 // CHECK: <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
353 // CHECK: <string>Variable &apos;q&apos; initialized to a null pointer value</string>
355 // CHECK: <string>Variable &apos;q&apos; initialized to a null pointer value</string
    [all...]
  /ndk/sources/host-tools/make-3.81/
Makefile.DOS 80 make_SOURCES = ar.c arscan.c commands.c default.c dir.c expand.c file.c function.c getopt.c getopt1.c implicit.c job.c main.c misc.c read.c remake.c rule.c signame.c strcache.c variable.c version.c vpath.c hash.c remote-$(REMOTE).c
107 make_OBJECTS = ar.o arscan.o commands.o default.o dir.o expand.o file.o function.o getopt.o getopt1.o implicit.o job.o main.o misc.o read.o remake.o rule.o signame.o strcache.o variable.o version.o vpath.o hash.o remote-$(REMOTE).o
565 gettext.h dep.h filedef.h hash.h variable.h \
571 gettext.h filedef.h hash.h variable.h rule.h \
584 variable.h rule.h
591 variable.h debug.h
596 gettext.h filedef.h hash.h variable.h dep.h \
617 variable.h job.h \
625 commands.h variable.h \
636 gettext.h dep.h filedef.h hash.h variable.h
    [all...]
read.c 29 #include "variable.h"
70 The global variable `conditionals' contains the conditionals
163 /* If there's a non-null variable MAKEFILES, its value is a list of
247 /* Add them to the tail, after any MAKEFILES variable makefiles. */
346 the `MAKEFILES' variable or an included makefile,
603 variable definition it can't be a preprocessor token so skip
649 fatal (fstart, _("empty variable name"));
651 /* Let the variable name be the whole rest of the line,
653 removed), so it could be a complex variable/function
677 fatal (fstart, _("empty variable name"))
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 1 //===-- llvm/CodeGen/LiveVariables.h - Live Variable Analysis ---*- C++ -*-===//
18 // the machine code SSA form. This class computes live variable information for
126 /// variable information.
185 /// particular, we want to map the variable information of a virtual
198 // API to update live variable information
216 /// register from the live variable information. Returns true if the
217 /// variable was marked as killed by the specified instruction,
252 /// register from the live variable information. Returns true if the
253 /// variable was marked dead at the specified instruction, false
  /external/mesa3d/docs/
egl.html 132 the drivers are installed to. This variable specifies a list of
134 addition to the default directory. This variable is ignored for setuid/setgid
137 <p>This variable is usually set to test an uninstalled build. For example, one
151 <p>This variable specifies a full path to an EGL driver and it forces the
153 specific driver. This variable is ignored for setuid/setgid binaries.</p>
159 <p>This variable specifies the native platform. The valid values are the same
160 as those for <code>--with-egl-platforms</code>. When the variable is not set,
166 applications that support non-native platforms. Setting this variable is
182 variable to true forces the use of software rendering.</p>
  /external/protobuf/gtest/test/
gtest_filter_unittest.py 34 the GTEST_FILTER environment variable or the --gtest_filter flag.
54 # The environment variable for specifying the test filters.
124 """Sets the env variable to 'value'; unsets it when 'value' is None."""
182 """Tests GTEST_FILTER env variable or --gtest_filter flag to filter tests."""
222 # into a process using the GTEST_FILTER environment variable. However,
223 # we can still test the case when the variable is not supplied (i.e.,
264 # into a process using the GTEST_FILTER environment variable. However,
265 # we can still test the case when the variable is not supplied (i.e.,
534 """Tests that the filter flag overrides the filtering env. variable."""
  /external/valgrind/main/drd/
drd.h 79 /** Tell DRD not to complain about data races for the specified variable. */
82 /** Tell DRD to no longer ignore data races for the specified variable. */
88 * Tell DRD to trace all memory accesses on the specified variable.
89 * until the memory that was allocated for the variable is freed.
127 * Tell DRD that waiting on the condition variable at address cv has succeeded
137 * Tell DRD that the condition variable at address cv is about to be signaled.
142 * Tell DRD that the condition variable at address cv is about to be signaled.
147 * Tell DRD that waiting on condition variable at address cv succeeded and that
463 /* Apply ANNOTATE_BENIGN_RACE_SIZED to a static variable. */
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputHLSL.cpp 128 const TVariable *variable = static_cast<const TVariable*>(symbol); local
129 const TType &type = variable->getType();
278 const TVariable *variable = static_cast<const TVariable*>(symbol); local
279 const TType &type = variable->getType();
661 // GLSL allows to write things like "float x = x;" where a new variable x is defined
662 // and the value of an existing variable x is assigned. HLSL uses C semantics (the
663 // new variable is created before the assignment is evaluated), so we need to convert
1031 TIntermTyped *variable = sequence[0]->getAsTyped(); local
1577 TIntermTyped *variable = sequence[0]->getAsTyped(); local
    [all...]
  /external/chromium/testing/gtest/test/
gtest_filter_unittest.py 34 the GTEST_FILTER environment variable or the --gtest_filter flag.
55 # processes. We set an env variable to an empty string and invoke a python
56 # script in a subprocess to print whether the variable is STILL in
66 # We set an env variable to a non-empty string, unset it, and invoke
67 # a python script in a subprocess to print whether the variable
85 # The environment variable for specifying the test filters.
170 """Sets the env variable to 'value'; unsets it when 'value' is None."""
226 """Tests the env variable or the command line flag to filter tests."""
262 # First, tests using the environment variable.
266 # into a process using the environment variable. However, we can stil
    [all...]
  /external/clang/test/SemaCXX/
expression-traits.cpp 168 extern int variable;
183 static int variable; member in struct:Class
189 static int& NestedFuncTemplate() { return variable; }
192 int& NestedMemfunTemplate() { return variable; }
219 // a function or variable.
221 ASSERT_LVALUE(::variable); // identifier: variable
228 ASSERT_LVALUE(::Class::variable); // qualified-id: variable
254 // the entity is a function, variable, or data member... (cont'd
    [all...]

Completed in 1014 milliseconds

<<31323334353637383940>>