HomeSort by relevance Sort by last modified time
    Searched refs:Name (Results 1501 - 1525 of 2465) sorted by null

<<61626364656667686970>>

  /external/webrtc/webrtc/libjingle/xmpp/
presencereceivetask.cc 45 if (stanza->Name() != QN_PRESENCE) {
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 150 const char *Name) const {
152 OS << "Map Name: " << Name << "\n";
179 const char *Name) const {
181 OS << "Map Name: " << Name << "\n";
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 150 const char *Name) const {
152 OS << "Map Name: " << Name << "\n";
179 const char *Name) const {
181 OS << "Map Name: " << Name << "\n";
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 150 const char *Name) const {
152 OS << "Map Name: " << Name << "\n";
179 const char *Name) const {
181 OS << "Map Name: " << Name << "\n";
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ipexport.h 73 WCHAR Name[MAX_ADAPTER_NAME];
ipxrtdef.h 80 UCHAR Name[16];
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ast.py 160 # Name
189 for name in ast_node._fields:
190 value = getattr(ast_node, name)
227 self.assertIsInstance(slc.step, ast.Name)
242 self.assertTrue(issubclass(ast.Name, ast.expr))
249 for name, item in ast.__dict__.iteritems():
250 if isinstance(item, type) and name != 'AST' and name[0].isupper():
372 m = ast.Module([ast.Expr(ast.Name(u"x", ast.Load()))])
396 "Module(body=[Expr(value=Call(func=Name(id='spam', ctx=Load()),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ast.py 160 # Name
189 for name in ast_node._fields:
190 value = getattr(ast_node, name)
227 self.assertIsInstance(slc.step, ast.Name)
242 self.assertTrue(issubclass(ast.Name, ast.expr))
249 for name, item in ast.__dict__.iteritems():
250 if isinstance(item, type) and name != 'AST' and name[0].isupper():
372 m = ast.Module([ast.Expr(ast.Name(u"x", ast.Load()))])
396 "Module(body=[Expr(value=Call(func=Name(id='spam', ctx=Load()),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ast.py 160 # Name
189 for name in ast_node._fields:
190 value = getattr(ast_node, name)
227 self.assertIsInstance(slc.step, ast.Name)
242 self.assertTrue(issubclass(ast.Name, ast.expr))
249 for name, item in ast.__dict__.iteritems():
250 if isinstance(item, type) and name != 'AST' and name[0].isupper():
372 m = ast.Module([ast.Expr(ast.Name(u"x", ast.Load()))])
396 "Module(body=[Expr(value=Call(func=Name(id='spam', ctx=Load()),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ast.py 160 # Name
189 for name in ast_node._fields:
190 value = getattr(ast_node, name)
227 self.assertIsInstance(slc.step, ast.Name)
242 self.assertTrue(issubclass(ast.Name, ast.expr))
249 for name, item in ast.__dict__.iteritems():
250 if isinstance(item, type) and name != 'AST' and name[0].isupper():
372 m = ast.Module([ast.Expr(ast.Name(u"x", ast.Load()))])
396 "Module(body=[Expr(value=Call(func=Name(id='spam', ctx=Load()),
    [all...]
  /system/connectivity/shill/dbus/
chromeos_wimax_network_proxy.cc 41 const char ChromeosWiMaxNetworkProxy::kPropertyName[] = "Name";
54 RegisterProperty(kPropertyName, &name);
110 string ChromeosWiMaxNetworkProxy::Name(Error* /*error*/) {
112 if (!properties_->name.GetAndBlock()) {
113 LOG(ERROR) << "Failed to get Name";
116 return properties_->name.value();
  /external/clang/include/clang/Sema/
DeclSpec.h 51 /// \brief Represents a C++ nested-name-specifier or a global scope specifier.
75 /// \brief Retrieve the representation of the nested-name-specifier.
80 /// \brief Extend the current nested-name-specifier by another
81 /// nested-name-specifier component of the form 'type::'.
83 /// \param Context The AST context in which this nested-name-specifier
94 /// \brief Extend the current nested-name-specifier by another
95 /// nested-name-specifier component of the form 'identifier::'.
97 /// \param Context The AST context in which this nested-name-specifier
108 /// \brief Extend the current nested-name-specifier by another
109 /// nested-name-specifier component of the form 'namespace::'
    [all...]
  /art/runtime/base/
histogram-inl.h 47 template <class Value> inline Histogram<Value>::Histogram(const char* name)
50 name_(name),
55 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width,
59 name_(name),
195 os << Name() << ":\tSum: " << PrettyDuration(Sum() * kAdjust) << " "
205 os << Name()
  /external/bison/src/
output.c 48 | Create a function NAME which associates to the muscle NAME the |
55 #define GENERATE_MUSCLE_INSERT_TABLE(Name, Type) \
58 Name (char const *name, \
89 muscle_insert (name, obstack_finish (&format_obstack)); \
94 obstack_printf (&format_obstack, "%s_min", name); \
97 obstack_printf (&format_obstack, "%s_max", name); \
331 n, p->name);
334 n, p->type, p->name);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/
rfc2315.py 77 namedtype.NamedType('issuer', Name()),
137 namedtype.NamedType('issuer', Name()),
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 578 /// \brief Matches overloaded operators with a specific name.
591 explicit HasOverloadedOperatorNameMatcher(const StringRef Name)
592 : SingleNodeMatcherInterface<T>(), Name(Name) {}
602 /// name.
604 return getOperatorSpelling(Node.getOperator()) == Name;
608 /// operator and has the given operator name.
611 getOperatorSpelling(Node.getOverloadedOperator()) == Name;
614 std::string Name;
617 /// \brief Matches named declarations with a specific name
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 54 // same format: name, parent node, and offset.
55 llvm::MDNode *CodeGenTBAA::createTBAAScalarType(StringRef Name,
57 return MDHelper.createTBAAScalarTypeNode(Name, Parent);
150 // TODO: Is there a way to get a program-wide unique name for a
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 28 getBuffer(const Twine &Name, int64_t FileSize, bool RequiresNullTerminator,
286 ScopedDir(const Twine &Name, bool Unique=false) {
289 EC = llvm::sys::fs::createUniqueDirectory(Name, Path);
291 Path = Name.str();
361 for (const std::string &Name : Contents) {
362 ASSERT_FALSE(Name.empty());
363 int Index = Name[Name.size()-1] - 'a';
710 " 'name': '//root/',\n"
713 " 'name': 'file1',\n
    [all...]
  /external/clang/unittests/libclang/
LibclangTest.cpp 80 " 'name': \"/path/virtual\",\n"
84 " 'name': \"foo.h\",\n"
102 " 'name': \"/path/\\u266B\",\n"
106 " 'name': \"\\u2602.h\",\n"
130 " 'name': \"/another/dir\",\n"
134 " 'name': \"foo2.h\",\n"
141 " 'name': \"/path/virtual/dir\",\n"
145 " 'name': \"foo1.h\",\n"
150 " 'name': \"foo3.h\",\n"
155 " 'name': \"in/subdir\",\n
    [all...]
  /external/compiler-rt/make/
lib_platforms.mk 23 $(call Set,$(PlatformKey).Name,$(PlatformName))
  /external/dnsmasq/contrib/Suse/
dnsmasq-suse.spec 7 Name: dnsmasq
19 Source0: %{name}-%{version}.tar.bz2
20 BuildRoot: /var/tmp/%{name}-%{version}
42 patch -p0 <rpm/%{name}-SuSE.patch
  /external/iputils/
iputils.spec 7 Name: iputils
14 BuildRoot: %{_tmppath}/%{name}-root
25 %setup -q %{name}
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 183 CAMLprim value llvm_target_by_name(value Name) {
184 return llvm_target_option(LLVMGetTargetFromName(String_val(Name)));
  /external/llvm/include/llvm/IR/
CallSite.h 373 Optional<OperandBundleUse> getOperandBundle(StringRef Name) const {
374 CALLSITE_DELEGATE_GETTER(getOperandBundle(Name));
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 106 uint32_t Name; // Printable name for the reg (for debugging)
360 /// \brief Return the human-readable symbolic target-specific name for the
363 return RegStrings + get(RegNo).Name;

Completed in 1760 milliseconds

<<61626364656667686970>>