HomeSort by relevance Sort by last modified time
    Searched full:variable (Results 601 - 625 of 15203) sorted by null

<<21222324252627282930>>

  /prebuilts/tools/windows/sdl/include/SDL/
SDL_mutex.h 132 /** The SDL condition variable structure, defined in SDL_cond.c */
137 /** Create a condition variable */
140 /** Destroy a condition variable */
143 /** Restart one of the threads that are waiting on the condition variable,
148 /** Restart all threads that are waiting on the condition variable,
153 /** Wait on the condition variable, unlocking the provided mutex.
155 * The mutex is re-locked once the condition variable is signaled.
161 * variable is signaled, SDL_MUTEX_TIMEDOUT if the condition is not
  /build/core/
node_fns.mk 27 # $(1): list of variable names to clear
45 # $(2): list of variable names to copy
53 # The variable names differ by a prefix. After moving, the
54 # source variable is cleared.
68 # $(3): list of variable names to move
125 # $(1): variable prefix
137 # for each variable ( (prefix + name) * vars ):
145 # $(3): list of variable names
149 $(eval ### "Shorthand for the name of the target variable") \
151 $(eval ### "Get the list of nodes that this variable inherits")
    [all...]
  /external/clang/test/Analysis/
objc_invalidation.m 176 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated}}
177 // expected-warning@-3 {{Instance variable MultipleProtocols needs to be invalidated}}
178 // expected-warning@-4 {{Instance variable MultInheritance needs to be invalidated}}
180 // expected-warning@-6 {{Instance variable _Ivar3 needs to be invalidated}}
181 // expected-warning@-7 {{Instance variable _Ivar4 needs to be invalidated}}
182 // expected-warning@-8 {{Instance variable Ivar5 needs to be invalidated or set to nil}}
183 // expected-warning@-9 {{Instance variable Ivar13 needs to be invalidated or set to nil}}
263 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated; no invalidation method is defined in the @implementation for MissingInvalidationMethod2}}
273 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated; no invalidation method is declared for MissingInvalidationMethodDecl}}
284 // expected-warning@-2 {{Instance variable _foo1 needs to be invalidated; no invalidation method is declared for MissingInvalidationMethodDec (…)
    [all...]
  /external/lldb/test/types/
AbstractBase.py 13 'frame variable --show-types' if using_frame_variable else 'expression' ,var, val)
57 # variable #
93 # This golden list contains a list of (variable, value) pairs extracted
99 # variable = 'value'
119 # 'frame variable --show-types' command.
131 #self.runCmd("frame variable --show-types")
134 # 'frame variable --show-types var'.
136 self.runCmd("frame variable --show-types %s" % var)
143 # runCmd: frame variable --show-types a_array_bounded[0]
164 """Test that variable expressions with basic types are evaluated correctly.""
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 92 * Returns whether the specified variable is alive before the instruction
103 * Sets whether the specified variable is alive before the instruction
123 * Returns whether the specified variable is alive after the instruction
134 * Sets whether the specified variable is alive after the instruction
154 * Returns whether the specified variable takes up two entries after the
165 * Sets whether the specified variable takes up two entries after the
271 // Is the variable alive and a category 2 type?
280 // Mark the next variable as well.
286 // Is the variable alive and a category 2 type?
295 // Mark the next variable as well
    [all...]
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.cpp 216 fprintf(stderr, "ERROR: %u: Missing variable name in 'len' attribute\n", (unsigned int)lc);
221 fprintf(stderr, "ERROR: %u: variable %s is not a parameter of %s\n",
233 fprintf(stderr, "ERROR: %u: Missing variable name in 'param_check' attribute\n", (unsigned int)lc);
238 fprintf(stderr, "ERROR: %u: variable %s is not a parameter of %s\n",
250 fprintf(stderr, "ERROR: %u: Missing variable name in 'dir' attribute\n", (unsigned int)lc);
255 fprintf(stderr, "ERROR: %u: variable %s is not a parameter of %s\n",
280 fprintf(stderr, "ERROR: %u: Missing variable name in 'var_flag' attribute\n", (unsigned int)lc);
285 fprintf(stderr, "ERROR: %u: variable %s is not a parameter of %s\n",
306 fprintf(stderr, "WARNING: %u: setting nullAllowed for non-pointer variable %s\n",
313 fprintf(stderr, "WARNING: %u: setting isLarge flag for a non-pointer variable %s\n"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 36 import org.apache.xpath.operations.Variable;
73 // * Visit a variable reference.
76 // * @param var The variable reference object.
79 // public boolean visitVariableRef(ExpressionOwner owner, Variable var)
101 if((pred instanceof Variable) ||
  /external/chromium_org/third_party/webrtc/base/
thread_annotations.h 28 // Document if a shared variable/field needs to be protected by a lock.
30 // held when accessing the annotated variable, while GUARDED_VAR only
31 // indicates a shared variable should be guarded (by any lock). GUARDED_VAR
39 // of the lock. Note that a pointer variable to a shared memory location
40 // could itself be a shared variable. For example, if a shared global pointer
  /external/chromium_org/tools/telemetry/telemetry/util/
exception_formatter.py 73 local_variables = [(variable, value) for variable, value in
74 frame.f_locals.iteritems() if variable != 'self']
79 for variable, value in sorted(local_variables):
85 print >> sys.stderr, ' %s: %s%s' % (variable.ljust(longest_variable + 1),
  /external/clang/docs/
BlockLanguageSpec.rst 35 also contain various variable bindings to automatic (stack) or managed
50 Block Variable Declarations
53 A :block-term:`variable with Block type` is declared using function
55 valid Block variable declarations:
160 The compiler is not required to capture a variable if it can prove
161 that no references to the variable will actually be evaluated.
162 Programmers can force a variable to be captured by referencing it in a
169 This matters when capturing the variable has side-effects, as it can
174 the local scope of the Block. Such variable declarations should be
231 is automatically recovered after last use of said variable. A
    [all...]
  /external/clang/test/OpenMP/
parallel_sections_shared_messages.cpp 68 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
76 #pragma omp parallel sections shared(argv[1]) // expected-error {{expected variable name}}
86 #pragma omp parallel sections shared(h) // expected-error {{threadprivate or thread local variable cannot be shared}}
88 #pragma omp parallel sections private(i), shared(i) // expected-error {{private variable cannot be shared}} expected-note {{defined as private}}
90 #pragma omp parallel sections firstprivate(i), shared(i) // expected-error {{firstprivate variable cannot be shared}} expected-note {{defined as firstprivate}}
  /external/clang/test/Sema/
i-c-e.c 63 char pbcp[__builtin_constant_p(4) ? (intptr_t)&expr : 0]; // expected-error {{variable length array declaration not allowed at file scope}}
66 int illegaldiv1b[1 && 1/0]; //expected-error{{variable length array declaration not allowed at file scope}}
68 int illegaldiv2[1/0]; // expected-error {{variable length array declaration not allowed at file scope}}
69 int illegaldiv3[INT_MIN / -1]; // expected-error {{variable length array declaration not allowed at file scope}}
71 int illegaldiv4[0 / (1 / 0)]; // expected-error {{variable length array declaration not allowed at file scope}}
  /external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
TestWatchpointCommandPython.py 22 # And the watchpoint variable declaration line number.
23 self.decl = line_number(self.source, '// Watchpoint variable declaration.')
65 self.expect("watchpoint set variable -w write global", WATCHPOINT_CREATED,
92 # The watchpoint command "forced" our global variable 'cookie' to become 777.
93 self.expect("frame variable --show-globals cookie",
  /external/lldb/test/lang/cpp/char1632_t/
TestChar1632T.py 55 self.runCmd("frame variable")
58 self.expect("frame variable cs16 cs32",
62 self.expect("frame variable s16 s32",
68 self.expect("frame variable s32",
75 self.expect("frame variable s16 s32",
  /external/llvm/docs/HistoricalNotes/
2000-12-06-MeetingSummary.txt 11 of the original variable and the SSA instance subscript.
22 infinite variable space.
25 * It was decided that because original variable sources could be
70 4. Should we use fixed length instructions or variable length
71 instructions? Fetching variable length instructions is expensive (for
  /external/proguard/src/proguard/optimize/peephole/
VariableShrinker.java 88 // Get the total size of the local variable frame.
101 // Delete unused local variables from the local variable frame.
106 // Is the variable not required?
111 System.out.println(" Deleting local variable #"+variableIndex);
114 // Delete the unused variable.
  /external/proguard/src/proguard/shrink/
LocalVariableTypeUsageMarker.java 108 // Only keep the local variable info if all of its classes are used.
114 // We got a positive used flag, so the local variable info is useful.
129 // Only keep the local variable info if all of its classes are used.
135 // We got a positive used flag, so the local variable info is useful.
153 // Don't keep the local variable info if one of its classes is not used.
  /libcore/luni/src/main/java/libcore/reflect/
TypeVariableImpl.java 51 * @param genericDecl declaration where a type variable is declared
52 * @param name type variable name
64 * @param genericDecl declaration where a type variable is used
65 * @param name type variable name
110 throw new AssertionError("illegal type variable reference");
  /ndk/sources/host-tools/make-3.81/
SMakefile 127 rule.o implicit.o default.o variable.o expand.o function.o \
134 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \
141 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in
234 gettext.h dep.h filedef.h hash.h variable.h \
240 gettext.h filedef.h hash.h variable.h rule.h \
253 variable.h rule.h
260 variable.h debug.h
265 gettext.h filedef.h hash.h variable.h dep.h \
286 variable.h job.h \
294 commands.h variable.h
    [all...]
  /external/bison/data/
bison.m4 382 # b4_percent_define_use(VARIABLE)
384 # Declare that VARIABLE was used.
389 # b4_percent_define_get(VARIABLE, [DEFAULT])
392 # the %define variable VARIABLE is defined, emit its value. Contrary
394 # Bison's usage of VARIABLE by defining
395 # b4_percent_define_bison_variables(VARIABLE).
407 # b4_percent_define_get_loc(VARIABLE)
410 # if the %define variable VARIABLE is undefined, complain fatally since that'
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ruleiter.h 54 * Current variable expansion, or 0 if none.
70 * Bitmask option to enable parsing of variable names. If (options &
71 * PARSE_VARIABLES) != 0, then an embedded variable will be expanded to
98 * variable has been dereferenced, then pos will <em>not</em> increment as
99 * characters of the variable value are iterated.
119 * variable name is seen, or if options includes PARSE_ESCAPES and
126 * Returns true if this iterator is currently within a variable expansion.
180 * iterator is currently within a variable expansion, this will only
181 * extend to the end of the variable expansion. This method is provided
203 * Position within an expanded variable is <em>not</em> indicated
    [all...]
  /external/clang/test/Index/
index-module.m 15 // CHECK-NEXT: [indexDeclaration]: kind: variable | name: glob | {{.*}} | loc: 4:5
29 // CHECK-DMOD-NEXT: [indexDeclaration]: kind: variable | name: depends_on_module_other | {{.*}} | loc: [[DMOD_OTHER_H]]:1:5
30 // CHECK-DMOD-NEXT: [indexDeclaration]: kind: variable | name: template | {{.*}} | loc: [[DMOD_NOT_CXX_H]]:1:12
32 // CHECK-DMOD-NEXT: [indexDeclaration]: kind: variable | name: sub_framework | {{.*}} | loc: [[DMOD_SUB_H]]:2:8
33 // CHECK-DMOD-NEXT: [indexDeclaration]: kind: variable | name: sub_framework_other | {{.*}} | loc: [[DMOD_SUB_OTHER_H]]:1:9
34 // CHECK-DMOD-NEXT: [indexDeclaration]: kind: variable | name: depends_on_module_private | {{.*}} | loc: [[DMOD_PRIVATE_H]]:1:5
53 // CHECK-TMOD-NEXT: [indexDeclaration]: kind: variable | name: Module_Sub | {{.*}} | loc: [[TMODHDR]]Sub.h:2:6
54 // CHECK-TMOD-NEXT: [indexDeclaration]: kind: variable | name: Module_Sub2 | USR: c:@Module_Sub2 | {{.*}} | loc: [[TMODHDR]]Sub2.h:1:6
55 // CHECK-TMOD-NEXT: [indexDeclaration]: kind: variable | name: Buried_Treasure | {{.*}} | loc: [[TMODHDR]]Buried/Treasure.h:1:11
56 // CHECK-TMOD-NEXT: [indexDeclaration]: kind: variable | name: module_subframework | {{.*}} | loc: [[TMOD_SUB_H]]:4:
    [all...]
  /external/icu/icu4c/source/common/
ruleiter.h 54 * Current variable expansion, or 0 if none.
70 * Bitmask option to enable parsing of variable names. If (options &
71 * PARSE_VARIABLES) != 0, then an embedded variable will be expanded to
98 * variable has been dereferenced, then pos will <em>not</em> increment as
99 * characters of the variable value are iterated.
119 * variable name is seen, or if options includes PARSE_ESCAPES and
126 * Returns true if this iterator is currently within a variable expansion.
180 * iterator is currently within a variable expansion, this will only
181 * extend to the end of the variable expansion. This method is provided
203 * Position within an expanded variable is <em>not</em> indicated
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 19 * Represents the stack frame and local variable table at a particular point in time.
31 * Create a new frame with the specified local variable table size, and max stack size
33 * @param locals the number of local variable table entries
52 * Sets the local variable table entry at index to a type.
102 * Returns the number of local variable table entries, specified
105 * @return the number of local variable table entries
160 * variable table size will be copied, but its contents will be empty.
173 * The local variable table is left untouched.
202 * Merges all types on the stack and local variable table of this frame with that of the specified
211 // Local variable tabl
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
100 (* Emit the start code first, without 'variable' in scope. *)
117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
119 (* Within the loop, the variable is defined equal to the PHI node. If it
120 * shadows an existing variable, we have to restore it, so save it
125 Hashtbl.add named_values var_name variable;
140 let next_var = build_add variable step_val "nextvar" builder in
160 add_incoming (next_var, loop_end_bb) variable;
162 (* Restore the unshadowed variable. *
    [all...]

Completed in 830 milliseconds

<<21222324252627282930>>