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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/cloud_print/gcp20/prototype/
local_print_job.cc 13 LocalPrintJob::Info::Info() : state(STATE_DRAFT), expires_in(-1) {
16 LocalPrintJob::Info::~Info() {
local_print_job.h 34 struct Info {
35 Info();
36 ~Info();
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 27 * TODO: Merge at least most of the info from the Dops class into
32 private static final Info[] INFO;
40 public static final Info SPECIAL_FORMAT =
41 new Info(Opcodes.SPECIAL_FORMAT, "<special>",
46 public static final Info PACKED_SWITCH_PAYLOAD =
47 new Info(Opcodes.PACKED_SWITCH_PAYLOAD, "packed-switch-payload",
51 public static final Info SPARSE_SWITCH_PAYLOAD =
52 new Info(Opcodes.SPARSE_SWITCH_PAYLOAD, "sparse-switch-payload",
56 public static final Info FILL_ARRAY_DATA_PAYLOAD
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
OpcodeInfo.java 27 * TODO: Merge at least most of the info from the Dops class into
32 private static final Info[] INFO;
40 public static final Info SPECIAL_FORMAT =
41 new Info(Opcodes.SPECIAL_FORMAT, "<special>",
46 public static final Info PACKED_SWITCH_PAYLOAD =
47 new Info(Opcodes.PACKED_SWITCH_PAYLOAD, "packed-switch-payload",
51 public static final Info SPARSE_SWITCH_PAYLOAD =
52 new Info(Opcodes.SPARSE_SWITCH_PAYLOAD, "sparse-switch-payload",
56 public static final Info FILL_ARRAY_DATA_PAYLOAD
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 24 const MCInstrInfo *Info;
27 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {}
32 return Info->get(Inst.getOpcode()).isBranch();
36 return Info->get(Inst.getOpcode()).isConditionalBranch();
40 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
44 return Info->get(Inst.getOpcode()).isIndirectBranch();
48 return Info->get(Inst.getOpcode()).isCall();
52 return Info->get(Inst.getOpcode()).isReturn()
    [all...]
  /external/chromium_org/tools/gyp/test/mac/postbuild-defaults/
postbuild-defaults.sh 8 # This is the built Info.plist in the output directory.
9 PLIST="${BUILT_PRODUCTS_DIR}"/Test.app/Contents/Info # No trailing .plist
12 # This is the source Info.plist next to this script file.
13 PLIST="${SRCROOT}"/Info # No trailing .plist
  /external/llvm/include/llvm/Option/
Option.h 67 const OptTable::Info *Info;
71 Option(const OptTable::Info *Info, const OptTable *Owner);
75 return Info != 0;
79 assert(Info && "Must have a valid info!");
80 return Info->ID;
84 assert(Info && "Must have a valid info!");
    [all...]
  /external/chromium_org/third_party/re2/re2/
prefilter.cc 199 class Prefilter::Info {
201 Info();
202 ~Info();
204 // More constructors. They delete their Info* arguments.
205 static Info* Alt(Info* a, Info* b);
206 static Info* Concat(Info* a, Info* b)
407 Info* info = new Info(); local
415 Info* info = new Info(); local
423 Prefilter::Info* info = new Prefilter::Info(); local
430 Prefilter::Info* info = new Prefilter::Info(); local
440 Prefilter::Info *info = new Prefilter::Info(); local
447 Prefilter::Info* info = new Prefilter::Info(); local
513 Prefilter::Info* info = w.WalkExponential(re, NULL, 100000); local
534 Prefilter::Info *info; local
655 Prefilter::Info *info = BuildInfo(simple); local
    [all...]
  /external/regex-re2/re2/
prefilter.cc 199 class Prefilter::Info {
201 Info();
202 ~Info();
204 // More constructors. They delete their Info* arguments.
205 static Info* Alt(Info* a, Info* b);
206 static Info* Concat(Info* a, Info* b)
407 Info* info = new Info(); local
415 Info* info = new Info(); local
423 Prefilter::Info* info = new Prefilter::Info(); local
430 Prefilter::Info* info = new Prefilter::Info(); local
440 Prefilter::Info *info = new Prefilter::Info(); local
447 Prefilter::Info* info = new Prefilter::Info(); local
513 Prefilter::Info* info = w.WalkExponential(re, NULL, 100000); local
534 Prefilter::Info *info; local
655 Prefilter::Info *info = BuildInfo(simple); local
    [all...]
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 56 const Diagnostic &Info,
61 if (Info.getID() == diag::fatal_too_many_errors) {
76 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID()) &&
77 !DiagnosticIDs::isDefaultMappingAsError(Info.getID())) {
82 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID());
92 DiagnosticIDs::getCategoryNumberForDiag(Info.getID());
109 const Diagnostic &Info) {
111 DiagnosticConsumer::HandleDiagnostic(Level, Info);
116 Info.FormatDiagnostic(OutStr);
119 printDiagnosticOptions(DiagMessageStream, Level, Info, *DiagOpts)
    [all...]
TextDiagnosticBuffer.cpp 23 const Diagnostic &Info) {
25 DiagnosticConsumer::HandleDiagnostic(Level, Info);
28 Info.FormatDiagnostic(Buf);
33 Notes.push_back(std::make_pair(Info.getLocation(), Buf.str()));
36 Warnings.push_back(std::make_pair(Info.getLocation(), Buf.str()));
40 Errors.push_back(std::make_pair(Info.getLocation(), Buf.str()));
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 104 BBInfo *Info = new (Allocator) BBInfo(BB, 0);
105 BBMap[BB] = Info;
106 WorkList.push_back(Info);
113 Info = WorkList.pop_back_val();
115 Traits::FindPredecessorBlocks(Info->BB, &Preds);
116 Info->NumPreds = Preds.size();
117 if (Info->NumPreds == 0)
118 Info->Preds = 0;
120 Info->Preds = static_cast<BBInfo**>
121 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*)
    [all...]
  /external/chromium_org/third_party/skia/include/images/
SkMovie.h 55 struct Info {
62 virtual bool onGetInfo(Info*) = 0;
70 Info fInfo;
  /external/skia/include/images/
SkMovie.h 55 struct Info {
62 virtual bool onGetInfo(Info*) = 0;
70 Info fInfo;
  /external/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h 56 const Diagnostic &Info) {
58 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
60 Primary->HandleDiagnostic(DiagLevel, Info);
61 Secondary->HandleDiagnostic(DiagLevel, Info);
  /frameworks/compile/slang/
slang_diagnostic_buffer.cpp 43 clang::Diagnostic const &Info) {
44 clang::SourceLocation const &SrcLoc = Info.getLocation();
50 SrcLoc.print(*mSOS, Info.getSourceManager());
76 Info.FormatDiagnostic(Buf);
  /external/chromium_org/base/win/
scoped_handle.cc 16 struct Info {
22 typedef std::map<HANDLE, Info> HandleMap;
40 Info handle_info = { owner, pc1, pc2, thread_id };
41 std::pair<HANDLE, Info> item(handle, handle_info);
44 Info other = result.first->second;
58 Info other = i->second;
  /external/clang/lib/AST/
CommentCommandTraits.cpp 35 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
36 return Info;
41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID))
42 return Info;
95 CommandInfo *Info = new (Allocator) CommandInfo();
96 Info->Name = Name;
97 Info->ID = NextID++;
99 RegisteredCommands.push_back(Info);
101 return Info;
106 CommandInfo *Info = createCommandInfoWithName(CommandName)
    [all...]
ExprConstant.cpp 220 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
260 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E, uint64_t N);
262 void adjustIndex(EvalInfo &Info, const Expr *E, uint64_t N) {
267 diagnosePointerArithmetic(Info, E, Entries.back().ArrayIndex);
280 diagnosePointerArithmetic(Info, E, uint64_t(IsOnePastTheEnd) + N);
288 EvalInfo &Info;
316 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
600 explicit FoldConstant(EvalInfo &Info)
601 : Enabled(Info.EvalStatus.Diag && Info.EvalStatus.Diag->empty() &
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
PrettyPatch_test.rb 10 class Info
47 def check_one_patch(id, info)
50 description += " (" + info[Info::TITLE] + ")" unless info[Info::TITLE].nil?
57 assert_equal(info[Info::FILE], $last_prettify_file_count, "Wrong number of files changed in " + description)
58 assert_equal(info[Info::ADD], $last_prettify_part_count["add"], "Wrong number of 'add' parts in " + description
    [all...]
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 114 template<typename Info>
122 typename Info::key_type key;
123 typename Info::data_type data;
127 Item(typename Info::key_type_ref k, typename Info::data_type_ref d,
128 Info &InfoObj)
170 void insert(typename Info::key_type_ref key,
171 typename Info::data_type_ref data) {
172 Info InfoObj;
176 void insert(typename Info::key_type_ref key
    [all...]
  /frameworks/native/services/sensorservice/
BatteryService.h 41 struct Info {
45 Info() : uid(0), handle(0), count(0) { }
46 Info(uid_t uid, int handle) : uid(uid), handle(handle), count(0) { }
47 bool operator < (const Info& rhs) const {
53 SortedVector<Info> mActivations;
  /frameworks/ex/carousel/test/src/com/android/carouseltest/
MyCarouselView.java 24 import com.android.ex.carousel.CarouselView.Info;
40 public Info getRenderScriptInfo() {
41 return new Info(R.raw.carousel);
  /external/clang/lib/Basic/
TargetInfo.cpp 322 bool TargetInfo::validateOutputConstraint(ConstraintInfo &Info) const {
323 const char *Name = Info.getConstraintStr().c_str();
329 Info.setIsReadWrite();
335 if (!validateAsmConstraint(Name, Info)) {
347 Info.setAllowsRegister();
354 Info.setAllowsMemory();
358 Info.setAllowsRegister();
359 Info.setAllowsMemory();
378 return Info.allowsMemory() || Info.allowsRegister()
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 106 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
107 if (!Context.getTargetInfo().validateOutputConstraint(Info))
110 << Info.getConstraintStr());
123 OutputConstraintInfos.push_back(Info);
138 TargetInfo::ConstraintInfo Info(Literal->getString(), InputName);
140 NumOutputs, Info)) {
143 << Info.getConstraintStr());
149 if (Info.allowsMemory() && !Info.allowsRegister()) {
153 << Info.getConstraintStr(
    [all...]

Completed in 1322 milliseconds

1 2 3 4 5 6 7 8 91011>>