Lines Matching refs:nFlags

878                 java.lang.Integer nFlags = (java.lang.Integer)aMap.get(PROPNAME_FLAGS);  in convertFilterPropsToExternal()  local
879 java.util.Vector lFlags = Cache.convertFilterFlagValues2Names(nFlags); in convertFilterPropsToExternal()
1237 java.lang.Integer nFlags = Cache.convertFilterFlagNames2Values(lFlags); in convertFilterPropsToInternal() local
1238 aResultMap.put(PROPNAME_FLAGS, nFlags); in convertFilterPropsToInternal()
1302 int nFlags = 0; in convertFilterFlagNames2Values() local
1309 nFlags |= FLAGVAL_3RDPARTYFILTER; in convertFilterFlagNames2Values()
1312 nFlags |= FLAGVAL_ALIEN; in convertFilterFlagNames2Values()
1315 nFlags |= FLAGVAL_ASYNCHRON; in convertFilterFlagNames2Values()
1318 nFlags |= FLAGVAL_BROWSERPREFERRED; in convertFilterFlagNames2Values()
1321 nFlags |= FLAGVAL_CONSULTSERVICE; in convertFilterFlagNames2Values()
1324 nFlags |= FLAGVAL_DEFAULT; in convertFilterFlagNames2Values()
1327 nFlags |= FLAGVAL_EXPORT; in convertFilterFlagNames2Values()
1330 nFlags |= FLAGVAL_IMPORT; in convertFilterFlagNames2Values()
1333 nFlags |= FLAGVAL_INTERNAL; in convertFilterFlagNames2Values()
1336 nFlags |= FLAGVAL_NOTINCHOOSER; in convertFilterFlagNames2Values()
1339 nFlags |= FLAGVAL_NOTINFILEDIALOG; in convertFilterFlagNames2Values()
1342 nFlags |= FLAGVAL_NOTINSTALLED; in convertFilterFlagNames2Values()
1345 nFlags |= FLAGVAL_OWN; in convertFilterFlagNames2Values()
1348 nFlags |= FLAGVAL_PACKED; in convertFilterFlagNames2Values()
1351 nFlags |= FLAGVAL_PREFERRED; in convertFilterFlagNames2Values()
1354 nFlags |= FLAGVAL_READONLY; in convertFilterFlagNames2Values()
1357 nFlags |= FLAGVAL_TEMPLATE; in convertFilterFlagNames2Values()
1360 nFlags |= FLAGVAL_TEMPLATEPATH; in convertFilterFlagNames2Values()
1363 nFlags |= FLAGVAL_USESOPTIONS; in convertFilterFlagNames2Values()
1366 nFlags |= FLAGVAL_COMBINED; in convertFilterFlagNames2Values()
1371 if (nFlags == 0) in convertFilterFlagNames2Values()
1374 return new java.lang.Integer(nFlags); in convertFilterFlagNames2Values()
1390 private static java.util.Vector convertFilterFlagValues2Names(java.lang.Integer nFlags) in convertFilterFlagValues2Names() argument
1394 int field = nFlags.intValue(); in convertFilterFlagValues2Names()