HomeSort by relevance Sort by last modified time
    Searched refs:definition (Results 126 - 150 of 798) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
rbbimonkeytest.cpp 103 "(?<RuleDef>.*?)" // The rule definition
113 CharClass *BreakRules::addCharClass(const UnicodeString &name, const UnicodeString &definition, UErrorCode &status) {
115 // Create the expanded definition for this char class,
116 // replacing any set references with the corresponding definition.
120 fSetRefsMatcher->reset(definition);
144 CharClass *cclass = new CharClass(name, definition, expandedDef, s);
161 void BreakRules::addRule(const UnicodeString &name, const UnicodeString &definition, UErrorCode &status) {
164 thisRule->fRule = definition;
171 fSetRefsMatcher->reset(definition);
178 __FILE__, __LINE__, CStr(name)(), CStr(definition)());
    [all...]
  /external/bison/doc/
refcard.tex 280 %%%%% Prime definition of key; redefined below to prevent overful hboxes
332 {\it name} is the leading part of the parser definition filename.
360 definition, {\it n} is a {\it terminal} symbol name, {\it m} is a
370 \section{Parser Definition Files}
373 The general form for a parser definition is:
384 Rule definition 1
386 Rule definition {\it n}
  /external/swiftshader/third_party/LLVM/tools/gold/
gold-plugin.cpp 317 int definition = attrs & LTO_SYMBOL_DEFINITION_MASK; local
319 switch (definition) {
337 (*message)(LDPL_ERROR, "Unknown definition attribute: %d", definition);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
phi.go 28 // of the appropriate phi or definition.
81 // Optimization: look back 1 block for the definition.
210 // Walk subtree below definition.
212 // Find edges exiting tree dominated by definition (the dominance frontier).
246 // There's now a new definition of this variable in block c.
265 // resolveFwdRefs links all FwdRef uses up to their nearest dominating definition.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
phi.go 28 // of the appropriate phi or definition.
81 // Optimization: look back 1 block for the definition.
210 // Walk subtree below definition.
212 // Find edges exiting tree dominated by definition (the dominance frontier).
246 // There's now a new definition of this variable in block c.
265 // resolveFwdRefs links all FwdRef uses up to their nearest dominating definition.
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/src/
compiler.cc 206 const char* definition,
209 definition ? std::string(definition, definition_length) : "";
  /art/compiler/optimizing/
ssa_liveness_analysis.cc 328 // a register based on its definition.
475 HInstruction* definition = GetParent()->GetDefinedBy(); local
476 if (definition != nullptr && definition->IsVecOperation()) {
477 return definition->AsVecOperation()->GetVectorNumberOfBytes() / kVRegSize;
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 107 R.id.definition };
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
WordWidget.java 111 views.setTextViewText(R.id.definition, matcher.group(3).trim());
113 // When user clicks on widget, launch to Wiktionary definition page
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 92 // Use a regular expression to parse out the word and its definition
102 updateViews.setTextViewText(R.id.definition, matcher.group(3).trim());
104 // When user clicks on widget, launch to Wiktionary definition page
  /external/icu/icu4c/source/i18n/
nfrule.h 48 static void makeRules(UnicodeString& definition,
  /external/libchrome/base/files/
file_enumerator_posix.cc 130 #error Port warning: depending on the definition of struct dirent, \
  /external/markdown/markdown/
inlinepatterns.py 356 """Return entity definition by code, or the code if not defined."""
  /external/mesa3d/src/mapi/glapi/gen/
mesadef.py 47 print '; Module definition file for Mesa (OPENGL32.DLL)'
64 print '; is STDCALL. So, this module definition file is'
  /external/parameter-framework/upstream/parameter/
SystemClass.cpp 44 #error Missing PARAMETER_FRAMEWORK_PLUGIN_ENTRYPOINT_V1 macro definition
  /external/selinux/libselinux/utils/
Makefile 19 -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes \
  /prebuilts/go/darwin-x86/src/unicode/
graphic.go 16 pp // a printable character according to Go's definition.
17 pg = pp | pZ // a graphical character according to the Unicode definition.
  /prebuilts/go/linux-x86/src/unicode/
graphic.go 16 pp // a printable character according to Go's definition.
17 pg = pp | pZ // a graphical character according to the Unicode definition.
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-xdoc/1.0/
doxia-module-xdoc-1.0.jar 
  /external/icu/icu4c/source/i18n/unicode/
ucol.h 445 * @param definition A short string containing a locale and a set of attributes.
454 * collator default value. If the definition
470 ucol_openFromShortString( const char *definition,
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Constructor.java 96 * or for a definition from a Spring ApplicationContext.
119 * assigned in constructor then the 'root' property of this definition is
122 * @param definition
124 * @return the previous value associated with <tt>definition</tt>, or
125 * <tt>null</tt> if there was no mapping for <tt>definition</tt>.
127 public TypeDescription addTypeDescription(TypeDescription definition) {
128 if (definition == null) {
131 Tag tag = definition.getTag();
132 typeTags.put(tag, definition.getType());
133 return typeDefinitions.put(definition.getType(), definition)
    [all...]
  /prebuilts/go/darwin-x86/src/text/template/
template.go 176 // It returns nil if there is no such template or the template has no definition.
187 // definition of t itself.
190 // A template definition with a body containing only white space and comments
  /prebuilts/go/linux-x86/src/text/template/
template.go 176 // It returns nil if there is no such template or the template has no definition.
187 // definition of t itself.
190 // A template definition with a body containing only white space and comments
  /prebuilts/go/darwin-x86/src/cmd/doc/
doc_test.go 249 `type ExportedType struct`, // Type definition.
274 `type ExportedType struct`, // Type definition.
296 `type unexportedType int`, // Type definition.
311 `type ExportedInterface interface`, // Interface definition.
331 `type ExportedInterface interface`, // Interface definition.
  /prebuilts/go/darwin-x86/src/text/template/parse/
parse_test.go 238 {"block definition", `{{block "foo" .}}hello{{end}}`, noError,
290 {"block definition", `{{block "foo"}}hello{{end}}`, hasError, ""},
347 {"definition", `{{define "x"}}something{{end}}`, true},
350 {"definition and action", "{{define `x`}}something{{end}}{{if 3}}foo{{end}}", false},
427 hasError, `multiple definition of template`},

Completed in 576 milliseconds

1 2 3 4 56 7 8 91011>>