HomeSort by relevance Sort by last modified time
    Searched full:paramindex (Results 1 - 25 of 46) sorted by null

1 2

  /libcore/luni/src/main/java/java/sql/
ParameterMetaData.java 66 * @param paramIndex
75 public String getParameterClassName(int paramIndex) throws SQLException;
96 * @param paramIndex
103 public int getParameterMode(int paramIndex) throws SQLException;
108 * @param paramIndex
116 public int getParameterType(int paramIndex) throws SQLException;
121 * @param paramIndex
130 public String getParameterTypeName(int paramIndex) throws SQLException;
135 * @param paramIndex
143 public int getPrecision(int paramIndex) throws SQLException
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 191 * paramIndex} is null. If this parameter is marked {@link Nullable}, this
198 int paramIndex) throws Exception {
215 }, paramIndex, method.getDeclaringClass());
221 * paramIndex} is null. If this parameter is marked {@link Nullable}, this
225 int paramIndex) throws Exception {
239 }, paramIndex, ctor.getDeclaringClass());
245 * paramIndex} is null. If this parameter is marked {@link Nullable}, this
252 int paramIndex, Class<?> testedClass) throws Exception {
253 if (parameterIsPrimitiveOrNullable(func, paramIndex)) {
256 Object[] params = buildParamList(func, paramIndex);
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 164 int paramIndex = 0;
165 if (paramIndex >= nonSwitchStrings.Count)
167 string command = (string)nonSwitchStrings[paramIndex++];
189 if (paramIndex < nonSwitchStrings.Count)
190 if (!GetNumber((string)nonSwitchStrings[paramIndex++], out numIterations))
217 if (paramIndex >= nonSwitchStrings.Count)
219 string inputName = (string)nonSwitchStrings[paramIndex++];
230 if (paramIndex >= nonSwitchStrings.Count)
232 string outputName = (string)nonSwitchStrings[paramIndex++];
  /external/clang/test/Misc/
ast-dump-comment.cpp 31 // CHECK: ParamCommandComment{{.*}} [in] implicitly Param="Aaa" ParamIndex=0
34 // CHECK: ParamCommandComment{{.*}} [in,out] explicitly Param="Bbb" ParamIndex=1
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 167 int paramIndex = 0;
169 if (paramIndex > 0) {
174 writeJavaSymbol(out, paramNames[paramIndex]);
175 paramIndex++;
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 196 int paramIndex = 0;
197 if (paramIndex >= nonSwitchStrings.Size())
199 const UString &command = nonSwitchStrings[paramIndex++];
235 if (paramIndex < nonSwitchStrings.Size())
236 if (!GetNumber(nonSwitchStrings[paramIndex++], numIterations))
265 if (paramIndex >= nonSwitchStrings.Size())
267 const UString &inputName = nonSwitchStrings[paramIndex++];
287 if (paramIndex >= nonSwitchStrings.Size())
289 const UString &outputName = nonSwitchStrings[paramIndex++];
  /hardware/qcom/media/mm-core/omxcore/src/common/
omx_core_cmp.cpp 142 OMX_IN OMX_INDEXTYPE paramIndex,
147 DEBUG_PRINT("OMXCORE: qc_omx_component_get_parameter %x, %x , %d\n",(unsigned)hComp,(unsigned)paramData,paramIndex);
151 eRet = pThis->get_parameter(hComp,paramIndex,paramData);
158 OMX_IN OMX_INDEXTYPE paramIndex,
163 DEBUG_PRINT("OMXCORE: qc_omx_component_set_parameter %x, %x , %d\n",(unsigned)hComp,(unsigned)paramData,paramIndex);
167 eRet = pThis->set_parameter(hComp,paramIndex,paramData);
omx_core_cmp.h 71 OMX_IN OMX_INDEXTYPE paramIndex,
76 OMX_IN OMX_INDEXTYPE paramIndex,
  /hardware/qcom/media/mm-core/src/common/
omx_core_cmp.cpp 142 OMX_IN OMX_INDEXTYPE paramIndex,
147 DEBUG_PRINT("OMXCORE: qc_omx_component_get_parameter %x, %x , %d\n",(unsigned)hComp,(unsigned)paramData,paramIndex);
151 eRet = pThis->get_parameter(hComp,paramIndex,paramData);
158 OMX_IN OMX_INDEXTYPE paramIndex,
163 DEBUG_PRINT("OMXCORE: qc_omx_component_set_parameter %x, %x , %d\n",(unsigned)hComp,(unsigned)paramData,paramIndex);
167 eRet = pThis->set_parameter(hComp,paramIndex,paramData);
omx_core_cmp.h 71 OMX_IN OMX_INDEXTYPE paramIndex,
76 OMX_IN OMX_INDEXTYPE paramIndex,
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Renderable.java 138 int paramIndex = 0;
145 mData.pf_textures[paramIndex++] = tex.getRsData(false).getAllocation();
150 mData.pf_num_textures = pf != null ? Math.min(pf.getTextureCount(), paramIndex) : 0;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvfragparse.c 1025 GLint paramIndex;
1028 paramIndex = _mesa_lookup_parameter_index(parseState->parameters,
1030 if (paramIndex < 0) {
1034 srcReg->Index = paramIndex;
1039 GLuint paramIndex;
1042 paramIndex = _mesa_add_unnamed_constant(parseState->parameters,
1046 srcReg->Index = paramIndex;
1051 GLuint paramIndex;
1055 paramIndex = _mesa_add_unnamed_constant(parseState->parameters,
1059 srcReg->Index = paramIndex;
    [all...]
  /external/mesa3d/src/mesa/program/
nvfragparse.c 1025 GLint paramIndex;
1028 paramIndex = _mesa_lookup_parameter_index(parseState->parameters,
1030 if (paramIndex < 0) {
1034 srcReg->Index = paramIndex;
1039 GLuint paramIndex;
1042 paramIndex = _mesa_add_unnamed_constant(parseState->parameters,
1046 srcReg->Index = paramIndex;
1051 GLuint paramIndex;
1055 paramIndex = _mesa_add_unnamed_constant(parseState->parameters,
1059 srcReg->Index = paramIndex;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyTemplates.java 328 int paramIndex = 0;
343 vars.setLocalVariable(paramIndex, obj);
348 vars.setLocalVariable(paramIndex, null);
352 paramIndex++;
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
NVPTXAsmPrinter.h 210 void printParamName(int paramIndex, raw_ostream &O);
211 void printParamName(Function::const_arg_iterator I, int paramIndex,
  /device/lge/mako/camera/inc/
omx_jpeg_common.h 219 OMX_IN OMX_INDEXTYPE paramIndex,
224 OMX_IN OMX_INDEXTYPE paramIndex,
  /external/clang/include/clang/AST/
Comment.h 699 unsigned ParamIndex;
713 ParamIndex(InvalidParamIndex) {
758 return ParamIndex != InvalidParamIndex;
762 return ParamIndex == VarArgParamIndex;
766 ParamIndex = VarArgParamIndex;
773 return ParamIndex;
777 ParamIndex = Index;
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 186 int paramIndex = -1;
194 paramIndex = getParameterIndexForReg(ssaReg);
196 if (paramIndex >= 0) {
198 addMapping(ssaSpec, paramIndex);
203 if (paramIndex < 0) {
209 tryMapRegs(ssaRegs, paramIndex, paramCategory, true);
437 int paramIndex = getParameterIndexForReg(ssaReg);
440 if (paramIndex >= 0) {
441 addMapping(ssaSpec, paramIndex);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 182 int paramIndex = -1;
190 paramIndex = getParameterIndexForReg(ssaReg);
192 if (paramIndex >= 0) {
194 addMapping(ssaSpec, paramIndex);
199 if (paramIndex < 0) {
205 tryMapRegs(ssaRegs, paramIndex, paramCategory, true);
433 int paramIndex = getParameterIndexForReg(ssaReg);
436 if (paramIndex >= 0) {
437 addMapping(ssaSpec, paramIndex);
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/inc/
omx_video_encoder.h 51 OMX_INDEXTYPE paramIndex,
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/inc/
omx_video_encoder.h 52 OMX_INDEXTYPE paramIndex,
  /external/chromium_org/third_party/angle/src/compiler/
ValidateLimitations.cpp 424 typedef std::vector<size_t> ParamIndex;
425 ParamIndex pIndex;
442 for (ParamIndex::const_iterator i = pIndex.begin();
  /external/clang/test/Index/
comment-to-html-xml-conversion.cpp 208 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[] ParamIndex=Invalid
219 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
231 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid
244 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
248 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
262 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x2] ParamIndex=1
266 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[zzz] ParamIndex=Invalid
270 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
283 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[x1] ParamIndex=0
287 // CHECK-NEXT: (CXComment_ParamCommand in implicitly ParamName=[...] ParamIndex=429496729
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm     [all...]

Completed in 579 milliseconds

1 2