HomeSort by relevance Sort by last modified time
    Searched refs:Used (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/include/clang/Sema/
Weak.h 10 // This file defines the WeakInfo class, which is used to store
28 bool used; // identifier later declared? member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
36 void setUsed(bool Used=true) { used = Used; }
37 inline bool getUsed() { return used; }
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 110 bool Used;
112 InputArg() : VT(MVT::Other), Used(false) {}
113 InputArg(ArgFlagsTy flags, EVT vt, bool used)
114 : Flags(flags), Used(used) {
  /external/llvm/lib/Transforms/Scalar/
DCE.cpp 14 // it rechecks instructions that were used by removed instructions to see if
106 // instructions being used, add them to the worklist, because they might
110 if (Instruction *Used = dyn_cast<Instruction>(*OI))
111 WorkList.push_back(Used);
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 29 enum IVarState { Unused, Used };
40 I->second = Used;
65 I->second = Used;
159 << "' is never used by the methods in its @implementation "
160 "(although it may be used by category methods).";
  /development/tools/emulator/opengl/system/egl/
Android.mk 18 # Used to access the Bionic private OpenGL TLS slot
  /frameworks/base/data/keyboards/
common.mk 16 # Used by Android.mk and keyboards.mk.
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 35 /// strictest results for template argument deduction (as used for, e.g.,
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 11 // intended to be used by linker to optimize code at link time.
464 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used};
478 case Used:
493 case Used:
507 case Used:
508 S = Used;
654 Value == RecordStreamer::Used)
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 231 BitVector Used(NumRegs);
235 Used.set(Virt2PhysMap[Reg]);
241 if (Allocatable[Reg] && !Used[Reg] && !LIs->hasInterval(Reg)) {
244 if (Used[*AS] || LIs->hasInterval(*AS)) {
312 // Rewrite. Note we could have used MachineOperand::substPhysReg(), but
RenderMachineFunction.h 258 typedef enum { Dead, Defined, Used, AliveReg, AliveStack } LiveState;
RenderMachineFunction.cpp 569 return Used;
592 return Used;
743 lsStrs[Used] = "l-u";
    [all...]
  /external/v8/tools/
codemap.js 13 // contributors may be used to endorse or promote products derived
36 * Dynamic code entries. Used for JIT compiled code.
46 * Static code entries. Used for statically compiled code.
51 * Libraries entries. Used for the whole static code libraries.
logreader.js 13 // contributors may be used to endorse or promote products derived
29 * @fileoverview Log Reader is used to process log file produced by V8.
36 * @param {Array.<Object>} dispatchTable A table used for parsing and processing
61 * Used for printing error messages.
  /external/sqlite/dist/
shell.c.orig 194 ** Used to prevent warnings about unused parameters
223 ** This is the name of our program. It is set in main(), used
291 ** from within an SQL statement. This program used to use the
395 ** the main program to the callback. This is used to communicate
599 ** Output a single term of CSV. Actually, p->separator is used for
879 ** If the third argument, quote, is not '\0', then it is used as a
924 ** This is used, for example, to show the schema of the database by
980 fprintf(pArg->out, "Memory Used: %d (max %d) bytes\n", iCur, iHiwtr);
985 ** Not currently used by the CLI.
988 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr)
    [all...]
shell.c 199 ** Used to prevent warnings about unused parameters
228 ** This is the name of our program. It is set in main(), used
296 ** from within an SQL statement. This program used to use the
400 ** the main program to the callback. This is used to communicate
604 ** Output a single term of CSV. Actually, p->separator is used for
884 ** If the third argument, quote, is not '\0', then it is used as a
929 ** This is used, for example, to show the schema of the database by
985 fprintf(pArg->out, "Memory Used: %d (max %d) bytes\n", iCur, iHiwtr);
990 ** Not currently used by the CLI.
993 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr)
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 90 /// \brief A placeholder type used to construct an empty shell of a
237 /// \brief Whether this declaration was "used", meaning that a definition is
239 unsigned Used : 1;
242 /// The difference with 'Used' is whether the reference appears in a
243 /// evaluated context or not, e.g. functions used in uninstantiated templates
244 /// are regarded as "referenced" but not "used".
248 /// Access - Used by C++ decls for the access specifier.
287 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
298 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
443 /// \brief Whether this declaration was used, meaning that a definitio
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 476 bool Used, bool Renamed) {
480 if (Used)
580 bool Used = UsedInReloc.count(&Symbol);
585 Used || WeakrefUsed || isSignature,
595 bool Local = isLocal(*it, isSignature, Used);
602 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
611 if (isSignature && !Used)
    [all...]
ELFObjectWriter.h 44 bool Used, bool Renamed);
  /external/v8/test/mjsunit/
sparse-array-reverse.js 13 // contributors may be used to endorse or promote products derived
59 // CONG pseudo random number generator. Used for fuzzing the sparse array
  /external/clang/lib/AST/
DeclCXX.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 215 // If a used value is defined outside the region, it's an input. If an
216 // instruction is used outside the region, it's an output.
267 DEBUG(dbgs() << "value used in func: " << *value << "\n");
274 DEBUG(dbgs() << "instr used in func: " << **I << "\n");
360 static BasicBlock* FindPhiPredForUseInBlock(Value* Used, BasicBlock* BB) {
361 for (Value::use_iterator UI = Used->use_begin(),
362 UE = Used->use_end(); UI != UE; ++UI) {
546 // If the output value is used by a phi in the target block,
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jsevalcontext.js 17 * @fileoverview This class is used to evaluate expressions in a local
18 * context. Used by JstProcessor.
24 * context. These can be used in js expression in jstemplate
44 * So far, these are only used here, but we could use them thoughout
119 * $this can be used to refer to it). Notice this can even be value,
197 * Recycle a used JsEvalContext instance, so we can avoid creating one
279 * undefined. Used mostly for testing.
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jsevalcontext.js 17 * @fileoverview This class is used to evaluate expressions in a local
18 * context. Used by JstProcessor.
24 * context. These can be used in js expression in jstemplate
44 * So far, these are only used here, but we could use them thoughout
119 * $this can be used to refer to it). Notice this can even be value,
197 * Recycle a used JsEvalContext instance, so we can avoid creating one
279 * undefined. Used mostly for testing.
  /external/v8/src/
runtime.js 13 // contributors may be used to endorse or promote products derived
111 // ECMA-262, section 11.8.5, page 53. The 'ncr' parameter is used as
381 // Get an array of property keys for the given object. Used in
390 // it has. Otherwise returns 0 (smi). Used in for-in statements.
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 369 /* Expand all inherited members in the class. Used when initiating page search */

Completed in 851 milliseconds

1 2 3