HomeSort by relevance Sort by last modified time
    Searched refs:typeName (Results 251 - 275 of 1268) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/sql/
PreparedStatement.java     [all...]
  /system/tools/hidl/
CompoundType.h 45 std::string typeName() const override;
Scope.cpp 192 std::string RootScope::typeName() const {
VectorType.h 30 std::string typeName() const override;
Type.cpp 319 const std::string &typeName,
345 << typeName
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 198 sb.append(value.typeName());
297 sb.append(ci.getConstant().typeName());
  /dalvik/dx/src/com/android/dx/cf/direct/
CodeObserver.java 180 String typeName = cst.getClassType().getComponentType().toHuman();
183 header(offset) + commentOrSpace + typeName);
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
Utils.java 62 private static IRubyObject fieldTypeToRuby(ThreadContext context, String typeName) {
64 return context.runtime.newSymbol(typeName.replace("TYPE_", "").toLowerCase());
  /libcore/ojluni/src/main/java/javax/sql/
RowSet.java 491 * the typeName parameter is ignored.
496 * @param typeName the fully qualified name of an SQL UDT or the type
501 void setNull (int paramIndex, int sqlType, String typeName)
522 * typeName is ignored.
527 * @param typeName the fully-qualified name of an SQL user-defined type;
536 void setNull (String parameterName, int sqlType, String typeName)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
decompose.go 88 typeName, dataName := f.Config.fe.SplitInterface(name)
89 newNames = append(newNames, typeName, dataName)
93 f.NamedValues[typeName] = append(f.NamedValues[typeName], typ)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
decompose.go 88 typeName, dataName := f.Config.fe.SplitInterface(name)
89 newNames = append(newNames, typeName, dataName)
93 f.NamedValues[typeName] = append(f.NamedValues[typeName], typ)
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.cpp 104 if (typeName)
105 mangledName += *typeName;
  /frameworks/av/media/libstagefright/xmlparser/
MediaCodecsXmlParser.cpp 987 const auto& typeName = type.first;
988 const char* roleName = GetComponentRole(isEncoder, typeName.data());
992 typeName.data());
1001 roleProperties.type = typeName;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 336 String typeName = type.getName();
337 String fileName = typeName + 's';
387 if (!tagName.equals(typeName)) {
388 element.setAttribute(ATTR_TYPE, typeName);
433 if (!tagName.equals(typeName)) {
435 sb.append(typeName);
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/
generator.py 515 # typename specified by 'extends'. This requires probing
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger-compiler/1.2.2/
dagger-compiler-1.2.2.jar 
  /external/vulkan-validation-layers/
parameter_validation_generator.py 145 self.structTypes = dict() # Map of Vulkan struct typename to required VkStructureType
152 self.flagBits = dict() # Map of flag bits typename to list of values
307 def genStruct(self, typeinfo, typeName):
308 OutputGenerator.genStruct(self, typeinfo, typeName)
309 conditions = self.structMemberValidationConditions[typeName] if typeName in self.structMemberValidationConditions else None
337 value = self.genVkStructureType(typeName)
339 self.structTypes[typeName] = self.StructType(name=name, value=value)
367 self.structMembers.append(self.StructMemberData(name=typeName, members=membersInfo))
492 # Generate a VkStructureType based on a structure typename
    [all...]
unique_objects_generator.py 158 self.structTypes = dict() # Map of Vulkan struct typename to required VkStructureType
268 def getTypeCategory(self, typename):
271 if (elem.find("name") is not None and elem.find('name').text == typename) or elem.attrib.get('name') == typename:
309 # Generate a VkStructureType based on a structure typename
310 def genVkStructureType(self, typename):
312 value = re.sub('([a-z0-9])([A-Z])', r'\1_\2', typename)
323 def genStruct(self, typeinfo, typeName):
324 OutputGenerator.genStruct(self, typeinfo, typeName)
349 value = self.genVkStructureType(typeName)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderMatrixTests.cpp 489 typename TypeTraits<DataT>::Type getInputValue (const ShaderEvalContext& evalCtx, int inputNdx);
618 template <typename T, int Rows, int Cols>
632 template <typename T, int Rows, int Cols>
646 template <typename T, int Rows, int Cols>
839 template <typename T, int Rows, int Cols>
853 template <typename T, int Rows, int Cols>
865 template <typename T, int Rows, int Cols>
889 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In0DataType>(evalCtx, 0)
891 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1)
902 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAM (…)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 183 const char* typeName = glu::getDataTypeName(output.type);
193 vtx << "in " << interpPrec << " " << typeName << " in" << outNdx << "_" << elemNdx << ";\n"
194 << interp << " out " << interpPrec << " " << typeName << " var" << outNdx << "_" << elemNdx << ";\n";
195 frag << interp << " in " << interpPrec << " " << typeName << " var" << outNdx << "_" << elemNdx << ";\n";
197 frag << "layout(location = " << output.location << ") out " << outputPrec << " " << typeName << " out" << outNdx << "[" << output.arrayLength << "];\n";
201 vtx << "in " << interpPrec << " " << typeName << " in" << outNdx << ";\n"
202 << interp << " out " << interpPrec << " " << typeName << " var" << outNdx << ";\n";
203 frag << interp << " in " << interpPrec << " " << typeName << " var" << outNdx << ";\n"
204 << "layout(location = " << output.location << ") out " << outputPrec << " " << typeName << " out" << outNdx << ";\n";
458 template <typename T
    [all...]
es3fShaderMatrixTests.cpp 494 typename TypeTraits<DataT>::Type getInputValue (const ShaderEvalContext& evalCtx, int inputNdx);
623 template <typename T, int Rows, int Cols>
637 template <typename T, int Rows, int Cols>
651 template <typename T, int Rows, int Cols>
844 template <typename T, int Rows, int Cols>
858 template <typename T, int Rows, int Cols>
870 template <typename T, int Rows, int Cols>
894 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In0DataType>(evalCtx, 0)
896 typename TypeTraits<In1DataType>::Type in1 = (in1Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAMIC, In1DataType>(evalCtx, 1)
907 typename TypeTraits<In0DataType>::Type in0 = (in0Type == INPUTTYPE_DYNAMIC) ? getInputValue<INPUTTYPE_DYNAM (…)
    [all...]
  /system/media/camera/docs/
metadata_helpers.py 155 typeName = None
157 typeName = entry.type
159 typeName = entry.typedef.name
180 if typeName not in typename_to_protobuftype:
185 proto_type = typename_to_protobuftype[typeName]
    [all...]
  /external/python/cpython2/Mac/Modules/file/
filesupport.py 58 Output("%s %s__buf__;", self.typeName, name)
59 Output("%s *%s = &%s__buf__;", self.typeName, name, name)
  /frameworks/rs/script_api/
GenerateStubsWhiteList.cpp 62 static string findSubstitute(const string& typeName, unsigned int apiLevel, int intSize) {
64 const auto type = types.find(typeName);
  /hardware/interfaces/camera/common/1.0/default/
VendorTagDescriptor.cpp 171 const char* typeName = (type >= 0 && type < NUM_TYPES) ?
174 "", tag, name.string(), type, typeName, sectionName.string());

Completed in 2801 milliseconds

<<11121314151617181920>>