Home
last modified time | relevance | path

Searched refs:Constants (Results 1 – 25 of 328) sorted by relevance

12345678910>>...14

/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemComment.java49 return Constants.ELEMNAME_COMMENT; in getXSLToken()
59 return Constants.ELEMNAME_COMMENT_STRING; in getNodeName()
112 case Constants.ELEMNAME_TEXTLITERALRESULT : in appendChild()
113 case Constants.ELEMNAME_APPLY_TEMPLATES : in appendChild()
114 case Constants.ELEMNAME_APPLY_IMPORTS : in appendChild()
115 case Constants.ELEMNAME_CALLTEMPLATE : in appendChild()
116 case Constants.ELEMNAME_FOREACH : in appendChild()
117 case Constants.ELEMNAME_VALUEOF : in appendChild()
118 case Constants.ELEMNAME_COPY_OF : in appendChild()
119 case Constants.ELEMNAME_NUMBER : in appendChild()
[all …]
DElemPI.java101 return Constants.ELEMNAME_PI; in getXSLToken()
111 return Constants.ELEMNAME_PI_STRING; in getNodeName()
141 new Object[]{ Constants.ATTRNAME_NAME, piName }); in execute()
151 new Object[]{ Constants.ATTRNAME_NAME, piName }); in execute()
193 case Constants.ELEMNAME_TEXTLITERALRESULT : in appendChild()
194 case Constants.ELEMNAME_APPLY_TEMPLATES : in appendChild()
195 case Constants.ELEMNAME_APPLY_IMPORTS : in appendChild()
196 case Constants.ELEMNAME_CALLTEMPLATE : in appendChild()
197 case Constants.ELEMNAME_FOREACH : in appendChild()
198 case Constants.ELEMNAME_VALUEOF : in appendChild()
[all …]
DElemAttribute.java59 return Constants.ELEMNAME_ATTRIBUTE; in getXSLToken()
69 return Constants.ELEMNAME_ATTRIBUTE_STRING; in getNodeName()
231 case Constants.ELEMNAME_TEXTLITERALRESULT : in appendChild()
232 case Constants.ELEMNAME_APPLY_TEMPLATES : in appendChild()
233 case Constants.ELEMNAME_APPLY_IMPORTS : in appendChild()
234 case Constants.ELEMNAME_CALLTEMPLATE : in appendChild()
235 case Constants.ELEMNAME_FOREACH : in appendChild()
236 case Constants.ELEMNAME_VALUEOF : in appendChild()
237 case Constants.ELEMNAME_COPY_OF : in appendChild()
238 case Constants.ELEMNAME_NUMBER : in appendChild()
[all …]
DElemChoose.java51 return Constants.ELEMNAME_CHOOSE; in getXSLToken()
61 return Constants.ELEMNAME_CHOOSE_STRING; in getNodeName()
88 if (Constants.ELEMNAME_WHEN == type) in execute()
109 else if (Constants.ELEMNAME_OTHERWISE == type) in execute()
141 case Constants.ELEMNAME_WHEN : in appendChild()
142 case Constants.ELEMNAME_OTHERWISE : in appendChild()
DElemFallback.java48 return Constants.ELEMNAME_FALLBACK; in getXSLToken()
58 return Constants.ELEMNAME_FALLBACK_STRING; in getNodeName()
95 if (Constants.ELEMNAME_EXTENSIONCALL == parentElemType in executeFallback()
96 || Constants.ELEMNAME_UNDEFINED == parentElemType) in executeFallback()
DElemParam.java60 return Constants.ELEMNAME_PARAMVARIABLE; in getXSLToken()
70 return Constants.ELEMNAME_PARAMVARIABLE_STRING; in getNodeName()
96 if (parentToken == Constants.ELEMNAME_TEMPLATE in compose()
97 || parentToken == Constants.EXSLT_ELEMNAME_FUNCTION) in compose()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_code.c47 dst->Constants = malloc(sizeof(struct rc_constant) * src->Count); in rc_constants_copy()
48 memcpy(dst->Constants, src->Constants, sizeof(struct rc_constant) * src->Count); in rc_constants_copy()
55 free(c->Constants); in rc_constants_destroy()
71 memcpy(newlist, c->Constants, sizeof(struct rc_constant) * c->Count); in rc_constants_add()
73 free(c->Constants); in rc_constants_add()
74 c->Constants = newlist; in rc_constants_add()
77 c->Constants[index] = *constant; in rc_constants_add()
93 if (c->Constants[index].Type == RC_CONSTANT_STATE) { in rc_constants_add_state()
94 if (c->Constants[index].u.State[0] == state0 && in rc_constants_add_state()
95 c->Constants[index].u.State[1] == state1) in rc_constants_add_state()
[all …]
Dradeon_remove_constants.c70 struct rc_constant *constants = c->Program.Constants.Constants; in rc_remove_unused_constants()
74 if (!c->Program.Constants.Count) { in rc_remove_unused_constants()
79 const_used = malloc(c->Program.Constants.Count); in rc_remove_unused_constants()
80 memset(const_used, 0, c->Program.Constants.Count); in rc_remove_unused_constants()
94 for (unsigned i = 0; i < c->Program.Constants.Count; i++) in rc_remove_unused_constants()
101 remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned)); in rc_remove_unused_constants()
102 inv_remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned)); in rc_remove_unused_constants()
105 for (unsigned i = 0; i < c->Program.Constants.Count; i++) { in rc_remove_unused_constants()
123 assert( is_identity || new_count < c->Program.Constants.Count); in rc_remove_unused_constants()
137 c->Program.Constants.Count = new_count; in rc_remove_unused_constants()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTSchema.java25 import org.apache.xalan.templates.Constants;
230 …new XSLTAttributeDef(Constants.S_XMLNAMESPACEURI, "space", false, false, false, XSLTAttributeDef.W… in build()
231 "default", Constants.ATTRVAL_STRIP, "preserve", in build()
232 Constants.ATTRVAL_PRESERVE); in build()
236 new XSLTAttributeDef(Constants.S_XMLNAMESPACEURI, "space", in build()
254 "single", Constants.NUMBERLEVEL_SINGLE, in build()
255 "multiple", Constants.NUMBERLEVEL_MULTI, in build()
256 "any", Constants.NUMBERLEVEL_ANY); in build()
276 "alphabetic", Constants.NUMBERLETTER_ALPHABETIC, in build()
277 "traditional", Constants.NUMBERLETTER_TRADITIONAL); in build()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
DExtensionNamespacesManager.java25 import org.apache.xalan.templates.Constants;
210 String uri = Constants.S_EXTENSIONS_JAVA_URL; in setPredefinedNamespaces()
217 uri = Constants.S_EXTENSIONS_OLD_JAVA_URL; in setPredefinedNamespaces()
221 uri = Constants.S_EXTENSIONS_LOTUSXSL_JAVA_URL; in setPredefinedNamespaces()
225 uri = Constants.S_BUILTIN_EXTENSIONS_URL; in setPredefinedNamespaces()
232 uri = Constants.S_BUILTIN_OLD_EXTENSIONS_URL; in setPredefinedNamespaces()
237 uri = Constants.S_EXTENSIONS_REDIRECT_URL; in setPredefinedNamespaces()
242 uri = Constants.S_EXTENSIONS_PIPE_URL; in setPredefinedNamespaces()
247 uri = Constants.S_EXTENSIONS_SQL_URL; in setPredefinedNamespaces()
255 uri = Constants.S_EXSLT_COMMON_URL; in setPredefinedNamespaces()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DActivityResultFacade.java22 import com.googlecode.android_scripting.Constants;
37 + "startActivityForResult(), the resulting intent will contain " + Constants.EXTRA_RESULT
56 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.booleanValue()); in setResultBoolean()
68 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.byteValue()); in setResultByte()
80 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.shortValue()); in setResultShort()
92 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.charValue()); in setResultChar()
104 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.intValue()); in setResultInteger()
116 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.longValue()); in setResultLong()
128 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.floatValue()); in setResultFloat()
140 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.doubleValue()); in setResultDouble()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/
DIntentBuilders.java39 intent.setComponent(Constants.TRIGGER_SERVICE_COMPONENT_NAME); in buildTriggerServiceIntent()
51 final ComponentName componentName = Constants.SL4A_SERVICE_LAUNCHER_COMPONENT_NAME; in buildStartInBackgroundIntent()
54 intent.setAction(Constants.ACTION_LAUNCH_BACKGROUND_SCRIPT); in buildStartInBackgroundIntent()
55 intent.putExtra(Constants.EXTRA_SCRIPT_PATH, script.getAbsolutePath()); in buildStartInBackgroundIntent()
67 final ComponentName componentName = Constants.SL4A_SERVICE_LAUNCHER_COMPONENT_NAME; in buildStartInTerminalIntent()
70 intent.setAction(Constants.ACTION_LAUNCH_FOREGROUND_SCRIPT); in buildStartInTerminalIntent()
71 intent.putExtra(Constants.EXTRA_SCRIPT_PATH, script.getAbsolutePath()); in buildStartInTerminalIntent()
83 final ComponentName componentName = Constants.SL4A_SERVICE_LAUNCHER_COMPONENT_NAME; in buildStartInterpreterIntent()
86 intent.setAction(Constants.ACTION_LAUNCH_INTERPRETER); in buildStartInterpreterIntent()
87 intent.putExtra(Constants.EXTRA_INTERPRETER_NAME, interpreterName); in buildStartInterpreterIntent()
/external/swiftshader/src/Shader/
DVertexRoutine.cpp120 …clipFlags = *Pointer<Int>(constants + OFFSET(Constants,maxX) + SignMask(maxX) * 4); // FIXME: Ar… in computeClipFlags()
121 clipFlags |= *Pointer<Int>(constants + OFFSET(Constants,maxY) + SignMask(maxY) * 4); in computeClipFlags()
122 clipFlags |= *Pointer<Int>(constants + OFFSET(Constants,maxZ) + SignMask(maxZ) * 4); in computeClipFlags()
123 clipFlags |= *Pointer<Int>(constants + OFFSET(Constants,minX) + SignMask(minX) * 4); in computeClipFlags()
124 clipFlags |= *Pointer<Int>(constants + OFFSET(Constants,minY) + SignMask(minY) * 4); in computeClipFlags()
125 clipFlags |= *Pointer<Int>(constants + OFFSET(Constants,minZ) + SignMask(minZ) * 4); in computeClipFlags()
127 Int4 finiteX = CmpLE(Abs(o[pos].x), *Pointer<Float4>(constants + OFFSET(Constants,maxPos))); in computeClipFlags()
128 Int4 finiteY = CmpLE(Abs(o[pos].y), *Pointer<Float4>(constants + OFFSET(Constants,maxPos))); in computeClipFlags()
129 Int4 finiteZ = CmpLE(Abs(o[pos].z), *Pointer<Float4>(constants + OFFSET(Constants,maxPos))); in computeClipFlags()
132 clipFlags |= *Pointer<Int>(constants + OFFSET(Constants,fini) + SignMask(finiteXYZ) * 4); in computeClipFlags()
[all …]
DPixelRoutine.cpp85 x -= *Pointer<Float4>(constants + OFFSET(Constants,X) + q * sizeof(float4)); in quad()
120 XXXX += *Pointer<Float4>(constants + OFFSET(Constants,sampleX[q]) + 16 * cMask[q]); in quad()
121 YYYY += *Pointer<Float4>(constants + OFFSET(Constants,sampleY[q]) + 16 * cMask[q]); in quad()
122 WWWW += *Pointer<Float4>(constants + OFFSET(Constants,weight) + 16 * cMask[q]); in quad()
246 …occlusion += *Pointer<UInt>(constants + OFFSET(Constants,occlusionCount) + 4 * (zMask[q] & sMask[q… in quad()
713 …Z = As<Float4>(As<Int4>(Z) & *Pointer<Int4>(constants + OFFSET(Constants,maskD4X) + zMask * 16, 16… in writeDepth()
714 …zValue = As<Float4>(As<Int4>(zValue) & *Pointer<Int4>(constants + OFFSET(Constants,invMaskD4X) + z… in writeDepth()
788 newValue &= *Pointer<Byte8>(constants + OFFSET(Constants,maskB4Q) + 8 * cMask); in writeStencil()
789 bufferValue &= *Pointer<Byte8>(constants + OFFSET(Constants,invMaskB4Q) + 8 * cMask); in writeStencil()
817 pass &= *Pointer<Byte8>(constants + OFFSET(Constants,maskB4Q) + 8 * zMask); in stencilOperation()
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
DScriptingLayerService.java32 import com.googlecode.android_scripting.Constants;
102 mHide = mPreferences.getBoolean(Constants.HIDE_NOTIFY, false); in onCreate()
120 notificationIntent.setAction(Constants.ACTION_SHOW_RUNNING_SCRIPTS); in createNotification()
165 } else if (intent.getAction().equals(Constants.ACTION_KILL_ALL)) { in startAction()
168 } else if (intent.getAction().equals(Constants.ACTION_KILL_PROCESS)) { in startAction()
173 } else if (intent.getAction().equals(Constants.ACTION_SHOW_RUNNING_SCRIPTS)) { in startAction()
176 if (intent.getAction().equals(Constants.ACTION_LAUNCH_SERVER)) { in startAction()
183 else if (intent.getAction().equals(Constants.ACTION_LAUNCH_FOREGROUND_SCRIPT)) { in startAction()
190 "Unable to run " + intent.getStringExtra(Constants.EXTRA_SCRIPT_PATH) + "\n" in startAction()
194 } else if (intent.getAction().equals(Constants.ACTION_LAUNCH_BACKGROUND_SCRIPT)) { in startAction()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMConstantPoolValue.cpp168 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants(); in getExistingMachineCPValue() local
169 for (unsigned i = 0, e = Constants.size(); i != e; ++i) { in getExistingMachineCPValue()
170 if (Constants[i].isMachineConstantPoolEntry() && in getExistingMachineCPValue()
171 (Constants[i].getAlignment() & AlignMask) == 0) { in getExistingMachineCPValue()
173 (ARMConstantPoolValue *)Constants[i].Val.MachineCPVal; in getExistingMachineCPValue()
233 const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants(); in getExistingMachineCPValue() local
234 for (unsigned i = 0, e = Constants.size(); i != e; ++i) { in getExistingMachineCPValue()
235 if (Constants[i].isMachineConstantPoolEntry() && in getExistingMachineCPValue()
236 (Constants[i].getAlignment() & AlignMask) == 0) { in getExistingMachineCPValue()
238 (ARMConstantPoolValue *)Constants[i].Val.MachineCPVal; in getExistingMachineCPValue()
[all …]
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java19 import static com.google.flatbuffers.Constants.*;
256 …public void putBoolean(boolean x) { bb.put (space -= Constants.SIZEOF_BYTE, (byte)(x ? 1 : 0)… in putBoolean()
264 public void putByte (byte x) { bb.put (space -= Constants.SIZEOF_BYTE, x); } in putByte()
272 public void putShort (short x) { bb.putShort (space -= Constants.SIZEOF_SHORT, x); } in putShort()
280 public void putInt (int x) { bb.putInt (space -= Constants.SIZEOF_INT, x); } in putInt()
288 public void putLong (long x) { bb.putLong (space -= Constants.SIZEOF_LONG, x); } in putLong()
296 public void putFloat (float x) { bb.putFloat (space -= Constants.SIZEOF_FLOAT, x); } in putFloat()
304 public void putDouble (double x) { bb.putDouble(space -= Constants.SIZEOF_DOUBLE, x); } in putDouble()
312 public void addBoolean(boolean x) { prep(Constants.SIZEOF_BYTE, 0); putBoolean(x); } in addBoolean()
319 public void addByte (byte x) { prep(Constants.SIZEOF_BYTE, 0); putByte (x); } in addByte()
[all …]
/external/python/cpython2/Doc/library/
Dcarbon.rst107 :synopsis: Constants for the interface to the Carbon Event Manager.
125 :synopsis: Constants for the interface to the Component Manager.
142 :synopsis: Constants for the interface to the Control Manager.
150 :synopsis: Constants for the interface to CoreFoundation.
158 :synopsis: Constants for the interface to CoreGraphics.
174 :synopsis: Constants for the interface to the Dialog Manager.
198 :synopsis: Constants for the interface to the Drag and Drop Manager.
206 :synopsis: Constants for the interface to the classic Event Manager.
230 :synopsis: Constants for the interface to the File Manager.
257 :synopsis: Constants for the interface to the Folder Manager.
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZConstantPoolValue.cpp32 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); in getExistingMachineCPValue() local
33 for (unsigned I = 0, E = Constants.size(); I != E; ++I) { in getExistingMachineCPValue()
34 if (Constants[I].isMachineConstantPoolEntry() && in getExistingMachineCPValue()
35 (Constants[I].getAlignment() & AlignMask) == 0) { in getExistingMachineCPValue()
37 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal); in getExistingMachineCPValue()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineFunction.cpp636 for (unsigned i = 0, e = Constants.size(); i != e; ++i) in ~MachineConstantPool()
637 if (Constants[i].isMachineConstantPoolEntry()) in ~MachineConstantPool()
638 delete Constants[i].Val.MachineCPVal; in ~MachineConstantPool()
699 for (unsigned i = 0, e = Constants.size(); i != e; ++i) in getConstantPoolIndex()
700 if (!Constants[i].isMachineConstantPoolEntry() && in getConstantPoolIndex()
701 CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, TD)) { in getConstantPoolIndex()
702 if ((unsigned)Constants[i].getAlignment() < Alignment) in getConstantPoolIndex()
703 Constants[i].Alignment = Alignment; in getConstantPoolIndex()
707 Constants.push_back(MachineConstantPoolEntry(C, Alignment)); in getConstantPoolIndex()
708 return Constants.size()-1; in getConstantPoolIndex()
[all …]
/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
DFelixHost.java38 import org.osgi.framework.Constants;
67 …configMap.put(Constants.FRAMEWORK_SYSTEMPACKAGES, "org.osgi.framework; version=1.3.0," + "org.osgi… in doLaunch()
70 … configMap.put(Constants.FRAMEWORK_STORAGE_CLEAN, Constants.FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT); in doLaunch()
81 …configMap.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA, "org.xml.sax, org.xml.sax.helpers, javax.x… in doLaunch()
/external/flatbuffers/php/
DTable.php76 $startPos = $offset + Constants::SIZEOF_INT;
99 return $offset + $this->bb->getInt($offset) + Constants::SIZEOF_INT;
133 if (strlen($ident) != Constants::FILE_IDENTIFIER_LENGTH) {
134 …ew \ArgumentException("FlatBuffers: file identifier must be length " . Constants::FILE_IDENTIFIER…
138 if ($ident[$i] != $bb->get($bb->getPosition() + Constants::SIZEOF_INT + $i)) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfDebug.h84 } Constants; member
87 Constant(false) { Constants.Int = 0;} in DotDebugLocEntry()
91 Constant(false) { Constants.Int = 0; EntryKind = E_Location; } in DotDebugLocEntry()
94 Constant(true) { Constants.Int = i; EntryKind = E_Integer; } in DotDebugLocEntry()
97 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; } in DotDebugLocEntry()
100 Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; } in DotDebugLocEntry()
116 int64_t getInt() { return Constants.Int; } in getInt()
117 const ConstantFP *getConstantFP() { return Constants.CFP; } in getConstantFP()
118 const ConstantInt *getConstantInt() { return Constants.CIP; } in getConstantInt()
/external/llvm/lib/CodeGen/
DMachineFunction.cpp898 for (unsigned i = 0, e = Constants.size(); i != e; ++i) in ~MachineConstantPool()
899 if (Constants[i].isMachineConstantPoolEntry()) in ~MachineConstantPool()
900 delete Constants[i].Val.MachineCPVal; in ~MachineConstantPool()
960 for (unsigned i = 0, e = Constants.size(); i != e; ++i) in getConstantPoolIndex()
961 if (!Constants[i].isMachineConstantPoolEntry() && in getConstantPoolIndex()
962 CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, DL)) { in getConstantPoolIndex()
963 if ((unsigned)Constants[i].getAlignment() < Alignment) in getConstantPoolIndex()
964 Constants[i].Alignment = Alignment; in getConstantPoolIndex()
968 Constants.push_back(MachineConstantPoolEntry(C, Alignment)); in getConstantPoolIndex()
969 return Constants.size()-1; in getConstantPoolIndex()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncExtElementAvailable.java23 import org.apache.xalan.templates.Constants;
60 namespace = Constants.S_XSLNAMESPACEURL; in execute()
72 if (namespace.equals(Constants.S_XSLNAMESPACEURL) in execute()
73 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL)) in execute()

12345678910>>...14