HomeSort by relevance Sort by last modified time
    Searched refs:Used (Results 1 - 25 of 72) 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 114 bool Used;
124 InputArg() : VT(MVT::Other), Used(false) {}
125 InputArg(ArgFlagsTy flags, EVT vt, bool used,
127 : Flags(flags), Used(used), OrigArgIndex(origIdx), PartOffset(partOffs) {
  /external/llvm/lib/Transforms/Scalar/
DCE.cpp 14 // it rechecks instructions that were used by removed instructions to see if
110 // instructions being used, add them to the worklist, because they might
114 if (Instruction *Used = dyn_cast<Instruction>(*OI))
115 WorkList.push_back(Used);
  /device/generic/goldfish/opengl/system/egl/
Android.mk 18 # Used to access the Bionic private OpenGL TLS slot
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 30 enum IVarState { Unused, Used };
41 I->second = Used;
75 I->second = Used;
170 << "' is never used by the methods in its @implementation "
171 "(although it may be used by category methods).";
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 35 /// strictest results for template argument deduction (as used for, e.g.,
    [all...]
  /frameworks/av/services/audioflinger/
Android.mk 77 # Define ANDROID_SMP appropriately. Used to get inline tracing fast-path.
  /frameworks/base/data/keyboards/
common.mk 16 # Used by Android.mk and keyboards.mk.
  /ndk/tests/build/topological-sort/jni/
Android.mk 0 # Used to check that ndk-build does a proper topological sort of
  /external/bison/
cfg.mk 25 # Used in maint.mk's web-manual rule
50 # The local directory containing the checked-out copy of gnulib used in
51 # this release. Used solely to get a date for the "announcement" target.
  /external/llvm/tools/lto/
LTOModule.cpp 11 // intended to be used by linker to optimize code at link time.
649 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used };
663 case Used:
678 case Used:
692 case Used:
693 S = Used;
854 Value == RecordStreamer::Used)
  /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/llvm/lib/MC/
ELFObjectWriter.cpp 48 bool Used, bool Renamed);
787 bool Used, bool Renamed) {
791 if (Used)
891 bool Used = UsedInReloc.count(&Symbol);
896 Used || WeakrefUsed || isSignature,
906 bool Local = isLocal(*it, isSignature, Used);
913 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
922 if (isSignature && !Used)
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 94 /// \brief A placeholder type used to construct an empty shell of a
188 // Enumeration values used in the bits stored in NextInContextAndBits.
204 /// The extra two bits are used for the TopLevelDeclInObjCContainer and
257 /// \brief Whether this declaration was "used", meaning that a definition is
259 unsigned Used : 1;
262 /// The difference with 'Used' is whether the reference appears in a
263 /// evaluated context or not, e.g. functions used in uninstantiated templates
264 /// are regarded as "referenced" but not "used".
271 /// Access - Used by C++ decls for the access specifier.
309 HasAttrs(false), Implicit(false), Used(false), Referenced(false)
    [all...]
  /external/v8/test/mjsunit/
array-literal-transitions.js 13 // contributors may be used to endorse or promote products derived
45 function get(foo) { return foo; } // Used to generate dynamic values.
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
array-tostring.js 13 // contributors may be used to endorse or promote products derived
53 // used instead.
127 // Used on a string (which looks like an array of characters).
144 // ToObject is called first and the same object is being used for the
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 165 // If a used value is defined outside the region, it's an input. If an
166 // instruction is used outside the region, it's an output.
314 DEBUG(dbgs() << "value used in func: " << *value << "\n");
321 DEBUG(dbgs() << "instr used in func: " << **I << "\n");
407 static BasicBlock* FindPhiPredForUseInBlock(Value* Used, BasicBlock* BB) {
408 for (Value::use_iterator UI = Used->use_begin(),
409 UE = Used->use_end(); UI != UE; ++UI) {
593 // 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/clang/lib/AST/
DeclCXX.cpp     [all...]
  /external/sqlite/dist/orig/
shell.c 211 ** Used to prevent warnings about unused parameters
240 ** This is the name of our program. It is set in main(), used
308 ** from within an SQL statement. This program used to use the
413 ** the main program to the callback. This is used to communicate
619 ** Output a single term of CSV. Actually, p->separator is used for
898 ** If the third argument, quote, is not '\0', then it is used as a
1023 fprintf(pArg->out, "Memory Used: %d (max %d) bytes\n", iCur, iHiwtr);
1028 ** Not currently used by the CLI.
1031 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr);
1037 ** Not currently used by the CLI
    [all...]
  /external/sqlite/dist/
shell.c 216 ** Used to prevent warnings about unused parameters
245 ** This is the name of our program. It is set in main(), used
313 ** from within an SQL statement. This program used to use the
418 ** the main program to the callback. This is used to communicate
624 ** Output a single term of CSV. Actually, p->separator is used for
903 ** If the third argument, quote, is not '\0', then it is used as a
1028 fprintf(pArg->out, "Memory Used: %d (max %d) bytes\n", iCur, iHiwtr);
1033 ** Not currently used by the CLI.
1036 ** fprintf(pArg->out, "Number of Pcache Pages Used: %d (max %d) pages\n", iCur, iHiwtr);
1042 ** Not currently used by the CLI
    [all...]
  /device/generic/goldfish/opengl/
common.mk 9 # The following macros are used to start a new GLES emulation module.
26 # Internal list of all declared modules (used for sanity checking)
42 # Used to end a module definition, see function definitions above

Completed in 1324 milliseconds

1 2 3