HomeSort by relevance Sort by last modified time
    Searched refs:defines (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderKey.java 45 protected DefineList defines; field in class:ShaderKey
51 public ShaderKey(String vertName, String fragName, DefineList defines, String lang){
54 this.defines = defines;
60 return "V="+name + " F=" + fragName + (defines != null ? defines : "");
75 if (defines != null && other.defines != null)
76 return defines.getCompiled().equals(other.defines.getCompiled())
    [all...]
DefineList.java 43 private final SortedMap<String, String> defines = new TreeMap<String, String>(); field in class:DefineList
49 String[] keys = new String[defines.size()];
50 String[] vals = new String[defines.size()];
53 for (Map.Entry<String, String> define : defines.entrySet()){
72 defines.put(keys[i], vals[i]);
79 defines.clear();
87 return defines.get(key);
92 // defines.put(key, val);
97 defines.remove(key);
106 if( defines.put(key, "1") != "1" ) {
    [all...]
Shader.java 104 String defines = null; field in class:Shader.ShaderSource
118 // forget source & defines
130 oc.write(defines, "defines", null);
138 defines = ic.readString("defines", null);
161 public void setDefines(String defines){
162 if (defines == null)
163 throw new NullPointerException("Shader defines cannot be null");
165 this.defines = defines;
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
generate-bindings.pl 44 my $defines;
55 'defines=s' => \$defines,
67 die('Must specify defines') unless defined($defines);
75 $defines =~ s/^\s+|\s+$//g; # trim whitespace
79 my $document = $parser->Parse($idlFile, $defines, $preprocessor);
83 $codeGen->ProcessDocument($document, $defines);
CodeGenerator.pm 40 my $defines = "";
127 $defines = shift;
143 $codeGenerator->GenerateModule($useDocument, $defines);
148 $codeGenerator->GenerateInterface($class, $defines);
295 my $document = $parser->Parse($filename, $defines, $preprocessor, $parentsOnly);
476 # SVGAElement defines a non-virtual "String& target() const" method which clashes with "virtual String target() const" in Element.
  /external/v8/tools/
bash-completion.sh 38 local cur defines targets
40 defines=$(cat src/flag-definitions.h \
44 targets=$(echo "$defines" \
46 echo "$defines" \
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
generate_glslang_parser.sh 12 bison --no-lines --skeleton=yacc.c --defines=$output_header --output=$output_source $input_file
  /external/webkit/Source/WebKit/wx/bindings/python/
wscript 59 defines = ['SWIG_TYPE_TABLE=_wxPython_table', 'WXP_USE_THREAD=1', 'SWIG_PYTHON_OUTPUT_TUPLE']
61 for define in defines:
86 defines = defines,
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
Technique.java 52 private DefineList defines; field in class:Technique
68 this.defines = new DefineList();
117 needReload = defines.set(defineName, type, value);
130 needReload = defines.remove(defineName);
180 * the proper defines based on material parameters.
196 if (!needReload && defines.getCompiled().equals(newDefines.getCompiled())) {
198 // defines have not been changed..
200 defines.clear();
201 defines.addFrom(newDefines);
202 // defines changed, recompile neede
    [all...]
  /system/core/sh/
mkinit.sh 42 defines=
96 defines="${defines}#undef $2${nl}${line}${nl}"
159 echo "$defines"
mknodes.sh 150 eval defines=\"\$define_$struct\"
151 for define in $defines; do
185 eval defines=\"\$define_$struct\"
186 for define in $defines; do
  /external/webkit/Tools/wx/build/
wxpresets.py 68 defines = ['__WXMSW__']
81 defines.append('WXUSINGDLL')
87 defines.append('_UNICODE')
122 defines.append('__WXDEBUG__')
124 return (defines, includes, libs, libpaths)
  /external/icu4c/test/testdata/
tstfiles.mk 3 # TEST_RES_SOURCE defines data driven tests and other resource files to be included with
  /external/stlport/stlport/stl/config/
_solaris.h 9 /* system-dependent defines */
14 * See comments (and configuration defines) in the host.h
18 # error Uncomment one of the defines (__SunOS_5_x) in the file stlport/stl/config/host.h
63 * Attention! See comments (and configuration defines) in the host.h
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_solaris.h 9 /* system-dependent defines */
14 * See comments (and configuration defines) in the host.h
18 # error Uncomment one of the defines (__SunOS_5_x) in the file stlport/stl/config/host.h
63 * Attention! See comments (and configuration defines) in the host.h
  /ndk/sources/host-tools/make-3.81/
build.sh.in 49 defines="-DALIASPATH=\"${aliaspath}\" -DLOCALEDIR=\"${localedir}\" -DLIBDIR=\"${libdir}\" -DINCLUDEDIR=\"${includedir}\""' @DEFS@'
65 $CC $defines $CPPFLAGS $CFLAGS \
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_solaris.h 9 /* system-dependent defines */
14 * See comments (and configuration defines) in the host.h
18 # error Uncomment one of the defines (__SunOS_5_x) in the file stlport/stl/config/host.h
63 * Attention! See comments (and configuration defines) in the host.h
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_solaris.h 9 /* system-dependent defines */
14 * See comments (and configuration defines) in the host.h
18 # error Uncomment one of the defines (__SunOS_5_x) in the file stlport/stl/config/host.h
63 * Attention! See comments (and configuration defines) in the host.h
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/config/
_solaris.h 9 /* system-dependent defines */
14 * See comments (and configuration defines) in the host.h
18 # error Uncomment one of the defines (__SunOS_5_x) in the file stlport/stl/config/host.h
63 * Attention! See comments (and configuration defines) in the host.h
  /external/webkit/Source/WebCore/WebCore.vcproj/
build-generated-files.sh 70 export FEATURE_DEFINES=`$SDKROOT/tools/scripts/feature-defines.sh $VSPROPSROOT $4`
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveredPathInfo.java 174 Map<String, String> defines = new HashMap<String, String>(); local
188 defines.put(line.substring(2), ""); //$NON-NLS-1$
190 defines.put(line.substring(2, n), line.substring(n + 1));
198 mSymbols = defines;
  /external/libvpx/build/make/
gen_msvs_proj.sh 213 -D*) defines="${defines}${defines:+;}${opt##-D}"
361 PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \
375 PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \
466 PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \
479 PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.y 226 macro_t *macro = hash_table_find (parser->defines, $2);
228 hash_table_remove (parser->defines, $2);
263 macro_t *macro = hash_table_find (parser->defines, $2);
268 macro_t *macro = hash_table_find (parser->defines, $2);
313 macro_t *macro = hash_table_find (parser->defines, "__VERSION__");
315 hash_table_remove (parser->defines, "__VERSION__");
462 int v = hash_table_find (parser->defines, $2) ? 1 : 0;
466 int v = hash_table_find (parser->defines, $3) ? 1 : 0;
1071 parser->defines = hash_table_ctor (32, hash_table_string_hash,
1125 hash_table_dtor (parser->defines);
    [all...]
  /cts/build/
test_host_java_library.mk 16 # Builds a host library and defines a rule to generate the associated test
  /external/webkit/Source/WebCore/
Android.derived.v8bindings.mk 35 # The defines above should be identical to those for JSC.
71 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include css --include dom --include html --outputdir $(dir $@) $<
140 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
183 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --include fileapi --outputdir $(dir $@) $<
284 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
326 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --include html/canvas --outputdir $(dir $@) $<
340 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
379 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
395 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
422 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --include sto (…)
    [all...]

Completed in 304 milliseconds

1 2 3 4 5