HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 1276 - 1300 of 12087) sorted by null

<<51525354555657585960>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 168 let name = prefix ^ (String.make 1 op) in var
176 Ast.Prototype (name, args)
178 Ast.BinOpPrototype (name, args, binary_precedence)
180 raise (Stream.Error "expected function name in prototype")
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 88 (* At least one variable name is required. *)
194 let name = prefix ^ (String.make 1 op) in var
202 Ast.Prototype (name, args)
204 Ast.BinOpPrototype (name, args, binary_precedence)
206 raise (Stream.Error "expected function name in prototype")
  /external/llvm/include/llvm/Analysis/
CFLAliasAnalysis.h 126 /// \brief Provide access to a name for this pass for debugging purposes.
127 static StringRef name() { return "CFLAA"; } function in class:llvm::CFLAA
  /external/ltrace/
value_dict.c 30 const char *name; member in struct:named_value
58 tgt->name = strdup(src->name);
59 if (tgt->name == NULL)
63 free((char *)tgt->name);
73 free((char *)named->name);
101 const char *name, int own_name)
103 if (own_name && (name = strdup(name)) == NULL)
105 struct named_value element = { name, *val, own_name }
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe.h 60 const char *name; /**< for debugging */ member in struct:draw_stage
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILEvergreenDevice.cpp 16 std::string name = ST->getDeviceName(); local
17 if (name == "cedar") {
19 } else if (name == "redwood") {
21 } else if (name == "cypress") {
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_buffer.h 51 unsigned name; /**< the name of the GEM object */ member in struct:native_buffer::__anon20042::__anon20043
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_bo.h 57 uint32_t name; member in struct:radeon_bo
  /external/mesa3d/src/glsl/tests/
set_uniform_initializer_tests.cpp 33 const char *name, const glsl_type *type,
52 * Name of the uniform to be tested.
54 const char *name; member in class:set_uniform_initializer
76 this->name = "i";
95 * \param name Name for the actual storage slot
102 unsigned index_to_set, const char *name,
115 prog->UniformStorage[index_to_set].name = (char *) name;
133 prog->UniformStorage[i].name = (char *) "invalid slot"
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_buffer.c 322 xmesa_new_renderbuffer(struct gl_context *ctx, GLuint name,
328 GLuint name = 0; local
329 _mesa_init_renderbuffer(&xrb->Base.Base, name);
  /external/mesa3d/src/mesa/main/
remap.c 82 * point name terminates the array.
149 const char *name = spec + strlen(spec) + 1; local
150 _mesa_warning(NULL, "failed to remap %s", name);
154 const char *name = spec + strlen(spec) + 1; local
156 name, func_array[i].dispatch_offset, offset);
  /external/mockito/src/org/mockito/internal/util/reflection/
InstanceField.java 101 * Returns the name of the field.
103 * @return Name of the field.
105 public String name() { method in class:InstanceField
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DataEntryUrnBox.java 31 private String name; field in class:DataEntryUrnBox
40 return name;
48 return Utf8.utf8StringLengthInBytes(name) + 1 + Utf8.utf8StringLengthInBytes(location) + 1;
53 name = IsoTypeReader.readString(content);
60 byteBuffer.put(Utf8.convert(name));
67 return "DataEntryUrlBox[name=" + getName() + ";location=" + getLocation() + "]";
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChannelList.h 17 // * Neither the name of Industrial Light & Magic nor the names of
122 void insert (const char name[],
125 void insert (const std::string &name,
131 // [n] Returns a reference to the channel with name n.
132 // If no channel with name n exists, an Iex::ArgExc
135 // findChannel(n) Returns a pointer to the channel with name n,
136 // or 0 if no channel with name n exists.
140 Channel & operator [] (const char name[]);
141 const Channel & operator [] (const char name[]) const;
143 Channel & operator [] (const std::string &name);
351 ChannelList::Iterator::name () const function in class:Imf::ChannelList::Iterator
403 ChannelList::ConstIterator::name () const function in class:Imf::ChannelList::ConstIterator
    [all...]
ImfHeader.h 17 // * Neither the name of Industrial Light & Magic nor the names of
139 // insert(n,attr) If no attribute with name n exists, a new
140 // attribute with name n, and the same type as
144 // If an attribute with name n exists, and its
148 // If an attribute with name n exists, and its
154 void insert (const char name[],
157 void insert (const std::string &name,
164 // with name n. If no attribute with
165 // name n exists, an Iex::ArgExc is thrown.
168 // with name n and type T. If no attribut
464 Header::Iterator::name () const function in class:Imf::Header::Iterator
516 Header::ConstIterator::name () const function in class:Imf::Header::ConstIterator
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_option.hpp 28 template <int Level, int Name>
76 // Get the name of the socket option.
78 int name(const Protocol&) const function in class:asio::detail::socket_option::boolean
80 return Name;
131 template <int Level, int Name>
167 // Get the name of the socket option.
169 int name(const Protocol&) const function in class:asio::detail::socket_option::integer
171 return Name;
211 template <int Level, int Name>
260 // Get the name of the socket option
262 int name(const Protocol&) const function in class:asio::detail::socket_option::linger
    [all...]
  /external/pdfium/core/src/fpdfdoc/
doc_bookmark.cpp 79 CFX_ByteStringC name = pDest->GetString(); local
80 return CPDF_Dest(name_tree.LookupNamedDest(pDocument, name));
doc_link.cpp 81 CFX_ByteStringC name = pDest->GetString(); local
82 return CPDF_Dest(name_tree.LookupNamedDest(pDoc, name));
  /external/ppp/pppd/plugins/radius/
options.h 26 char name[OPTION_LEN]; /* name of the option */ member in struct:_option
  /external/proguard/src/proguard/classfile/util/
MemberFinder.java 44 * Finds the field with the given name and descriptor in the given
49 String name,
52 return (Field)findMember(referencingClass, clazz, name, descriptor, true);
57 * Finds the method with the given name and descriptor in the given
62 String name,
65 return (Method)findMember(referencingClass, clazz, name, descriptor, false);
70 * Finds the class member with the given name and descriptor in the given
75 String name,
87 (ClassVisitor)new NamedFieldVisitor(name, descriptor,
89 (ClassVisitor)new NamedMethodVisitor(name, descriptor
118 String name = method.getName(clazz); local
148 String name = field.getName(clazz); local
    [all...]
  /external/proguard/src/proguard/io/
ZipDataEntry.java 56 String name = zipEntry.getName() local
60 int length = name.length();
62 name.charAt(length-1) == ClassConstants.PACKAGE_SEPARATOR ?
63 name.substring(0, length -1) :
64 name;
  /external/proguard/src/proguard/obfuscate/
ClassRenamer.java 74 // Has the class member name changed?
75 String name = programMember.getName(programClass); local
78 !newName.equals(name))
91 libraryMember.name = newName;
  /external/protobuf/src/google/protobuf/compiler/java/
java_field.h 15 // * Neither the name of Google Inc. nor the names of its
132 string name; member in struct:google::protobuf::compiler::java::FieldGeneratorInfo
139 string name; member in struct:google::protobuf::compiler::java::OneofGeneratorInfo
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
AttrResourceLoader.java 31 String viewName = node.getParentNode().getParentNode().getAttributes().getNamedItem("name").getNodeValue();
32 String enumName = node.getParentNode().getAttributes().getNamedItem("name").getNodeValue();
33 String name = node.getAttributes().getNamedItem("name").getNodeValue(); local
36 classAttrEnumToValue.put(key(viewName, enumName, name, isSystem), value);
66 private String key(String viewName, String attrName, String name, boolean isSystem) {
67 return key(viewName, attrName, isSystem) + "#" + name;
RawResourceLoader.java 28 String name = file.getName(); local
29 int dotIndex = name.indexOf(".");
32 fileBaseName = name.substring(0, dotIndex);
34 fileBaseName = name;

Completed in 2787 milliseconds

<<51525354555657585960>>