HomeSort by relevance Sort by last modified time
    Searched defs:Name (Results 176 - 200 of 733) sorted by null

1 2 3 4 5 6 78 91011>>

  /art/runtime/base/
histogram.h 44 // with the same name using CumulativeLogger::HistogramComparator.
45 explicit Histogram(const char* name);
47 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
86 const std::string& Name() const {
  /external/chromium_org/base/win/
registry.h 21 // are "values", which are <name, data> pairs, with an associated data type.
39 LONG CreateKey(const wchar_t* name, REGSAM access);
44 // Opens an existing reg key, given the relative key name.
64 // Determine the nth value's name.
65 LONG GetValueNameAt(int index, std::wstring* name) const;
72 LONG DeleteKey(const wchar_t* name);
76 LONG DeleteEmptyKey(const wchar_t* name);
79 LONG DeleteValue(const wchar_t* name);
83 // Returns an int32 value. If |name| is NULL or empty, returns the default
85 LONG ReadValueDW(const wchar_t* name, DWORD* out_value) const
    [all...]
  /external/chromium_org/sandbox/win/src/
target_process.h 78 // Returns the name of the executable.
79 const wchar_t* Name() const {
94 ResultCode TransferVariable(const char* name, void* address, size_t size);
115 // Full name of the target executable.
  /external/chromium_org/third_party/leveldatabase/src/db/
dbformat.cc 46 const char* InternalKeyComparator::Name() const {
101 const char* InternalFilterPolicy::Name() const {
102 return user_policy_->Name();
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_instruction.c 145 const char *Name;
341 * Return string name for given program opcode.
347 return InstInfo[opcode].Name;
prog_parameter.h 73 const char *Name; /**< Null-terminated string */
130 gl_register_file type, const char *name,
138 const char *name, const gl_constant_value values[4]);
142 const char *name, const gl_constant_value values[4],
157 const char *name, GLuint size, GLenum datatype,
162 const char *name, GLint size, GLenum datatype, GLint attrib);
170 GLsizei nameLen, const char *name);
174 GLsizei nameLen, const char *name);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texfetch.c 113 gl_format Name;
1122 /* check that the table entries are sorted by format name */
1125 assert(texfetch_funcs[fmt].Name == fmt);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType1FontDictionary_autogen.cpp 35 SkString SkPdfType1FontDictionary::Name(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Name", "");
44 return get("Name", "") != NULL;
SkPdfType3FontDictionary_autogen.cpp 35 SkString SkPdfType3FontDictionary::Name(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Name", "");
44 return get("Name", "") != NULL;
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrDistanceFieldTextureEffect.h 43 static const char* Name() { return "DistanceFieldTexture"; }
96 static const char* Name() { return "DistanceFieldLCDTexture"; }
  /external/chromium_org/v8/src/
func-name-inferrer.h 17 // FuncNameInferrer is a stateful class that is used to perform name
20 // to a variable or a property (see test-func-name-inference.cc for examples.)
23 // (assignments, declarations, object literals) we collect name strings,
25 // parsing the RHS we can infer a name for function literals that do not have
26 // a name.
31 // Returns whether we have entered name collection state.
34 // Pushes an enclosing the name of enclosing function onto names stack.
35 void PushEnclosingName(Handle<String> name);
37 // Enters name collection state.
42 // Pushes an encountered name onto names stack when in collection state
84 Handle<String> name; member in struct:v8::internal::FuncNameInferrer::Name
    [all...]
  /external/clang/lib/CodeGen/
CGVTT.cpp 109 StringRef Name = OutName.str();
120 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
  /external/clang/lib/Driver/
Types.cpp 20 const char *Name;
27 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) \
28 { NAME, FLAGS, TEMP_SUFFIX, TY_##PP_TYPE, },
40 return getInfo(Id).Name;
182 types::ID types::lookupTypeForTypeSpecifier(const char *Name) {
186 strcmp(Name, getInfo(Id).Name) == 0)
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersASTChecker.cpp 99 StringRef Name = getCalleeName(CE);
100 if (Name.empty())
106 if (Name.equals("CFArrayCreate") || Name.equals("CFSetCreate")) {
113 } else if (Name.equals("CFDictionaryCreate")) {
134 OsName << " Invalid use of '" << Name << "'" ;
141 << Name << "' must be a C array of pointer-sized values, not '"
ObjCContainersChecker.cpp 82 StringRef Name = C.getCalleeName(CE);
83 if (Name.empty() || CE->getNumArgs() < 1)
87 if (Name.equals("CFArrayCreate")) {
97 if (Name.equals("CFArrayGetCount")) {
105 StringRef Name = C.getCalleeName(CE);
106 if (Name.empty() || CE->getNumArgs() < 2)
110 if (Name.equals("CFArrayGetValueAtIndex")) {
ObjCMissingSuperCallChecker.cpp 87 /// to check. The name of the found superclass is stored in SuperclassName.
90 /// \param[out] SuperclassName On return, the found superclass name.
203 const char *Name = "Missing call to superclass";
211 BR.EmitBasicReport(MD, this, Name, categories::CoreFoundationObjectiveC,
  /external/clang/tools/libclang/
CLog.h 42 std::string Name;
57 static LogRef make(llvm::StringRef name,
60 return new Logger(name, trace);
64 explicit Logger(llvm::StringRef name, bool trace)
65 : Name(name), Trace(trace), LogOS(Msg) { }
99 #define LOG_SECTION(NAME) \
100 if (clang::cxindex::LogRef Log = clang::cxindex::Logger::make(NAME))
  /external/llvm/include/llvm/ADT/
Statistic.h 37 const char *Name;
43 const char *getName() const { return Name; }
47 void construct(const char *name, const char *desc) {
48 Name = name; Desc = desc;
  /external/llvm/include/llvm/Analysis/
LibCallSemantics.h 65 /// Name - This is the name of the libcall this describes.
66 const char *Name;
161 /// terminated by an entry with a NULL name.
  /external/llvm/include/llvm/MC/
MCSymbol.h 26 /// MCSymbol - Instances of this class represent a symbol name in the MC file,
39 /// Name - The name of the symbol. The referred-to string data is actually
41 StringRef Name;
62 MCSymbol(StringRef name, bool isTemporary)
63 : Name(name), Section(nullptr), Value(nullptr),
69 /// getName - Get the symbol name.
70 StringRef getName() const { return Name; }
72 /// @name Accessor
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 358 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name.
359 std::string Name;
361 Name += (char)Record[i];
362 CurBlockInfo->Name = Name;
367 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name.
368 std::string Name;
370 Name += (char)Record[i];
372 Name));
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 179 StringRef Name;
182 if (I->getName(Name)) continue;
186 if (Wrapper.op_write_native_code(Name.data(), Addr, (void*)Addr, Size)
189 << Name << " at ["
  /external/llvm/lib/IR/
GCOV.cpp 123 << " != " << CfgChecksum << " in (" << Name << ").\n";
127 if (!Buff.readString(Name)) return false;
151 errs() << "Unexpected block number: " << BlockNo << " (in " << Name
176 errs() << "Unexpected block number: " << BlockNo << " (in " << Name
188 // Read the source file name.
192 << " != " << F << " (in " << Name << ").\n";
223 << GCDAIdent << " (in " << Name << ").\n";
231 << GCDAChecksum << " (in " << Name << ").\n";
240 << " != " << CfgChecksum << " (in " << Name << ").\n";
247 if (Name != GCDAName)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonExpandPredSpillCode.cpp 187 const char *Name = "Hexagon Expand Predicate Spill Code";
188 PassInfo *PI = new PassInfo(Name, "hexagon-spill-pred",
HexagonSplitTFRCondSets.cpp 223 const char *Name = "Hexagon Split TFRCondSets";
224 PassInfo *PI = new PassInfo(Name, "hexagon-split-tfr",

Completed in 1553 milliseconds

1 2 3 4 5 6 78 91011>>