HomeSort by relevance Sort by last modified time
    Searched defs:variables (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/
rbt_data.h 64 * data.variables. The stand-in also represents the UnicodeMatcher in
71 * Variables that correspond to a set of characters are mapped
76 * variables[i] represents character (variablesBase + i).
78 UnicodeFunctor** variables; member in class:TransliterationRuleData
81 * Flag that indicates whether the variables are owned (if a single
84 * the same variables list, so only the first one is considered to own
85 * the variables)
90 * The character that represents variables[0]. Characters
97 * The length of variables.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 52 struct rc_list * variables; local
68 variables = rc_get_variables(c);
70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
  /external/tensorflow/tensorflow/contrib/eager/python/
metrics_impl.py 56 # Variables defined in first call, so get the initialization op afterwards.
70 # Variables defined in first call, so get the initialization op afterwards.
81 * `build()`: All variables should be created in this method, by calling
85 * `call()`: Has all updates to variables, as in:
88 from the variables in `self`.
92 (Default is to sum all the variables.) Note that users should not call
142 def variables(self): member in class:Metric
146 """Initializes this Metric's variables.
148 Should be called after variables are created in the first execution
155 initialization. Under eager execution, the variables are reset to thei
    [all...]
  /external/tensorflow/tensorflow/python/eager/
graph_callable.py 40 """The default initializer for variables."""
53 the function after the variables are initialized.
91 variables and initialization of their values. This allows eventual support of
99 self.variables = {}
120 assert name in self.variables
121 v = self.variables[name]
132 Forcibly initializes all created variables.
150 raise ValueError("Specified reuse=%s but tried to reuse variables."
154 self.variables[name] = v
172 variables and init_fn is the version which calls the function to initializ
188 def variables(self): member in class:_InitializingFunctionObject
    [all...]
  /external/tensorflow/tensorflow/python/ops/
initializers_ns.py 22 from tensorflow.python.ops import variables as _variables
37 variables = _variables.variables_initializer variable
template.py 44 functions that create variables the first time they are called and reuse them
48 * The function should create all trainable variables and any variables that
50 created using `tf.Variable`, then a ValueError will be thrown. Variables
54 create and reuse variables, but it shouldn't use `tf.global_variables` to
55 capture variables that are defined outside of the scope of the function.
80 first call if trainable variables are created by calling `tf.Variable`.
85 variables.
102 # Creates a template that reuses the variables above.
128 custom_getter_: Optional custom getter for variables used in `func_`. Se
387 def variables(self): member in class:Template
494 def variables(self): member in class:_EagerTemplateVariableStore
662 def variables(self): member in class:EagerTemplate
    [all...]
  /external/tensorflow/tensorflow/python/training/
sync_replicas_optimizer.py 28 from tensorflow.python.ops import variables
48 gradients will be applied to the variables N times independently. Depending
52 averaging them, then applying them to the variables in one shot, after
53 which replicas can fetch the new variables and continue.
59 and then average them before applying to variables. The accumulator will
62 all variables are updated.
69 trainers until variables are updated.
74 variables.
77 3. Apply the averaged gradients to the variables.
78 4. Only after all variables have been updated, increment the global step
379 def variables(self): member in class:SyncReplicasOptimizer
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
VariableDeclarationExpr.java 51 * A declaration of variables.
68 private NodeList<VariableDeclarator> variables; field in class:VariableDeclarationExpr
90 public VariableDeclarationExpr(final NodeList<VariableDeclarator> variables) {
91 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), variables);
94 public VariableDeclarationExpr(final EnumSet<Modifier> modifiers, final NodeList<VariableDeclarator> variables) {
95 this(null, modifiers, new NodeList<>(), variables);
99 public VariableDeclarationExpr(final EnumSet<Modifier> modifiers, final NodeList<AnnotationExpr> annotations, final NodeList<VariableDeclarator> variables) {
100 this(null, modifiers, annotations, variables);
107 public VariableDeclarationExpr(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables) {
111 setVariables(variables);
    [all...]
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
GraphicsDeviceInfo.java 77 Set<String> variables = stubActivity.getImplementationVariableNames(); local
78 for (String name : variables) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
ThrowsBound.java 49 Set<InferenceVariable> variables = new HashSet<>(); local
50 variables.add(inferenceVariable);
51 return variables;
SameAsBound.java 62 Set<InferenceVariable> variables = new HashSet<>(); local
63 variables.addAll(TypeHelper.usedInferenceVariables(s));
64 variables.addAll(TypeHelper.usedInferenceVariables(t));
65 return variables;
SubtypeOfBound.java 63 Set<InferenceVariable> variables = new HashSet<>(); local
64 variables.addAll(TypeHelper.usedInferenceVariables(s));
65 variables.addAll(TypeHelper.usedInferenceVariables(t));
66 return variables;
  /external/tensorflow/tensorflow/contrib/kfac/python/ops/
estimator.py 86 variables,
97 variables: A list of the variables for which to estimate the Fisher. This
98 must match the variables registered in layer_collection (if it is not
140 self._variables = variables
145 self._layers.check_registration(variables)
180 def variables(self): member in class:FisherEstimator
239 """Instantiates FisherFactors' variables.
optimizer.py 31 from tensorflow.python.ops import variables as tf_variables
70 var_list: Optional list or tuple of variables to train. Defaults to the
71 list of variables collected in the graph under the key
104 variables = var_list
105 if variables is None:
106 variables = tf_variables.trainable_variables()
109 variables,
167 def variables(self): member in class:KfacOptimizer
168 return self._fisher_est.variables
175 kwargs["var_list"] = kwargs.get("var_list") or self.variables
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 38 private final Variables variables; field in class:Processor
51 * @param variables the local variable frame.
58 public Processor(Variables variables,
65 this.variables = variables;
662 stack.push(variables.iload(variableIndex));
670 stack.push(variables.lload(variableIndex));
678 stack.push(variables.fload(variableIndex))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedTransliterator.java 45 * an exception to be thrown, that is, variables cannot be
389 * data.variables. The stand-in also represents the UnicodeSet in
396 * Variables that correspond to a set of characters are mapped
401 * variables[i] represents character (variablesBase + i).
403 Object[] variables; field in class:RuleBasedTransliterator.Data
406 * The character that represents variables[0]. Characters
408 * variables.length - 1 represent UnicodeSet objects.
418 return (i >= 0 && i < variables.length)
419 ? (UnicodeMatcher) variables[i] : null;
428 return (i >= 0 && i < variables.length
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RuleBasedTransliterator.java 44 * an exception to be thrown, that is, variables cannot be
387 * data.variables. The stand-in also represents the UnicodeSet in
394 * Variables that correspond to a set of characters are mapped
399 * variables[i] represents character (variablesBase + i).
401 Object[] variables; field in class:RuleBasedTransliterator.Data
404 * The character that represents variables[0]. Characters
406 * variables.length - 1 represent UnicodeSet objects.
416 return (i >= 0 && i < variables.length)
417 ? (UnicodeMatcher) variables[i] : null;
426 return (i >= 0 && i < variables.length
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithVariables.java 36 * A node which has a list of variables.
41 N setVariables(NodeList<VariableDeclarator> variables);
60 * Returns the type that is shared between all variables.
61 * This is a shortcut for when you are certain that all variables share one type.
69 NodeList<VariableDeclarator> variables = getVariables(); local
70 if (variables.isEmpty()) {
71 throw new AssertionError("There is no common type since there are no variables.");
73 Type type = variables.get(0).getType();
74 for (int i = 1; i < variables.size(); i++) {
75 if (!variables.get(i).getType().equals(type))
90 NodeList<VariableDeclarator> variables = getVariables(); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
VariableDeclarationExpr.java 59 private List<VariableDeclarator> variables; field in class:VariableDeclarationExpr
90 public VariableDeclarationExpr(final Type elementType, final List<VariableDeclarator> variables) {
92 setVariables(variables);
96 final List<VariableDeclarator> variables) {
99 setVariables(variables);
105 final List<VariableDeclarator> variables,
111 setVariables(variables);
158 variables = ensureNotNull(variables);
159 return variables;
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
FieldDeclaration.java 43 private List<VariableDeclarator> variables; field in class:FieldDeclaration
56 public FieldDeclaration(int modifiers, Type type, List<VariableDeclarator> variables) {
59 setVariables(variables);
62 public FieldDeclaration(int modifiers, List<AnnotationExpr> annotations, Type type, List<VariableDeclarator> variables) {
66 setVariables(variables);
69 public FieldDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Type type, List<VariableDeclarator> variables) {
73 setVariables(variables);
101 return variables;
113 public void setVariables(List<VariableDeclarator> variables) {
114 this.variables = variables
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 35 public VerificationType[] variables; field in class:FullFrame
49 * Creates a FullFrame with the given variables and stack.
52 VerificationType[] variables,
56 variables.length,
57 variables,
64 * Creates a FullFrame with the given variables and stack.
68 VerificationType[] variables,
74 this.variables = variables;
81 * Applies the given verification type visitor to all variables
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtcapi.h 52 _RTC_vardesc *variables; member in struct:_RTC_framedesc
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
FieldDeclaration.java 75 private NodeList<VariableDeclarator> variables; field in class:FieldDeclaration
85 public FieldDeclaration(EnumSet<Modifier> modifiers, NodeList<VariableDeclarator> variables) {
86 this(null, modifiers, new NodeList<>(), variables);
90 public FieldDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables) {
91 this(null, modifiers, annotations, variables);
98 public FieldDeclaration(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, NodeList<VariableDeclarator> variables) {
101 setVariables(variables);
141 return variables;
156 public FieldDeclaration setVariables(final NodeList<VariableDeclarator> variables) {
157 assertNotNull(variables);
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameTestCase.java 104 List<Variable> variables = debuggeeWrapper.vmMirror.getVariableTable(classID, methodID); local
105 if (variables == null) {
109 Frame.Variable[] varInfos = new Frame.Variable[variables.size()];
110 varInfos = variables.toArray(varInfos);
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.hpp 59 std::vector<glu::VariableDeclaration> variables; member in struct:deqp::gles31::Functional::ProgramInterfaceDefinition::DefaultBlock

Completed in 570 milliseconds

1 2 3 4 5 6 7 8 91011>>