Searched refs:If (Results 76 - 100 of 413) sorted by relevance

1234567891011>>

/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dlexer.ml47 | "if" -> [< 'Token.If; stream >]
H A Dcodegen.ml71 (* If it wasn't a builtin binary operator, it must be a user defined
91 (* If argument mismatch error. *)
96 | Ast.If (cond, then_, else_) ->
190 (* Within the loop, the variable is defined equal to the PHI node. If it
207 (* If not specified, use 1.0. *)
256 (* If not specified, use 0.0. *)
296 (* If 'f' conflicted, there was already something named 'name'. If it
299 (* If 'f' already has a body, reject this. *)
303 (* If '
[all...]
/external/mesa3d/docs/
H A DMESA_multithread_makecurrent.spec79 If ctx is current to some other thread, then
82 If ctx is an indirect context current to some other thread,
86 If ctx is current to some other thread, then
89 If ctx is an indirect context current to some other thread,
/external/scrypt/
H A DScrypt.mk16 # If we're building an unbundled build, don't try to use clang since it's not
/external/valgrind/main/memcheck/tests/
H A Dbadjump.stderr.exp12 If you believe this happened as a result of a stack
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dfilter.rb9 If a lexer grammar specifies the <tt>filter = true</t> option, the generated
/external/chromium_org/native_client_sdk/src/doc/
H A DMakefile13 $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
/external/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h89 void If(SourceLocation Loc, SourceRange ConditionRange,
/external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
H A Dbaseline_policy.cc29 using sandbox::bpf_dsl::If;
165 return If(advice == MADV_DONTNEED, Allow()).Else(Error(EPERM));
191 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS());
/external/clang/lib/AST/
H A DStmtPrinter.cpp53 // If this is an expr used in a stmt context, indent and newline it.
68 void PrintRawIfStmt(IfStmt *If);
178 void StmtPrinter::PrintRawIfStmt(IfStmt *If) { argument
180 if (const DeclStmt *DS = If->getConditionVariableDeclStmt())
183 PrintExpr(If->getCond());
186 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
189 OS << (If->getElse() ? ' ' : '\n');
192 PrintStmt(If->getThen());
193 if (If->getElse()) Indent();
196 if (Stmt *Else = If
213 VisitIfStmt(IfStmt *If) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c45 struct rc_instruction * If; member in struct:branch_info
70 branch->If = inst;
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst);
223 inject_cmp(s, branch->If, inst, RC_FILE_TEMPORARY, index,
229 rc_remove_instruction(branch->If);
264 * We do the simplest thing: If an output registers is written within
H A Dradeon_emulate_loops.c183 * If c->max_alu_inst is -1, then all eligible loops will be unrolled regardless
310 rc_remove_instruction(loop->If);
377 loop->If = ptr->Prev;
379 switch(loop->If->Prev->U.I.Opcode){
390 loop->Cond = loop->If->Prev;
399 if (loop->BeginLoop && loop->Brk && loop->If && loop->EndIf
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c45 struct rc_instruction * If; member in struct:branch_info
70 branch->If = inst;
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst);
223 inject_cmp(s, branch->If, inst, RC_FILE_TEMPORARY, index,
229 rc_remove_instruction(branch->If);
264 * We do the simplest thing: If an output registers is written within
H A Dradeon_emulate_loops.c183 * If c->max_alu_inst is -1, then all eligible loops will be unrolled regardless
310 rc_remove_instruction(loop->If);
377 loop->If = ptr->Prev;
379 switch(loop->If->Prev->U.I.Opcode){
390 loop->Cond = loop->If->Prev;
399 if (loop->BeginLoop && loop->Brk && loop->If && loop->EndIf
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dobject.pxd116 # exception. If cls is a type object rather than a class object,
117 # PyObject_IsInstance() returns 1 if inst is of type cls. If cls
120 # returns 1, otherwise it will be 0. If inst is not a class
128 # class system may want to be aware of. If A and B are class
130 # directly or indirectly. If either is not a class object, a more
133 # B, PyObject_IsSubclass() returns true. If A and B are different
141 # -1. If cls is a tuple, the check will be done against every
143 # checks returns 1, otherwise it will be 0. If either derived or
157 # dictionary kw. If no named arguments are needed, kw may be
167 # given by the tuple args. If n
[all...]
H A Dnumber.pxd66 # where o3 is optional. If o3 is to be ignored, pass Py_None in
171 # otherwise. If o3 is to be ignored, pass Py_None in its place
206 # PyObject*. If the objects pointed to by *p1 and *p2 have the
208 # (success). If the objects can be converted to a common numeric
210 # reference counts), and return 0. If no conversion is possible,
219 # on failure. If the argument is outside the integer range a long
241 # interpreted as an integer. If o can be converted to a Python int
245 # OverflowError). If exc is NULL, then the exception is cleared
H A Dtuple.pxd37 # p. If pos is out of bounds, return NULL and sets an IndexError
67 # value of *p will be the same as before calling this function. If
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as40 /** If 0, no backtracking is going on. Safe to exec actions etc...
41 * If >0 then it's the level of backtracking.
62 * matching lexer rule(s). If you subclass to allow multiple token
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb57 machine cannot transition any further. If the machine cannot transition any
59 alternative has been chosen successfully and the prediction procedure ends. If
78 If positive, it specifies a state transition in
82 If positive, it indicates that the prediction
88 If positive and there are no possible state
92 If positive and the input stream has been exhausted,
/external/bison/djgpp/
H A Ddjunpack.bat23 Rem along with this program. If not, see <http://www.gnu.org/licenses/>.
32 Rem where XYZ is the version number. If the argument includes leading
38 Rem If their environment space is too small, re-exec with a larger one
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp58 Constant *If; member in class:__anon26120::SIAnnotateControlFlow
127 If = M.getOrInsertFunction(
191 /// \brief Open a new "If" block
193 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
198 /// \brief Close the last "If" block and open a new "Else" block
/external/apache-harmony/jdwp/
H A DAndroid.mk87 # If this fails complaining about TestRunner, build "external/junit" manually.
99 # If this fails complaining about TestRunner, build "external/junit" manually.
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/
H A Dgl-matrix.rb12 claim that you wrote the original software. If you use this software
60 # Compiles the source file to the dest file. If a block
/external/chromium_org/third_party/mesa/src/docs/
H A DWL_bind_wayland_display.spec103 EGL_TEXTURE_FORMAT as the attribute. If the wl_buffer object is
110 If eglQueryWaylandBufferWL succeeds, the returned value will be
149 context. If no attributes are given, an EGLImage will be created
/external/chromium_org/v8/src/compiler/
H A Dcontrol-builders.h52 void If(Node* condition);

Completed in 2869 milliseconds

1234567891011>>