HomeSort by relevance Sort by last modified time
    Searched defs:Name (Results 1 - 25 of 493) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/tools/debugserver/source/
SysSignal.cpp 19 SysSignal::Name(int signal)
  /external/clang/lib/Basic/
Attributes.cpp 9 StringRef Name = Attr->getName();
10 // Normalize the attribute name, __foo__ becomes foo.
11 if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__"))
12 Name = Name.substr(2, Name.size() - 4);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffHeader.pl 16 # * Neither the name of Apple Computer, Inc. ("Apple") nor the names of
94 diffName => "new file with spaces in its name",
208 Name: svn:mime-type
parseSvnDiffFooter.pl 17 # * Neither the name of Apple Computer, Inc. ("Apple") nor the names of
134 Name: svn:executable
371 Name: documentation
parseSvnProperty.pl 17 # * Neither the name of Apple Computer, Inc. ("Apple") nor the names of
54 name => "svn:executable",
70 name => "svn:executable",
86 name => "svn:mergeinfo",
102 name => "svn:mergeinfo",
119 name => "svn:mergeinfo",
133 Name: svn:mergeinfo
139 name => "svn:mergeinfo",
150 Name: svn:executable
155 name => "svn:executable"
    [all...]
parseDiff.pl 81 Name: svn:mime-type
117 Name: svn:mime-type
295 Name: svn:executable
337 Name: svn:executable
506 Name: svn:mime-type
508 Name: svn:executable
545 Name: svn:mime-type
547 Name: svn:executable
586 Name: svn:mime-type
628 Name: svn:mime-typ
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Property.h 10 UString Name;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 18 * 3. The name of the author may not be used to endorse or promote products
42 public GrammarRuleAttribute(string name) {
43 this._name = name;
46 public string Name {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 18 * 3. The name of the author may not be used to endorse or promote products
44 public GrammarRuleAttribute(string name)
46 this._name = name;
49 public string Name
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFDFNamedPageReferenceDictionary_autogen.cpp 11 SkString SkPdfFDFNamedPageReferenceDictionary::Name(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Name", "");
20 return get("Name", "") != NULL;
SkPdfRubberStampAnnotationDictionary_autogen.cpp 35 SkString SkPdfRubberStampAnnotationDictionary::Name(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Name", "");
44 return get("Name", "") != NULL;
SkPdfFileAttachmentAnnotationDictionary_autogen.cpp 47 SkString SkPdfFileAttachmentAnnotationDictionary::Name(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Name", "");
56 return get("Name", "") != NULL;
SkPdfSoundAnnotationDictionary_autogen.cpp 47 SkString SkPdfSoundAnnotationDictionary::Name(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Name", "");
56 return get("Name", "") != NULL;
SkPdfTextAnnotationDictionary_autogen.cpp 47 SkString SkPdfTextAnnotationDictionary::Name(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Name", "");
56 return get("Name", "") != NULL;
  /external/chromium_org/media/video/capture/
video_capture_device.cc 12 const std::string VideoCaptureDevice::Name::GetNameAndModel() const {
22 VideoCaptureDevice::Name::Name() {}
24 VideoCaptureDevice::Name::Name(const std::string& name, const std::string& id)
25 : device_name_(name), unique_id_(id) {}
28 VideoCaptureDevice::Name::Name(const std::string& name,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglarray.h 40 const char *Name;
49 _eglCreateArray(const char *name, EGLint init_size);
egldriver.h 74 const char *Name; /**< name of this driver */
eglmode.h 53 const char *Name;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_getproc.c 40 const char *Name;
190 for (i = 0; GLX_functions[i].Name; i++) {
191 if (strcmp(GLX_functions[i].Name, funcName) == 0)
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
enum_type_wrapper.py 15 # * Neither the name of Google Inc. nor the names of its
33 Instances are created as properties with the same name as the enum they wrap
51 def Name(self, number):
52 """Returns a string containing the name of an enum value."""
54 return self._enum_type.values_by_number[number].name
55 raise ValueError('Enum %s has no name defined for value %d' % (
56 self._enum_type.name, number))
58 def Value(self, name):
59 """Returns the value coresponding to the given enum name."""
60 if name in self._enum_type.values_by_name
    [all...]
  /external/chromium_org/third_party/skia/bench/
Benchmark.cpp 13 const char* SkTriState::Name[] = { "default", "true", "false" };
  /external/chromium_org/v8/src/
token.h 14 // same signature M(name, string, precedence), where name is the
15 // symbolic token name, string is the corresponding syntactic symbol
26 #define IGNORE_TOKEN(name, string, precedence)
171 #define T(name, string, precedence) name,
178 // Returns a string corresponding to the C++ token name
180 static const char* Name(Value tok) {
  /external/clang/include/clang/Basic/
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") {
31 Out << "#define " << Name << ' ' << Value << '\n';
34 /// Append a \#undef line for Name. Name should be of the form XXX
36 void undefineMacro(const Twine &Name) {
37 Out << "#undef " << Name << '\n';
  /external/llvm/include/llvm/MC/
MCFixupKindInfo.h 26 /// A target specific name for the fixup kind. The names will be unique for
28 const char *Name;
  /external/llvm/lib/Object/
ObjectFile.cpp 31 StringRef Name;
32 if (std::error_code EC = getSymbolName(Symb, Name))
34 OS << Name;

Completed in 889 milliseconds

1 2 3 4 5 6 7 8 91011>>