HomeSort by relevance Sort by last modified time
    Searched refs:offsetList (Results 1 - 10 of 10) sorted by null

  /external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
InstanceOfScanner.java 78 List< Integer> offsetList = methodNameToInstanceOfOffsets.get(methodName);
79 if (offsetList == null) {
80 offsetList = new ArrayList< Integer>();
81 methodNameToInstanceOfOffsets.put(methodName, offsetList);
83 offsetList.add(offset);
98 List< Integer> offsetList = methodNameToInstanceOfOffsets.get(methodName);
99 if (offsetList == null) {
103 return offsetList.indexOf(offset);
LambdaScanner.java 80 List<Integer> offsetList =
82 if (offsetList == null) {
83 offsetList = new ArrayList<Integer>();
84 methodNameToLambdaExpressionOffsets.put(methodName, offsetList);
86 offsetList.add(offset);
101 List<Integer> offsetList =
103 if (offsetList == null) {
107 return offsetList.indexOf(offset);
MemberReferenceScanner.java 73 List<Integer> offsetList =
75 if (offsetList == null) {
76 offsetList = new ArrayList<Integer>();
77 methodNameToMemberReferenceOffsets.put(methodName, offsetList);
79 offsetList.add(offset);
94 List<Integer> offsetList =
96 if (offsetList == null) {
100 return offsetList.indexOf(offset);
MethodCallScanner.java 73 List<Integer> offsetList =
75 if (offsetList == null) {
76 offsetList = new ArrayList<Integer>();
77 methodNameToMethodCallOffsets.put(methodName, offsetList);
79 offsetList.add(offset);
94 List<Integer> offsetList =
96 if (offsetList == null) {
100 return offsetList.indexOf(offset);
CastScanner.java 78 List< Integer> offsetList = methodNameToCastOffsets.get(methodName);
79 if (offsetList == null) {
80 offsetList = new ArrayList< Integer>();
81 methodNameToCastOffsets.put(methodName, offsetList);
87 offsetList.add(offsetList.size()-nestLevels, offset);
90 offsetList.add(offset);
108 List<Integer> offsetList = methodNameToCastOffsets.get(methodName);
109 if (offsetList == null) {
113 return offsetList.indexOf(offset)
    [all...]
NewScanner.java 99 List<Integer> offsetList = methodNameToNewOffsets.get(methodName);
100 if (offsetList == null) {
101 offsetList = new ArrayList<Integer>();
102 methodNameToNewOffsets.put(methodName, offsetList);
104 offsetList.add(offset);
108 List<Integer> offsetList = methodNameToNewOffsets.get(methodName);
109 if (offsetList == null) {
114 Integer offsetIndex = offsetList.indexOf(offset);
  /frameworks/base/core/java/android/content/res/
GradientColor.java 329 float[] offsetList = new float[20];
330 int[] colorList = new int[offsetList.length];
331 int[][] themeAttrsList = new int[offsetList.length][];
372 offsetList = GrowingArrayUtils.append(offsetList, listSize, offset);
387 System.arraycopy(offsetList, 0, mItemOffsets, 0, listSize);
  /external/annotation-tools/annotation-file-utilities/
annotation-file-utilities.jar 
  /external/vulkan-validation-layers/tests/
layer_validation_tests.cpp     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
layer_validation_tests.cpp 758 VkDeviceSize *offsetList;
762 offsetList = aOffsetList;
765 offsetList = new VkDeviceSize[1]();
769 vkCmdBindVertexBuffers(aCommandBuffer, BindId, offsetCount, &VulkanMemoryBuffer.handle(), offsetList);
773 delete[] offsetList;
    [all...]

Completed in 1175 milliseconds